/* ===========================================================
   Roots — Tropical Cocktails
   Shared stylesheet — LIGHT / WHITE THEME
   Yellow-fill, black-outline lettering (logo style)
   =========================================================== */

:root {
  --bg:          #ffffff;
  --bg-soft:     #eef9f8;   /* light mint to match the photo */
  --bg-card:     #ffffff;
  --ink:         #141414;   /* black used for outlines + text */
  --gold:        #f5b700;
  --gold-bright: #ffcd29;
  --gold-deep:   #b8860b;   /* readable gold on white */
  --green:       #2f8f3e;
  --green-deep:  #1d5e29;
  --orange:      #e8531a;
  --text:        #1d2321;
  --text-dim:    #5a6562;
  --line:        rgba(20, 30, 28, 0.14);
  --radius:      16px;
  --shadow:      0 18px 50px rgba(20, 40, 38, 0.12);
  --maxw:        1140px;
}

/* ----- reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; }

/* ----- outlined lettering: yellow fill + black border ----- */
.outline,
.script,
.hero h1,
.menu-hero h1,
.brand-fallback,
.footer-brand .script {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  color: var(--gold);
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;   /* draw the black stroke behind the fill */
  text-shadow: none;
}
.hero h1 { -webkit-text-stroke-width: 3px; }
.menu-hero h1 { -webkit-text-stroke: 0; color: #a97400; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section-soft { background: var(--bg-soft); }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 700;
  margin-bottom: 14px;
}
.section h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--ink); }
.lead { color: var(--text-dim); font-size: 1.08rem; max-width: 60ch; }

/* ----- buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary {
  background: #ffd700;
  color: #1a1300;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(255, 215, 0, .35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255, 215, 0, .5); }
.btn-ghost { border-color: #ffd700; color: var(--ink); background: rgba(255,255,255,.7); }
.btn-ghost:hover { background: #ffd700; color: #1a1300; border-color: #ffd700; }

/* ===========================================================
   Header / nav
   =========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header.scrolled { background: rgba(255,255,255,0.96); box-shadow: 0 6px 24px rgba(20,40,38,.08); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  transition: height .3s ease;
}
.site-header.scrolled .nav { height: 62px; }
.brand img, .brand .brand-fallback { transition: transform .3s ease; }
.site-header.scrolled .brand img { transform: scale(.88); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 90px; width: auto; }
.brand .brand-fallback { font-size: 1.7rem; }
.brand small { display: block; font-size: .6rem; letter-spacing: .25em; color: var(--text-dim); text-transform: uppercase; -webkit-text-stroke: 0; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-weight: 500; color: var(--text); transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-deep); }
.nav-links .btn { padding: 10px 22px; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; padding: 10px;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; }

/* ===========================================================
   Floating menu (headerless design) — burger over the image
   =========================================================== */
.menu-fab {
  position: fixed; top: 20px; right: 20px; z-index: 60;
  width: 54px; height: 54px; border-radius: 50%;
  border: none; cursor: pointer;
  background: rgba(20,20,20,.5); backdrop-filter: blur(6px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  transition: background .2s ease;
}
.menu-fab span { display:block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s ease, opacity .2s ease; }
.menu-fab:hover { background: rgba(20,20,20,.8); }
.menu-fab.open { background: rgba(20,20,20,.85); }
.menu-fab.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-fab.open span:nth-child(2) { opacity: 0; }
.menu-fab.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  position: fixed; inset: 0; z-index: 55;
  background: rgba(10,14,12,.94); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }
