﻿<!-- =========================
FILE: css/location.css
========================= -->
:root {
  --panel: rgba(255, 255, 255, 0.96);
  --turquoise: #2fd3cb;
  --deep: #18484d;
  --text: #3e6266;
  --muted: #779598;
  --line: rgba(24, 72, 77, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #f9fdfd 0%, #edf7f6 100%);
  color: var(--text);
  line-height: 1.75;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.sub-header {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  color: var(--deep);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

.nav a.active,
.nav a:hover {
  color: var(--turquoise);
}

.location-hero {
  padding: 120px 0 80px;
  background: url('../images/locationbanner.jpg') center/cover no-repeat;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--turquoise);
  font-size: 0.78rem;
  margin-bottom: 18px;
}

.location-hero h1,
.map-card h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #FFFFFF;
}

.location-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1.08;
  max-width: 840px;
  margin-bottom: 20px;
}

.location-hero p {
  max-width: 700px;
}

.location-content,
.visit-section {
  padding: 90px 0;
}

.location-content {
  background: #cfeeed;
}

.visit-section {
  background: #bfe7e5;
}

.location-grid,
.visit-grid {
  display: grid;
  gap: 26px;
}

.location-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.visit-grid {
  grid-template-columns: repeat(3, 1fr);
}

.map-card,
.destination-card,
.visit-grid article {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(24, 72, 77, 0.08);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 18px 40px rgba(24, 72, 77, 0.07);
}

.map-card h2 {
  font-size: 2.4rem;
  margin-bottom: 18px;
}

.address-box {
  margin-top: 24px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ffffff, #f3fbfa);
  border: 1px solid rgba(24, 72, 77, 0.06);
}

.address-box p + p {
  margin-top: 10px;
}

.destination-card h3,
.visit-grid h3 {
  color: var(--deep);
  margin-bottom: 14px;
}

.visit-grid p,
.destination-card p,
.map-card p {
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav-wrap,
  .location-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }
}
