/* ===== Design Tokens ===== */
:root {
  --deep-teal: #054a63;
  --ocean: #0a7ea4;
  --aqua: #2ec4c6;
  --sand: #f7ecd7;
  --sand-dark: #edd9ae;
  --coral: #ff7e5f;
  --sunset: #f3a625;
  --ink: #0d2b33;
  --white: #ffffff;
  --shadow: 0 20px 40px -18px rgba(5, 74, 99, 0.35);
  --radius: 18px;
  --font-body: 'Poppins', sans-serif;
  --font-script: 'Pacifico', cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ocean);
  margin: 0 0 10px;
}
.eyebrow-light { color: var(--sunset); }

.script { font-family: var(--font-script); color: var(--sunset); font-weight: 400; }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 30px;
  color: var(--deep-teal);
}
.section-title-light {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 40px;
  color: var(--white);
}
.section-sub {
  max-width: 620px;
  color: #4c6570;
  margin-top: -18px;
  margin-bottom: 36px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--sunset));
  color: var(--white);
  box-shadow: 0 12px 24px -10px rgba(255, 126, 95, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 28px -10px rgba(255, 126, 95, 0.7); }
.btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-nav {
  background: var(--ocean);
  color: var(--white);
  padding: 10px 22px;
}
.btn-nav:hover { background: var(--deep-teal); }

/* ===== Header / Nav ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5, 74, 99, 0.0);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 20px 0;
}
.site-header.scrolled {
  background: rgba(5, 74, 99, 0.92);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--white);
}
.brand-logo {
  height: 150px;
  width: auto;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.4));
  transition: height 0.3s ease;
}
.site-header.scrolled .brand-logo { height: 62px; }
.brand-logo-lg { height: 200px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--sunset); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px; height: 2px; background: var(--white);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--deep-teal), var(--ocean) 60%, var(--aqua));
}
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,45,60,0.55) 0%, rgba(5,45,60,0.35) 45%, rgba(5,45,60,0.8) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 160px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin: 10px 0 20px;
  line-height: 1.1;
}
.hero-sub { font-size: 1.15rem; max-width: 520px; margin-bottom: 34px; color: #eaf6f8; }
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.6rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ===== About ===== */
.about { padding: 110px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); background: linear-gradient(160deg, var(--aqua), var(--ocean)); }
.wave-badge {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--coral);
  color: var(--white);
  padding: 16px 22px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  max-width: 220px;
  box-shadow: 0 14px 26px -12px rgba(255,126,95,0.6);
}
.about-copy p { color: #33525c; }
.about-stats {
  display: flex;
  gap: 36px;
  margin-top: 30px;
}
.about-stats strong {
  display: block;
  font-size: 2rem;
  color: var(--ocean);
}
.about-stats span { font-size: 0.85rem; color: #5a7a84; }

/* ===== Specials ===== */
.specials {
  background: linear-gradient(160deg, var(--deep-teal), var(--ocean));
  padding: 110px 0;
  color: var(--white);
  text-align: center;
}
.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  text-align: left;
}
.special-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(3px);
  transition: transform 0.25s ease, background 0.25s ease;
}
.special-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.14); }
.special-card-accent { background: linear-gradient(135deg, var(--coral), var(--sunset)); border-color: transparent; }
.day {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--sunset);
  margin-bottom: 8px;
}
.special-card-accent .day { color: rgba(255,255,255,0.85); }
.special-card h3 { margin: 0 0 10px; font-size: 1.15rem; }
.special-card p { margin: 0; font-size: 0.92rem; color: rgba(255,255,255,0.85); }

/* ===== Menu ===== */
.menu { padding: 110px 0; background: var(--sand); text-align: center; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  text-align: left;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.menu-card:hover { transform: translateY(-6px); }
.menu-icon { font-size: 2rem; margin-bottom: 12px; }
.menu-card h3 { margin: 0 0 8px; color: var(--deep-teal); }
.menu-card p { margin: 0; color: #4c6570; font-size: 0.92rem; }
.menu-cta {
  margin-top: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.menu-cta p { color: #5a7a84; font-size: 0.9rem; }

/* ===== Gallery ===== */
.gallery { padding: 110px 0; background: var(--white); text-align: center; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ===== Reviews ===== */
.reviews { padding: 110px 0; background: var(--white); text-align: center; }
.rating-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}
.rating-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 220px;
  padding: 24px 28px;
  border-radius: var(--radius);
  background: var(--sand);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.rating-badge:hover { transform: translateY(-4px); }
.rating-stars { color: var(--sunset); font-size: 1.2rem; letter-spacing: 2px; }
.rating-badge strong { color: var(--deep-teal); font-size: 1.15rem; }
.rating-badge span:last-child { color: #4c6570; font-size: 0.85rem; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  text-align: left;
}
.testimonial-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.quote-mark {
  font-family: var(--font-script);
  font-size: 2.6rem;
  color: var(--aqua);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.testimonial-card p { color: #33525c; margin: 0 0 16px; }
.testimonial-author { font-weight: 600; color: var(--ocean); font-size: 0.9rem; }

/* ===== Visit ===== */
.visit { padding: 110px 0; background: var(--sand); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.info-list { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 20px; }
.info-list strong { display: block; color: var(--ocean); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.info-list span { color: #33525c; }
.info-list a { color: var(--coral); font-weight: 600; }
.visit-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.visit-actions .btn-primary { color: var(--white); }
.visit-actions .btn-outline { border-color: var(--ocean); color: var(--ocean); }
.visit-actions .btn-outline:hover { background: var(--ocean); color: var(--white); }
.social-links a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--deep-teal);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}
.visit-map {
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.visit-map iframe { width: 100%; height: 100%; min-height: 340px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--deep-teal);
  color: rgba(255,255,255,0.8);
  padding: 50px 0;
  text-align: center;
}
.footer-brand { justify-content: center; margin-bottom: 12px; color: var(--white); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 6px; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: var(--deep-teal);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    transition: right 0.3s ease;
  }
  .main-nav.open { right: 0; }
  .nav-toggle { display: flex; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 20px; flex-wrap: wrap; }
}