.nav-overlay a {
  font-family: "Pacifico", cursive; color: var(--gold-bright);
  font-size: clamp(2rem, 6vw, 3.1rem); padding: 4px 0;
  transition: color .2s ease, transform .2s ease;
}
.nav-overlay a:hover { color: #fff; transform: scale(1.05); }
.nav-overlay .nav-ig { font-family: "Poppins", sans-serif; font-size: 1rem; color: #cbb98a; margin-top: 20px; }

/* ===========================================================
   Hero — text left, logo right, tropical photo background
   =========================================================== */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
    url("../assets/light-bg.jpg") center / cover no-repeat,
    var(--bg-soft);
}
.hero-grid {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw);
  margin: 60px auto 0; padding: 9vh 24px 90px;
  display: flex; justify-content: center;
}
.hero-copy { max-width: 820px; text-align: center; }
.hero-logo-img {
  width: 100%; max-width: 680px;
  margin: 0 auto;
}
.tagline-icon {
  display: block;
  width: 32px;
  height: auto;
  margin: 0 auto 12px;
  opacity: .85;
}
.hero-copy .tagline {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #1c6a69;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .28em;
  margin: 4px auto 56px;   /* pull closer to the logo, more gap before the buttons */
  max-width: 32ch;
}
.hero-copy .tagline::before,
.hero-copy .tagline::after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: .55;
  vertical-align: middle;
  margin: 0 14px;
}
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero-logo { display: flex; justify-content: center; }
.hero-logo img {
  width: 100%; max-width: 420px;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.25));
}

/* fruit chips */
.fruit-chips { display:flex; gap:12px; margin-top:34px; flex-wrap:wrap; justify-content:center; }
.fruit-chips span {
  font-size: .85rem; color: var(--ink); font-weight: 500;
  border: 1px solid var(--ink); border-radius: 999px;
  padding: 8px 18px; background: rgba(255,255,255,.7);
}

/* ----- floral decorations (kept subtle for light theme) ----- */
.floral { position:absolute; z-index:1; pointer-events:none; user-select:none; opacity:.95; filter: drop-shadow(0 6px 12px rgba(0,0,0,.18)); }
.floral-tl { top: 10px;  left: -10px;  transform: rotate(-8deg); }
.floral-br { bottom: 30px; right: -10px; transform: scaleX(-1) rotate(10deg); }
@media (max-width: 760px) { .floral { width: 100px; opacity: .6; } }

.floral-divider { display:flex; align-items:center; justify-content:center; gap:16px; color: var(--green); font-size: 1.4rem; padding: 6px 0 0; }
.floral-divider::before, .floral-divider::after { content:""; height:1px; width:90px; background: linear-gradient(90deg, transparent, var(--line)); }
.floral-divider::after { background: linear-gradient(90deg, var(--line), transparent); }

.eyebrow.floral-eyebrow::before { content:"🌺 "; }

.section-soft.botanic {
  background-image:
    radial-gradient(360px 360px at 100% 0%, rgba(47,143,62,.10), transparent 70%),
    radial-gradient(320px 320px at 0% 100%, rgba(232,83,26,.07), transparent 70%);
  background-color: var(--bg-soft);
}

/* ===========================================================
   Concept / feature cards
   =========================================================== */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1.1fr .9fr; align-items: center; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold); }
.card .icon { font-size: 2.4rem; margin-bottom: 14px; }
.card h3 { color: var(--green-deep); font-size: 1.25rem; }
.card p { color: var(--text-dim); margin: 0; }

/* ===========================================================
   Location
   =========================================================== */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.loc-details li { list-style: none; padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--text-dim); }
.loc-details li strong { color: var(--text); display:block; }
.loc-details { padding: 0; margin: 0 0 28px; }

/* ===========================================================
   Menu page
   =========================================================== */
.menu-hero {
  text-align: center;
  padding: 120px 0 60px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.8)),
    url("../assets/light-bg.jpg") center / cover no-repeat,
    var(--bg-soft);
}
.menu-hero h1 { font-size: clamp(2.6rem,7vw,4.5rem); }

.menu-cat { margin-bottom: 64px; }
.menu-cat-head { display:flex; align-items:center; gap:14px; margin-bottom: 14px; }
.menu-cat-head .emoji { font-size: 2rem; }
.menu-cat-head h2 { font-size: 1.8rem; color: var(--green-deep); margin: 0; }
.menu-cat-head .rule { flex:1; height:1px; background: var(--line); }

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  padding: 20px 0;
  border-bottom: 1px dashed var(--line);
}
.menu-item h3 { margin: 0; font-size: 1.15rem; color: var(--ink); }
.menu-item p { grid-column: 1 / -1; margin: 0; color: var(--text-dim); font-size: .95rem; max-width: 60ch; }

