/* ===== HYENESS HOLIDAYS — LIGHT THEME ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --gold: #B8860B;
  --gold-mid: #C9990F;
  --gold-light: #E6B830;
  --gold-pale: #FDF3D0;
  --gold-bg: #FBF5E0;

  /* Light surfaces */
  --bg: #F8F5F0;
  --surface: #FFFFFF;
  --surface-2: #F2EDE5;
  --surface-3: #E8E0D2;

  /* Text */
  --text: #1A1410;
  --text-2: #3D3028;
  --text-muted: #7A6E62;
  --white: #FFFFFF;

  --accent: #1E6FA6;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 40px rgba(90,60,20,0.12);
  --shadow-gold: 0 4px 24px rgba(184,134,11,0.22);
  --shadow-card: 0 2px 20px rgba(90,60,20,0.08);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--text); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(184,134,11,0.15);
  box-shadow: 0 4px 24px rgba(90,60,20,0.1);
}
.navbar .container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-logo { display: flex; align-items: center; gap: 0.75rem; }
.navbar-logo .logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.navbar-logo .logo-text { display: flex; flex-direction: column; }
.navbar-logo .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--text); letter-spacing: 0.5px;
}
.navbar-logo .logo-tagline {
  font-size: 0.62rem; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.5px;
  color: var(--text-2);
  transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.btn-book {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white) !important;
  font-weight: 700 !important; font-size: 0.85rem !important;
  padding: 0.6rem 1.5rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.4rem;
  box-shadow: var(--shadow-gold); transition: var(--transition);
}
.btn-book:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(184,134,11,0.4); }
.btn-book::after { display: none !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.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 {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: var(--surface); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
  border-left: 4px solid var(--gold-pale);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.5rem; color: var(--text); font-family: 'Playfair Display', serif; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn-book-mobile {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white); font-weight: 700; padding: 1rem 3rem;
  border-radius: 50px; font-size: 1rem;
}

/* ===== SECTION UTILITIES ===== */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--text); margin-bottom: 1rem; }
.section-subtitle { font-size: 1rem; color: var(--text-muted); max-width: 600px; line-height: 1.8; }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mx-auto { margin: 0 auto; }

/* Divider */
.gold-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; margin: 1rem 0 2rem; }
.gold-divider.center { margin: 1rem auto 2rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.875rem;
  padding: 0.8rem 2rem; border-radius: 50px; border: none;
  cursor: pointer; transition: var(--transition); letter-spacing: 0.5px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white); box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(184,134,11,0.4); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid rgba(184,134,11,0.4);
}
.btn-outline:hover { border-color: var(--gold); background: var(--gold-pale); color: var(--gold); }
.btn-whatsapp {
  background: #25D366; color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.45); }

/* ===== CARDS ===== */
.card {
  background: var(--surface); border-radius: var(--radius-lg);
  border: 1px solid var(--surface-3); overflow: hidden;
  transition: var(--transition);
}
.card:hover { transform: translateY(-6px); border-color: rgba(184,134,11,0.25); box-shadow: var(--shadow); }

/* ===== FOOTER ===== */
.footer {
  background: #1A1410;
  border-top: 3px solid var(--gold);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-about p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.8; margin-top: 1rem; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(184,134,11,0.15); border: 1px solid rgba(184,134,11,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); }
.footer h4 {
  font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.5rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.45); font-size: 0.9rem; transition: var(--transition); display: flex; align-items: center; gap: 0.4rem; }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 0.75rem; margin-bottom: 1rem; }
.footer-contact-item .icon { color: var(--gold-light); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item p { color: rgba(255,255,255,0.45); font-size: 0.875rem; line-height: 1.6; }
.footer-contact-item a { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem; display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer .navbar-logo .logo-name { color: #FFFFFF; }

/* ===== PAGE HERO ===== */
.page-hero {
  min-height: 55vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 80px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #FBF5E0 0%, #F5ECD8 50%, #EDE3CC 100%);
}
.page-hero-pattern {
  position: absolute; inset: 0; opacity: 0.2;
  background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--text); }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-muted); margin-top: 1rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links, .btn-book { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .section { padding: 4rem 0; }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
