/* ── SAMURAI×× TRAVELS – SHARED STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Outfit:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

:root {
  --green-deep:   #0d5c2e;
  --green-mid:    #1a8a46;
  --green-bright: #29c765;
  --gold:         #f5a623;
  --amber:        #ff8c00;
  --sky:          #00b4d8;
  --earth:        #c1440e;
  --sand:         #f5e6c8;
  --cream:        #fdf8ef;
  --dark:         #0a1a0e;
  --white:        #ffffff;
  --radius:       20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 5%;
  background: rgba(10,26,14,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--green-bright);
  transition: padding .3s;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: 3px;
  color: var(--green-bright); text-decoration: none; line-height: 1;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
  color: var(--sand); font-size: .85rem; font-weight: 500;
  text-decoration: none; letter-spacing: 1px; text-transform: uppercase;
  transition: color .25s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--green-bright); }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Currency toggle */
.currency-toggle {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(41,199,101,.25);
  border-radius: 30px; padding: 4px 6px;
}
.cur-btn {
  background: none; border: none; color: rgba(245,230,200,.6);
  font-family: 'Outfit', sans-serif; font-size: .72rem; font-weight: 600;
  padding: 3px 9px; border-radius: 20px; cursor: pointer;
  transition: background .2s, color .2s; letter-spacing: .5px;
}
.cur-btn.active { background: var(--green-bright); color: var(--dark); }

.nav-cta {
  background: var(--green-bright); color: var(--dark);
  border: none; padding: 9px 20px; border-radius: 30px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .83rem;
  cursor: pointer; letter-spacing: .5px; transition: background .25s, transform .2s;
  text-decoration: none; white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); transform: scale(1.04); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--sand); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0;
  background: rgba(10,26,14,.97);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--green-bright);
  z-index: 998; padding: 20px 5% 28px;
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--sand); text-decoration: none; font-size: 1rem;
  font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--green-bright); }
.mobile-menu .mob-cta {
  background: var(--green-bright); color: var(--dark);
  text-align: center; border-radius: 30px; padding: 13px;
  font-weight: 700; margin-top: 10px; border-bottom: none;
}

/* ── SECTION UTILITIES ── */
.section-label {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 5px; font-size: .78rem;
  color: var(--green-bright); text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); line-height: 1.1;
  margin-bottom: 14px;
}
.section-title span { color: var(--gold); font-style: italic; }
.section-title.dark { color: var(--dark); }
.section-title.dark span { color: var(--green-mid); }
.section-sub {
  color: rgba(245,230,200,.65); font-size: .95rem; line-height: 1.7;
  max-width: 560px; margin-bottom: 44px;
}
.section-sub.dark { color: #555; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--green-bright); color: var(--dark);
  border: none; padding: 14px 34px; border-radius: 40px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .95rem;
  cursor: pointer; transition: background .25s, transform .2s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-3px); }
.btn-outline {
  border: 2px solid rgba(245,230,200,.5); color: var(--sand);
  background: transparent; padding: 12px 30px; border-radius: 40px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .95rem;
  cursor: pointer; transition: border-color .25s, color .25s, transform .2s;
  text-decoration: none; display: inline-block;
}
.btn-outline:hover { border-color: var(--green-bright); color: var(--green-bright); transform: translateY(-3px); }
.btn-gold {
  background: var(--gold); color: var(--dark);
  border: none; padding: 14px 34px; border-radius: 40px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .95rem;
  cursor: pointer; transition: background .25s, transform .2s;
  text-decoration: none; display: inline-block;
}
.btn-gold:hover { background: var(--amber); transform: translateY(-3px); }

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; box-shadow: 0 6px 24px rgba(37,211,102,.45);
  cursor: pointer; transition: transform .25s;
  text-decoration: none; color: var(--white);
}
.wa-float:hover { transform: scale(1.1) rotate(-8deg); }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  padding: 50px 5% 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand .nav-logo { font-size: 2rem; }
.footer-brand p { color: rgba(255,255,255,.4); font-size: .85rem; margin-top: 10px; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 3px;
  font-size: .8rem; color: var(--green-bright); text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,.45); font-size: .85rem;
  text-decoration: none; margin-bottom: 10px; transition: color .2s;
}
.footer-col a:hover { color: var(--green-bright); }
.footer-col p { color: rgba(255,255,255,.4); font-size: .85rem; margin-bottom: 8px; }
.social-row { display: flex; gap: 10px; margin-top: 14px; }
.soc-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; cursor: pointer; transition: background .2s;
  text-decoration: none; color: var(--white);
}
.soc-btn:hover { background: var(--green-bright); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,.25); font-size: .8rem; }

/* ── DESTINATIONS MARQUEE ── */
.marquee-section {
  background: var(--gold); padding: 16px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 50px;
  animation: marquee 22s linear infinite;
  white-space: nowrap; width: max-content;
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: 3px; color: var(--dark);
  display: flex; align-items: center; gap: 12px;
}
.marquee-item::after { content: '✦'; opacity: .4; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
