/* =========================================================================
   Kontakt page styles
   ========================================================================= */

/* HERO */
.contact-hero {
  height: 45vh;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  scale: 1.1;
  transition: scale 8s ease;
  will-change: scale, translate;
}
.contact-hero:hover .contact-hero-bg { scale: 1; }
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-deep);
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.contact-hero-content h1 {
  font-size: clamp(32px, 5vw, 56px);
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.contact-hero-content p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  opacity: 0.8;
  letter-spacing: 3px;
  margin-top: 10px;
}

/* CONTACT CARDS */
.contact-cards {
  background: var(--offwhite);
  padding: 80px 0;
}
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.contact-card {
  background: var(--white);
  padding: 50px 35px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: transform 0.5s var(--transition-smooth), box-shadow 0.5s;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.contact-card:hover::before { transform: scaleX(1); }
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.contact-card .icon {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
  margin-inline: auto;
}
.contact-card h3 {
  font-size: 18px;
  color: var(--black);
  margin-bottom: 12px;
}
.contact-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}
.contact-card a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
.contact-card a:hover { color: var(--gold-dark); }

/* CONTACT FORM */
.contact-form-section {
  background: var(--white);
  padding: 80px 0;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-form-info h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--black);
  margin-bottom: 25px;
  line-height: 1.15;
}
.contact-form-info h2 em {
  font-style: italic;
  color: var(--gold-dark);
}
.contact-form-info p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 15px;
}
.contact-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-details-list li .icon {
  font-size: 20px;
  color: var(--gold);
  width: 24px;
  margin-top: 3px;
}
.contact-details-list strong {
  display: block;
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
.contact-details-list p,
.contact-details-list a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}
.contact-details-list a:hover { color: var(--gold); }

.contact-form-box {
  background: var(--offwhite);
  padding: 50px;
  border-radius: 4px;
}
.contact-form-box h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--black);
  margin-bottom: 30px;
}

/* MAP */
.map-section {
  background: var(--black);
}
.map-section iframe {
  width: 100%;
  height: 450px;
  border: 0;
  filter: grayscale(20%) contrast(1.1);
  display: block;
}

/* OPENING HOURS */
.hours-section {
  background: var(--offwhite);
  padding: 80px 0;
}
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.hours-table {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}
.hours-table-header {
  background: var(--black);
  color: var(--white);
  padding: 25px 30px;
}
.hours-table-header h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hours-table-body table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table-body td {
  padding: 16px 30px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 14px;
}
.hours-table-body td:first-child {
  font-weight: 600;
  color: var(--black);
  width: 40%;
}
.hours-table-body td:last-child {
  color: var(--text-light);
}
.hours-table-body tr:last-child td {
  border-bottom: none;
}
.hours-note {
  background: var(--white);
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}
.hours-note h3 {
  font-size: 22px;
  color: var(--black);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hours-note h3 .icon { color: var(--gold); }
.hours-note p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 15px;
}
.hours-note .highlight {
  background: rgba(200,169,126,0.1);
  padding: 25px;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
  margin-top: 25px;
}
.hours-note .highlight p {
  margin: 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hours-note .highlight p .icon { color: var(--gold); }

/* LEGAL */
.legal-section {
  background: var(--white);
  padding: 80px 0;
}
.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.legal-box {
  background: var(--offwhite);
  padding: 45px;
  border-radius: 4px;
}
.legal-box h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--black);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--gold);
}
.legal-box p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-box strong {
  color: var(--black);
  font-weight: 600;
}
.legal-box .copyright-note {
  margin-top: 20px;
  font-size: 13px;
  color: #999;
}

/* CTA bg */
.cta {
  --cta-bg: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

@media (max-width: 1024px) {
  .contact-cards-grid,
  .contact-form-grid,
  .hours-grid,
  .legal-grid { grid-template-columns: 1fr; }
}
