/* =========================
   LOCATION PAGE
   ========================= */

:root {
  --cream: #EEE7D3;
  --taupe: #B09A82;
  --beige: #E7D6BE;
  --gold:  #D6BF9D;
  --olive: #796E50;
  --text:  #333333;
}

/* Hero Section */
.location-hero {
  background: var(--cream);
  padding: 100px 60px 60px;
  text-align: center;
}

.location-title {
  margin: 0 0 48px;
  font-family: "TAN Aegean", serif;
  font-size: 64px;
  letter-spacing: 1px;
  color: #2b2b2b;
  text-align: center;
  margin-bottom: 20px;
}

.location-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(47, 47, 47, 0.68);
  margin: 0;
  font-family: "Urbanist", sans-serif;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* Location Content Section */
.location-content {
  background: var(--cream);
  padding: 40px 60px 80px;
}

.location-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 60px;
}

/* Map Container */
.map-container {
  width: 100%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-radius: 16px;
  overflow: hidden;
}

/* Location Details Grid */
.location-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.detail-card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card-icon {
  font-size: 48px;
  line-height: 1;
}

.card-title {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--olive);
  font-family: "Urbanist", sans-serif;
}

.card-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(47, 47, 47, 0.75);
  margin: 0;
  font-family: "Urbanist", sans-serif;
  font-weight: 300;
}

.card-text strong {
  color: var(--text);
  font-weight: 500;
}

.card-text a {
  color: var(--olive);
  text-decoration: none;
  transition: color 0.3s;
}

.card-text a:hover {
  color: var(--taupe);
}

.card-link {
  color: var(--olive);
  text-decoration: none;
  font-size: 15px;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  transition: color 0.3s;
  margin-top: auto;
}

.card-link:hover {
  color: var(--taupe);
}

/* Hours List */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--beige);
  font-family: "Urbanist", sans-serif;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row.closed {
  opacity: 0.5;
}

.day {
  font-size: 15px;
  color: var(--text);
  font-weight: 400;
}

.time {
  font-size: 15px;
  color: var(--olive);
  font-weight: 500;
}

/* WhatsApp Button in Card */
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  transition: all 0.3s;
  margin-top: auto;
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Directions Section */
.directions-section {
  background: #fff;
  padding: 80px 60px;
}

.directions-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.directions-title {
  text-align: center;
  font-size: 42px;
  margin: 0 0 60px;
  font-weight: 500;
  color: var(--text);
  font-family: "TAN Aegean", serif;
}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.direction-card {
  background: var(--cream);
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.direction-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.direction-icon {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 24px;
}

.direction-title {
  font-size: 22px;
  margin: 0 0 16px;
  font-weight: 500;
  color: var(--olive);
  font-family: "Urbanist", sans-serif;
}

.direction-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(47, 47, 47, 0.75);
  margin: 0;
  font-family: "Urbanist", sans-serif;
  font-weight: 300;
}

/* CTA Section */
.location-cta {
  background: linear-gradient(135deg, var(--olive), var(--taupe));
  padding: 80px 60px;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 40px;
  color: #fff;
  margin: 0 0 16px;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin: 0 0 32px;
  font-family: "Urbanist", sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: #fff;
  color: var(--olive);
  padding: 16px 40px;
  border-radius: 999px;
  font-size: 16px;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.cta-button:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .location-hero {
    padding: 80px 24px 40px;
  }

  .location-title {
    font-size: 48px;
  }

  .location-subtitle {
    font-size: 17px;
    line-height: 1.6;
  }

  .location-content {
    padding: 40px 24px 60px;
  }

  .location-details {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .detail-card {
    padding: 32px;
  }

  .card-title {
    font-size: 24px;
  }

  .card-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .card-icon {
    font-size: 52px;
  }

  .directions-section {
    padding: 60px 24px;
  }

  .directions-title {
    font-size: 42px;
    margin-bottom: 40px;
  }

  .directions-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .direction-card {
    padding: 36px 28px;
  }

  .direction-icon {
    font-size: 60px;
  }

  .direction-title {
    font-size: 22px;
  }

  .direction-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .location-cta {
    padding: 60px 24px;
  }

  .cta-content h2 {
    font-size: 36px;
  }

  .cta-content p {
    font-size: 17px;
    line-height: 1.6;
  }

  .cta-button {
    font-size: 16px;
    padding: 14px 36px;
  }

  .hours-row {
    padding: 14px 0;
  }

  .day,
  .time {
    font-size: 16px;
  }

  .whatsapp-btn {
    font-size: 16px;
    padding: 14px 28px;
  }

  .card-link {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .location-title {
    font-size: 36px;
  }

  .location-subtitle {
    font-size: 16px;
  }

  .directions-title {
    font-size: 32px;
  }

  .detail-card {
    padding: 28px;
  }

  .card-title {
    font-size: 22px;
  }

  .card-text {
    font-size: 15px;
  }

  .card-icon {
    font-size: 48px;
  }

  .direction-card {
    padding: 32px 24px;
  }

  .direction-icon {
    font-size: 56px;
  }

  .direction-title {
    font-size: 20px;
  }

  .direction-text {
    font-size: 15px;
  }

  .map-container iframe {
    height: 300px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .cta-button {
    font-size: 15px;
    padding: 13px 32px;
  }

  .day,
  .time {
    font-size: 15px;
  }

  .whatsapp-btn {
    font-size: 15px;
    padding: 13px 24px;
  }
}