/* ══════════════════════════════════════════════
   NICE TIME GROUP — Shared Stylesheet
   ══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

:root {
  --navy:        #0C1B33;
  --navy-mid:    #142444;
  --navy-light:  #1E3055;
  --gold:        #C8922A;
  --gold-light:  #E8B84B;
  --gold-pale:   #F5E6C8;
  --cream:       #FAF7F1;
  --cream-dark:  #F0EBE0;
  --white:       #FFFFFF;
  --text-dark:   #0C1B33;
  --text-mid:    #3A4A6B;
  --text-muted:  #7A8BA8;
  --red:         #A82010;
  --red-mid:     #7a1408;
  --green:       #1A6B3C;
  --green-mid:   #0f4526;
  --lodge:       #5C3D1E;
  --lodge-mid:   #3a2510;
}

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

/* ── UTILS ── */
.serif    { font-family: 'Cormorant Garamond', serif; }
.gold     { color: var(--gold); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 36px; }

.section-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-weight: 700; font-size: 13px;
  padding: 13px 28px; border-radius: 3px; text-decoration: none;
  letter-spacing: 0.3px; transition: transform 0.2s, box-shadow 0.2s;
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,146,42,0.35); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.3); color: var(--white);
  font-size: 13px; padding: 13px 28px; border-radius: 3px;
  text-decoration: none; letter-spacing: 0.3px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(200,146,42,0.08); color: var(--gold-light); }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(12,27,51,0.25); color: var(--navy);
  font-size: 13px; padding: 13px 28px; border-radius: 3px;
  text-decoration: none; letter-spacing: 0.3px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-dark:hover { border-color: var(--gold); background: rgba(200,146,42,0.05); }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  font-size: 12px; padding: 9px 36px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.topbar a { color: var(--gold-light); text-decoration: none; }
.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar-item { display: flex; align-items: center; gap: 7px; }
.topbar-item i { font-size: 11px; color: var(--gold); }

/* ── NAVIGATION ── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(10, 22, 43, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,146,42,0.15);
  padding: 0 36px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.5); }

.nav-logo { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.logo-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 700; color: var(--navy);
  flex-shrink: 0;
}
.logo-text-wrap { line-height: 1.1; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: var(--white);
  display: block;
}
.logo-sub {
  font-size: 10px; letter-spacing: 2.5px; color: var(--gold-light);
  text-transform: uppercase; font-weight: 400; display: block;
}

.nav-center { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 0.3px;
  padding: 10px 14px; border-radius: 4px; display: flex;
  align-items: center; gap: 5px; transition: color 0.2s, background 0.2s;
}
.nav-link i { font-size: 10px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.nav-link:hover { color: var(--gold-light); background: rgba(255,255,255,0.04); }
.nav-link:hover i { color: var(--gold-light); }
.nav-link.active { color: var(--gold-light); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: #0e1f3a; border: 1px solid rgba(200,146,42,0.2);
  border-radius: 6px; min-width: 220px;
  padding: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 300;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 4px; text-decoration: none;
  color: rgba(255,255,255,0.7); font-size: 13px;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: rgba(200,146,42,0.1); color: var(--gold-light); }
.dropdown-menu a i { font-size: 14px; color: var(--gold); width: 18px; text-align: center; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important; font-weight: 700 !important;
  padding: 9px 22px !important; border-radius: 4px;
}
.nav-cta:hover { opacity: 0.9; background: none; background: linear-gradient(135deg, var(--gold-light), var(--gold)); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); display: block; transition: 0.3s; }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(10, 22, 43, 0.99); z-index: 199;
  overflow-y: auto; padding: 32px 24px;
  flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 15px; padding: 14px 16px; border-radius: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; gap: 12px;
  transition: color 0.2s;
}
.mobile-nav a i { color: var(--gold); width: 20px; text-align: center; }
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav .m-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important; font-weight: 700; border-radius: 4px;
  margin-top: 16px; justify-content: center; border: none;
}

/* ── MARQUEE ── */
.marquee-bar {
  background: var(--gold); padding: 12px 0; overflow: hidden;
}
.marquee-track {
  display: flex; animation: marqueeScroll 25s linear infinite; white-space: nowrap;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 0 24px; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--navy);
}
.marquee-sep { width: 4px; height: 4px; background: var(--navy); border-radius: 50%; opacity: 0.4; }

/* ── FOOTER ── */
footer {
  background: #07101f;
  border-top: 1px solid rgba(200,146,42,0.12);
  padding: 72px 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 14px;
}
.footer-brand-desc {
  font-size: 13px; color: rgba(255,255,255,0.33);
  line-height: 1.75; max-width: 280px; margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,0.4); font-size: 13px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.social-btn:hover { border-color: var(--gold); background: rgba(200,146,42,0.1); color: var(--gold-light); }
.footer-col-title {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,0.38); text-decoration: none;
  transition: color 0.2s; display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-links a i { font-size: 10px; color: var(--gold); opacity: 0.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px; display: flex;
  justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── SECTION INTRO ── */
.section-intro { margin-bottom: 64px; }
.section-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 56px); font-weight: 300;
  line-height: 1.15; margin: 12px 0 20px; color: var(--navy);
}
.section-intro h2 strong { font-weight: 700; }
.section-intro h2 em { font-style: italic; color: var(--gold); }
.section-intro.light h2 { color: var(--white); }
.section-intro p { font-size: 15px; color: var(--text-muted); line-height: 1.8; max-width: 520px; }
.section-intro.light p { color: rgba(255,255,255,0.5); }

/* ── KEYFRAMES ── */
@keyframes fadeUp  { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn  { from { opacity:0; }  to { opacity:1; } }
@keyframes goldPulse { 0%,100%{box-shadow:0 0 0 0 rgba(200,146,42,.4);} 50%{box-shadow:0 0 0 12px rgba(200,146,42,0);} }
@keyframes float  { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }
@keyframes shimmer { 0%{background-position:-200% center;} 100%{background-position:200% center;} }

/* ── RESPONSIVE BASE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 768px) {
  .topbar { flex-direction: column; gap: 4px; text-align: center; }
  .topbar-left { flex-wrap: wrap; justify-content: center; }
  .nav-center, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}