/* Tropika — tropical canopy / breathe system
   Lush greens, soft air, warm gold accents. No Oktoberfest blocks. */

:root {
  --canopy: #0B1F18;
  --grove: #122A20;
  --moss: #1B3D2F;
  --leaf: #3D8B6E;
  --fern: #52B788;
  --mist: #A8DADC;
  --air: #E8F5F0;
  --sand: #F3EEE4;
  --gold: #E8B84A;
  --sunset: #E07A5F;
  --ink: #07140F;

  /* aliases for shared pages / forms */
  --amber: var(--gold);
  --dark-bg: var(--canopy);
  --dark-card: #163328;
  --dark-border: rgba(168, 218, 220, 0.14);
  --dark-text: var(--sand);
  --muted: rgba(243, 238, 228, 0.68);
  --ivory: var(--sand);
  --apricot: var(--sunset);
  --pink: #E8A0B0;
  --terra: #9A5B45;
  --sky: var(--mist);
  --aqua: #7EC8C4;
  --sage: var(--fern);
  --butter: #F2D78A;

  --g-canopy: linear-gradient(165deg, #07140F 0%, #122A20 45%, #1B3D2F 100%);
  --g-lush: linear-gradient(135deg, rgba(61,139,110,0.35), rgba(168,218,220,0.2));
  --g-breathe: linear-gradient(90deg, var(--fern), var(--mist), var(--gold));
  --g-sunset: linear-gradient(120deg, var(--sunset), var(--gold));
  --g-pattern-1: linear-gradient(90deg, var(--fern) 0%, var(--mist) 50%, var(--gold) 100%);

  --font-display: "Oswald", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --max-w: 1200px;
  --radius: 18px;
  --radius-lg: 28px;
  --nav-h: 92px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canopy);
  color: var(--sand);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.brand-stripe-top {
  height: 3px;
  background: var(--g-breathe);
}

.progress {
  position: fixed; left: 0; right: 0; top: 0; height: 3px;
  background: var(--g-breathe);
  transform: scaleX(0); transform-origin: left center;
  z-index: 1100;
}

/* Floating actions */
.wa-float, .call-float {
  position: fixed; right: 22px; width: 54px; height: 54px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  transition: transform 0.25s ease;
}
.wa-float { bottom: 26px; background: #25d366; color: #fff; }
.call-float { bottom: 94px; background: var(--gold); color: var(--ink); }
.wa-float:hover, .call-float:hover { transform: translateY(-3px) scale(1.04); }
.wa-icon, .call-icon { width: 24px; height: 24px; fill: currentColor; }

/* Keep floating pill navbar */
.nav {
  position: fixed;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: min(94%, var(--max-w));
  height: 86px;
  z-index: 900;
  display: flex; align-items: center;
  background: rgba(11, 31, 24, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(168, 218, 220, 0.16);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  transition: height 0.3s ease, top 0.3s ease, background 0.3s ease;
}
.nav.scrolled {
  top: 10px; height: 70px;
  background: rgba(11, 31, 24, 0.9);
}
.nav .wrap {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 18px 0 22px;
}
.brand-container { display: flex; align-items: center; }
.logo-img {
  max-height: 68px; width: auto; height: auto;
  transition: max-height 0.3s ease;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.35));
}
.nav.scrolled .logo-img { max-height: 52px; }
.nav-right { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.links { display: flex; align-items: center; gap: 16px; }
.links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(243,238,228,0.82);
  transition: color 0.2s;
}
.links a:hover, .links a.active { color: var(--fern); }

.cta {
  background: var(--gold);
  color: #04140E;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,0.3);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.cta:hover {
  background: #F2D78A;
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(232,184,74,0.4);
}

.mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-toggle span {
  display: block; width: 24px; height: 2px; margin: 5px 0;
  background: var(--sand); border-radius: 2px;
}
.mobile-nav-overlay {
  position: fixed; inset: 0; background: rgba(4,20,14,0.75);
  backdrop-filter: blur(8px); z-index: 998;
  opacity: 0; pointer-events: none; transition: 0.3s;
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-nav-links {
  position: fixed; top: 0; right: 0; width: min(300px, 88vw); height: 100vh;
  background: var(--grove); z-index: 999;
  padding: 100px 0 0;
  transform: translateX(100%); transition: transform 0.3s;
  border-left: 1px solid rgba(168,218,220,0.15);
}
.mobile-nav-links.active { transform: translateX(0); }
.mobile-nav-links a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav-links a.active { color: var(--gold); }
.menu-close-btn {
  position: absolute; top: 24px; right: 24px;
  width: 42px; height: 42px; border: none; border-radius: 50%;
  background: var(--moss); color: var(--sand); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

footer, .site-footer {
  position: relative;
  padding: 80px 0 36px;
  background: #06140F;
  border-top: 1px solid rgba(168,218,220,0.1);
}
footer::before, .site-footer::before {
  content: "";
  position: absolute; inset: 0 auto auto 0; right: 0; height: 3px;
  background: var(--g-breathe);
}
.footer-container {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px;
}
footer h4, .site-footer h4 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fern);
}
footer ul, .site-footer ul { list-style: none; margin: 0; padding: 0; }
footer li, .site-footer li { margin-bottom: 12px; }
footer a, .site-footer a { opacity: 0.75; transition: 0.2s; }
footer a:hover, .site-footer a:hover { opacity: 1; color: var(--mist); }
.footer-legal {
  margin-top: 36px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; gap: 14px 24px;
  justify-content: space-between; font-size: 0.85rem; opacity: 0.65;
}
.social-dark { display: flex; gap: 12px; }
.social-dark a {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(82,183,136,0.15); color: var(--fern);
  transition: 0.2s;
}
.social-dark a:hover { background: var(--fern); color: var(--ink); }
.social-dark svg { width: 18px; height: 18px; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1), transform 0.85s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .links { display: none; }
  .mobile-menu-toggle { display: block; }
  .footer-container { grid-template-columns: 1fr; text-align: center; }
  .social-dark, .footer-legal { justify-content: center; }
  .logo-img { max-height: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
