/* ===== Location Section ===== */
.location-section {
  padding: 4rem 1.5rem;
  background: var(--black);
  min-height: 80vh;
}

.location-container {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: stretch;
  min-height: 70vh;
}

/* Location Content */
.location-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}

.location-title {
  font-size: clamp(2.88rem, 6.6vw, 4.8rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--orange);
}

.location-text {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.6;
}

/* Location Details */
.location-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.location-address,
.location-hours,
.location-phone,
.location-whatsapp {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
  transition: background 0.3s ease;
}

.location-address:hover,
.location-hours:hover,
.location-phone:hover,
.location-whatsapp:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Icons - met afbeeldingen */
.location-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.location-address strong,
.location-hours strong,
.location-phone strong,
.location-whatsapp strong {
  color: var(--white);
  font-weight: 700;
  display: block;
  margin-bottom: 0.2rem;
}

/* WhatsApp Link styling - geen blauwe kleur */
.whatsapp-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.whatsapp-link:hover {
  text-decoration: underline;
}

.location-address p,
.location-hours p,
.location-phone p,
.location-whatsapp p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Location Map */
.location-map {
  background: var(--black-soft);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 400px;
  max-width: 100%;
  border: 1px solid rgba(245, 166, 35, 0.15);
  position: relative;
}

.location-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Location Content Fade Animatie (links naar rechts) ===== */
.location-content .location-title,
.location-content .location-text,
.location-content .location-details,
.location-content .btn {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* Gestaffelde vertraging (links -> rechts voelt vloeiend) */
.location-content .location-title { transition-delay: 0s; }
.location-content .location-text  { transition-delay: 0.15s; }
.location-content .location-details { transition-delay: 0.3s; }
.location-content .btn { transition-delay: 0.45s; }

/* Zichtbaar - schuift van links naar zijn plek + fade in */
.location-content.visible .location-title,
.location-content.visible .location-text,
.location-content.visible .location-details,
.location-content.visible .btn {
  opacity: 1;
  transform: translateX(0);
}

/* Respecteer gebruikersvoorkeur voor minder beweging */
@media (prefers-reduced-motion: reduce) {
  .location-content .location-title,
  .location-content .location-text,
  .location-content .location-details,
  .location-content .btn {
    transition: opacity 0.4s ease;
    transform: none;
  }
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .location-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
  }

  .location-content {
    padding: 1rem 0;
    order: 2;
  }

  .location-map {
    order: 1;
    min-height: 300px;
    height: 300px;
  }

  .location-text {
    max-width: 100%;
  }

  .location-details {
    gap: 0.8rem;
  }

  .location-address,
  .location-hours,
  .location-phone,
  .location-whatsapp {
    padding: 0.8rem;
  }

  .location-section {
    padding: 3rem 1.5rem;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .location-map {
    min-height: 250px;
    height: 250px;
  }

  .location-icon {
    width: 24px;
    height: 24px;
  }

  .location-address p,
  .location-hours p,
  .location-phone p,
  .location-whatsapp p {
    font-size: 0.85rem;
  }
}