/* pricing columns: cup + melon + coconut + pineapple */
.menu-prices { display: flex; gap: 16px; align-items: flex-start; justify-content: flex-end; }
.menu-prices .pp { text-align: center; width: 88px; }
.menu-prices .pp .amt {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #a97400;                 /* darker solid gold, no outline */
  font-size: 1.05rem; line-height: 1;
}
.menu-prices .pp small { display:block; margin-top: 6px; font-size:.62rem; letter-spacing:.1em; text-transform:uppercase; color: var(--text-dim); }

.price-legend { display:flex; justify-content:flex-end; gap:16px; padding-bottom: 6px; }
.price-legend .pp { text-align:center; width:88px; }
.price-legend .pp span { font-size:.6rem; letter-spacing:.05em; text-transform:uppercase; color: var(--green-deep); font-weight:700; white-space:nowrap; }

/* --- phones: show prices as labeled pills instead of a bare number row --- */
@media (max-width: 620px) {
  .menu-item { grid-template-columns: 1fr; }
  .price-legend { display: none; }               /* pills below are self-labeled */
  .menu-prices {
    flex-wrap: wrap; gap: 8px; margin-top: 10px; justify-content: flex-start;
  }
  .menu-prices .pp {
    width: auto; min-width: 0;
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--bg-soft); border: 1px solid var(--line);
    border-radius: 999px; padding: 5px 13px;
  }
  .menu-prices .pp .amt { font-size: 1rem; display: inline-flex; align-items: center; }
  /* label each fruit pill — only on 4-price rows, not single-price shots */
  .menu-prices .pp::before { font-size: .95rem; line-height: 1; display: inline-flex; align-items: center; }
  .menu-prices:has(.pp:nth-child(4)) .pp:nth-child(1)::before { content: "🥤"; }
  .menu-prices:has(.pp:nth-child(4)) .pp:nth-child(2)::before { content: "🍉"; }
  .menu-prices:has(.pp:nth-child(4)) .pp:nth-child(3)::before { content: "🥥"; }
  .menu-prices:has(.pp:nth-child(4)) .pp:nth-child(4)::before { content: "🍍"; }
}

.menu-note { text-align:center; color: var(--text-dim); font-size:.9rem; margin-top: 10px; }

/* ===========================================================
   Events / booking page
   =========================================================== */
.event-types .card { text-align:center; }
.event-types .icon { font-size: 2.8rem; }

.included { display:grid; grid-template-columns: repeat(2,1fr); gap: 14px 28px; margin-top: 10px; }
.included li { list-style:none; padding-left: 28px; position:relative; color: var(--text-dim); }
.included li::before { content:"🌴"; position:absolute; left:0; }

.booking-form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row { display:grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display:flex; flex-direction:column; gap:6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size:.85rem; color: var(--text-dim); font-weight:500; }
.field input, .field select, .field textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,183,0,.18); }
.field textarea { resize: vertical; min-height: 110px; }
.form-hint { color: var(--text-dim); font-size:.85rem; margin-top: 14px; }

