/* =====================================================
   DESIGN TOKENS
===================================================== */
:root {

  --bg-page: #0f2b1e;
  --bg-base: #0f2b1e;
  --bg-emphasis: #0c2318;
  --bg-elevated: #173d2b;

  --ink-strong: #ffffff;
  --ink-main: #eaf5ee;
  --ink-muted: #cfe5da;

  --green-accent: #bae63e;
  --green-accent-hover: #a9d934;

  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  --fs-h1: clamp(2.6rem, 6vw, 4.2rem);
  --fs-h2: clamp(1.6rem, 3vw, 2rem);
  --fs-body: clamp(1.05rem, 2vw, 1.1rem);
  --fs-small: 0.9rem;

  --lh-body: 1.75;
  --lh-heading: 1.15;

  --section-pad: clamp(100px, 12vh, 150px);

  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --container: 1180px;
}


/* =====================================================
   RESET
===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  background: var(--bg-page);
  color: var(--ink-main);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--green-accent);
  outline-offset: 3px;
}


/* =====================================================
   LAYOUT
===================================================== */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 32px);
}

.section {
  padding-block: var(--section-pad);
}

.section--hero {
  padding-top: clamp(160px, 20vh, 220px);
}

.section--emphasis {
  background: var(--bg-emphasis);
}

.center { text-align: center; }
.text-wide { max-width: 70ch; margin-inline: auto; }


/* =====================================================
   TYPOGRAPHY
===================================================== */
h1, h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--ink-strong);
  line-height: var(--lh-heading);
}

h1 {
  font-size: var(--fs-h1);
  margin-bottom: 0.6em;
}

h2 {
  font-size: var(--fs-h2);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

p {
  color: var(--ink-muted);
  max-width: 75ch;
}


/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-weight: 500;
  transition: all .25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--green-accent);
  color: #0f2b1e;
  padding: 10px 18px;
  font-size: var(--fs-small);
  box-shadow: 0 14px 32px rgba(0,0,0,.3);
}

.btn-primary:hover {
  background: var(--green-accent-hover);
  transform: translateY(-3px);
}


/* =====================================================
   NAVBAR (SAME AS BOOKING)
===================================================== */
.navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--container) + clamp(40px, 8vw, 64px));
  max-width: calc(100% - 40px);
  height: 64px;
  z-index: 100;

  background: rgba(20, 48, 35, 0.9);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 14px 32px rgba(0,0,0,.2);

  transition: all .3s ease;
}

.navbar.scrolled {
  background: rgba(15, 35, 25, 0.95);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.nav-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(20px, 4vw, 32px);
}

.logo img { height: 34px; }

.nav-links {
  display: flex;
  gap: clamp(24px, 4vw, 36px);
}

.nav-links a {
  font-size: var(--fs-small);
  letter-spacing: .5px;
  color: rgba(255,255,255,.75);
  transition: color .2s ease;
}

.nav-links a:hover { color: var(--ink-main); }


/* =====================================================
   HERO
===================================================== */
.booking-eyebrow {
  font-size: var(--fs-small);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-accent);
  opacity: .9;
  display: inline-block;
  margin-bottom: 1.5em;
}

.booking-hero-text {
  margin-top: 1.4em;
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  line-height: 1.8;
}


/* =====================================================
   LEGAL CARD
===================================================== */
.legal-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.legal-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.03),
    rgba(0,0,0,.18)
  );
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.03),
    0 30px 60px rgba(0,0,0,.35);

  transition: transform .3s ease, box-shadow .3s ease;
}

.legal-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.03),
    0 40px 80px rgba(0,0,0,.4);
}

.legal-card a {
  color: var(--green-accent);
  word-break: break-word;
}

.legal-card a:hover {
  text-decoration: underline;
}


/* =====================================================
   FOOTER
===================================================== */
.footer {
  background: linear-gradient(180deg, #0d2318, #08150f);
  padding-top: 100px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 80px;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--ink-strong);
}

.footer-brand p {
  color: var(--ink-muted);
  max-width: 420px;
}

.footer-column h4 {
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--green-accent);
}

.footer-column ul {
  display: grid;
  gap: 12px;
}

.footer-column a {
  color: rgba(255,255,255,.7);
  transition: color .25s ease;
}

.footer-column a:hover {
  color: var(--ink-strong);
}

.footer-bottom {
  text-align: center;
  padding: 25px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.05);
}


/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 900px) {

  .nav-links { display: none; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .legal-card {
    padding: 40px 28px;
  }

}

.footer-social .social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);

  transition: all .25s ease;
}

.social-links a svg {
  width: 18px;
  height: 18px;
  fill: var(--ink-main);
  transition: fill .25s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  border-color: var(--green-accent);
}

.social-links a:hover svg {
  fill: var(--green-accent);
}