@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Poppins:wght@300;400;500;600;700&family=Dancing+Script:wght@700&display=swap');

:root {
  --gold: #F5A623;
  --deep-gold: #D4850A;
  --dark: #1A0A00;
  --cream: #FFF8EE;
  --light-gold: #FFF3D0;
  --text-muted: #6B4C2A;
}

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

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(26,10,0,0.97);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 48px;
  border-bottom: 2px solid var(--gold);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 48px; filter: drop-shadow(0 0 8px rgba(245,166,35,0.4)); }
.nav-logo-text .name { color: #fff; font-weight: 700; font-size: 1rem; line-height: 1.1; }
.nav-logo-text .tag { color: var(--gold); font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; gap: 6px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.5px;
  padding: 7px 14px; border-radius: 8px; transition: all 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(245,166,35,0.1); }
.nav-cta {
  background: var(--gold); color: var(--dark);
  padding: 9px 22px; border-radius: 30px;
  font-weight: 700; font-size: 0.8rem;
  text-decoration: none; letter-spacing: 0.5px;
  transition: all 0.3s; white-space: nowrap;
}
.nav-cta:hover { background: var(--deep-gold); transform: scale(1.04); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(26,10,0,0.98); border-bottom: 1px solid rgba(245,166,35,0.2);
  flex-direction: column; padding: 16px 24px; gap: 4px; z-index: 999;
}
.mobile-menu a { color: rgba(255,255,255,0.8); text-decoration: none; padding: 10px 0; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-menu a.active { color: var(--gold); }
.mobile-menu.open { display: flex; }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding: 130px 20px 70px;
  background: linear-gradient(135deg, #1A0A00 0%, #3B1A00 50%, #1A0A00 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(245,166,35,0.12), transparent 70%);
}
.page-header .tag {
  display: inline-block; color: var(--gold);
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 600; margin-bottom: 14px;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 14px;
}
.page-header h1 span { color: var(--gold); }
.page-header p { color: rgba(255,255,255,0.55); font-size: 0.95rem; max-width: 500px; margin: 0 auto; line-height: 1.8; }

/* ── MARQUEE ── */
.marquee-wrap { background: var(--gold); padding: 13px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 60px; white-space: nowrap; animation: marquee 22s linear infinite; }
.marquee-track span { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); flex-shrink: 0; }

/* ── CONTAINER / SECTION ── */
.container { max-width: 1160px; margin: 0 auto; }
section { padding: 80px 20px; }
.section-tag { display: inline-block; color: var(--gold); font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.15; margin-bottom: 14px; }
.section-desc { color: var(--text-muted); font-size: 0.92rem; line-height: 1.85; max-width: 580px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--gold); color: var(--dark);
  padding: 13px 32px; border-radius: 40px; font-weight: 700;
  font-size: 0.88rem; text-decoration: none; letter-spacing: 0.5px;
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(245,166,35,0.35);
}
.btn-primary:hover { background: var(--deep-gold); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,166,35,0.45); }
.btn-outline {
  display: inline-block; border: 2px solid rgba(255,255,255,0.25);
  color: #fff; padding: 13px 32px; border-radius: 40px;
  font-weight: 600; font-size: 0.88rem; text-decoration: none; transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: wapulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ── FOOTER ── */
footer {
  background: #0D0500; border-top: 1px solid rgba(245,166,35,0.15);
  padding: 44px 20px 24px; text-align: center;
}
.footer-logo { height: 50px; margin-bottom: 18px; }
.footer-links { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; margin-bottom: 18px; }
.footer-links a { color: rgba(255,255,255,0.35); font-size: 0.78rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; justify-content: center; gap: 12px; margin-bottom: 20px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.85rem; text-decoration: none; transition: all 0.3s;
}
.social-btn:hover { background: var(--gold); color: var(--dark); }
footer p { color: rgba(255,255,255,0.28); font-size: 0.78rem; line-height: 1.8; }
footer a { color: var(--gold); text-decoration: none; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(28px); transition: all 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── ANIMATIONS ── */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes wapulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.5);} 50%{box-shadow:0 4px 30px rgba(37,211,102,0.8);} }

/* ── RESPONSIVE ── */
@media(max-width: 768px) {
  nav { padding: 10px 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}