/* ===========================================================
   Footer
   =========================================================== */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 54px 0 30px;
}
.footer-grid { display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; margin-bottom: 30px; }
.footer-brand .script { font-size: 2rem; }
.footer-brand p { color: var(--text-dim); max-width: 34ch; }
.footer-col h4 { color: var(--green-deep); font-size:.85rem; letter-spacing:.12em; text-transform:uppercase; }
.footer-col a { display:block; color: var(--text-dim); padding: 4px 0; }
.footer-col a:hover { color: var(--gold-deep); }
.social { display:flex; gap:14px; margin-top: 10px; }
.social a {
  width:42px; height:42px; border-radius:50%;
  display:grid; place-items:center;
  border:1px solid var(--ink); color: var(--ink);
  transition:.2s;
}
.social a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.footer-bottom { text-align:center; color: var(--text-dim); font-size:.82rem; padding-top: 22px; border-top:1px solid var(--line); }
.footer-bottom .drink-resp { color: var(--green-deep); font-weight:600; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero-grid { justify-content: center; }
  .hero-copy { text-align: center; max-width: 100%; }
  .hero-copy .tagline { max-width: none; margin: 0 auto 30px; }
  .hero .cta-row { justify-content: center; }
  .fruit-chips { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .included { grid-template-columns: 1fr; }

  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav-links.open { max-height: 420px; }
  .nav-links a { width: 100%; text-align: center; padding: 16px; border-bottom: 1px solid var(--line); }
  .nav-links .btn { margin: 14px auto; }
}

@media (max-width: 480px) {
  .hero .cta-row { margin-top: 130px; }
}

/* ===========================================================
   REVAMP — scroll animations, parallax fruit, premium polish
   =========================================================== */

/* ---- reveal-on-scroll ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-reveal="scale"] { transform: translateY(34px) scale(.96); }
[data-reveal][data-reveal="scale"].in { transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }

/* ---- floating parallax fruit ---- */
.float-layer { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.float-fruit {
  position: absolute;
  display: block;
  filter: drop-shadow(0 20px 36px rgba(30, 40, 20, .18));
  will-change: transform;
}
.float-fruit svg { width: 100%; height: 100%; display: block; }
section { position: relative; }
.section .container, .hero-grid, .menu-hero .container { position: relative; z-index: 2; }

/* ---- hero upgrades ---- */
.hero { min-height: 100vh; }
.scroll-cue {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--gold-bright); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  opacity: .7; animation: cueFloat 2.4s ease-in-out infinite;
}
.scroll-cue .mouse { width: 24px; height: 38px; border: 2px solid var(--gold-bright); border-radius: 14px; position: relative; }
.scroll-cue .mouse::after {
  content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 7px; background: var(--gold-bright); border-radius: 3px; animation: wheel 1.6s ease-in-out infinite;
}
@keyframes wheel { 0%{opacity:0;transform:translate(-50%,0)} 30%{opacity:1} 100%{opacity:0;transform:translate(-50%,12px)} }
@keyframes cueFloat { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,-6px)} }

/* gradient accent on big headings */
.section h2 .grad, .grad {
  background: linear-gradient(120deg,  #fccb3b, var(--green) 60%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---- premium cards ---- */
.card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fbfdfc);
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease;
}
.card::before {
  content:""; position:absolute; inset:0; border-radius: inherit;
  background: radial-gradient(420px 200px at var(--mx,50%) var(--my,0%), rgba(245,183,0,.14), transparent 70%);
  opacity:0; transition: opacity .35s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(20,40,38,.16); }
.card:hover::before { opacity: 1; }

/* ---- "how it works" steps ---- */
.steps { display:grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 50px; counter-reset: step; }
.step { position:relative; padding: 34px 28px; border-radius: var(--radius); background: var(--bg-soft); border:1px solid var(--line); }
.step .num {
  font-family: "Poppins", sans-serif; font-weight: 800; font-size: 2.2rem; color: #a97400;
  line-height:1; display:block; margin-bottom: 14px;
}
.step h3 { color: var(--ink); font-size: 1.2rem; margin-bottom: 6px; }
.step p { color: var(--text-dim); margin:0; }

/* ---- big statement / parallax band ---- */
.statement { padding: 140px 0; text-align:center; overflow:hidden; }
.statement h2 {
  font-size: clamp(2.2rem, 6vw, 4.4rem); line-height:1.05; max-width: 16ch; margin: 0 auto;
  color: var(--ink); letter-spacing: -.02em;
}
.statement .lead { margin: 22px auto 0; }

@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
  .hero { min-height: 92vh; }
  .float-fruit { transform: scale(.7); }
}

/* ---- accessibility: honor reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .float-fruit { display: none; }
  .scroll-cue { animation: none; }
  html { scroll-behavior: auto; }
}
