/* ═══════════════════════════════════════════════
   GENZCOACH.IN — Shared Stylesheet
   ═══════════════════════════════════════════════ */

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

:root {
  --cream: #F6F1E7;
  --cream-mid: #EDE5D0;
  --cream-dark: #E3D9C0;
  --ink: #18120C;
  --ink-soft: rgba(24,18,12,0.65);
  --saffron: #E8420A;
  --saffron-dark: #C03208;
  --gold: #C08C0A;
  --gold-light: #EDB830;
  --indigo: #1E2A4A;
  --sage: #3A4A30;
  --warm-white: #FAF7F0;
}

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

/* ── BUTTONS ── */
.btn-primary { background: var(--saffron); color: white; padding: 16px 36px; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; display: inline-block; transition: all 0.25s; cursor: pointer; border: none; font-family: 'DM Sans', sans-serif; }
.btn-primary:hover { background: var(--saffron-dark); transform: translateY(-2px); }
.btn-outline { border: 1.5px solid var(--ink); color: var(--ink); padding: 15px 32px; font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; display: inline-block; transition: all 0.25s; opacity: 0.7; cursor: pointer; background: none; font-family: 'DM Sans', sans-serif; }
.btn-outline:hover { opacity: 1; background: var(--ink); color: var(--cream); }
.btn-gold { background: var(--gold-light); color: var(--indigo); padding: 16px 36px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; display: inline-block; cursor: pointer; border: none; transition: all 0.25s; font-family: 'DM Sans', sans-serif; }
.btn-gold:hover { background: white; transform: translateY(-2px); }
.btn-light { border: 1.5px solid rgba(246,241,231,0.35); color: var(--cream); padding: 15px 32px; font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; display: inline-block; transition: all 0.25s; cursor: pointer; background: none; font-family: 'DM Sans', sans-serif; }
.btn-light:hover { background: rgba(246,241,231,0.1); }

/* ── SECTION COMMONS ── */
.sec-label { font-family: 'Bebas Neue', sans-serif; font-size: 10px; letter-spacing: 5px; color: var(--gold); margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.sec-label::after { content: ''; flex: 0 0 28px; height: 1px; background: var(--gold); opacity: 0.5; }
.sec-label.light { color: var(--gold-light); }
.sec-label.light::after { background: var(--gold-light); }
.sec-title { font-family: 'Playfair Display', serif; font-size: clamp(30px, 3.5vw, 48px); line-height: 1.1; color: var(--ink); }
.sec-title em { color: var(--saffron); font-style: italic; }
.sec-title.light { color: var(--cream); }
.sec-title.light em { color: var(--gold-light); }

/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; padding: 0 60px; height: 68px; display: flex; justify-content: space-between; align-items: center; background: rgba(246,241,231,0.94); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(192,140,10,0.15); }
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 3px; color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: 6px; }
.nav-logo .dot { color: var(--saffron); }
.nav-links { display: flex; list-style: none; }
.nav-links a { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink); text-decoration: none; opacity: 0.5; padding: 0 16px; height: 68px; display: flex; align-items: center; border-bottom: 2px solid transparent; transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; border-bottom-color: var(--saffron); }
.nav-links a.nav-cta { background: var(--saffron); color: white !important; opacity: 1 !important; border-bottom: none !important; padding: 0 24px !important; }
.nav-links a.nav-cta:hover { background: var(--saffron-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--cream); z-index: 499; flex-direction: column; border-bottom: 3px solid var(--saffron); box-shadow: 0 8px 32px rgba(24,18,12,0.15); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 16px 24px; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; color: var(--ink); text-decoration: none; border-bottom: 1px solid rgba(24,18,12,0.08); }
.mobile-menu a:hover { color: var(--saffron); }

/* ── MARQUEE ── */
.marquee-bar { background: var(--ink); overflow: hidden; padding: 14px 0; }
.marquee-inner { display: flex; animation: scroll 28s linear infinite; white-space: nowrap; }
.m-item { font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: 4px; color: rgba(237,184,48,0.7); padding: 0 28px; }
.m-dot { color: var(--saffron) !important; }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 56px 80px 28px; }
.ft { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.fl-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 3px; color: var(--cream); margin-bottom: 10px; }
.fl-name span { color: var(--saffron); }
.fl-tag { font-size: 13px; color: rgba(246,241,231,0.62); line-height: 1.7; max-width: 220px; }
.fc-title { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; opacity: 0.9; }
.fc-links { list-style: none; }
.fc-links li { margin-bottom: 10px; }
.fc-links a { font-size: 13px; color: rgba(246,241,231,0.72); text-decoration: none; transition: color 0.2s; }
.fc-links a:hover { color: var(--cream); }
.fb-line { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.fb-copy { font-size: 11px; color: rgba(246,241,231,0.22); letter-spacing: 0.5px; }
.fb-social { display: flex; gap: 20px; }
.fb-social a { font-size: 11px; color: rgba(246,241,231,0.55); text-decoration: none; letter-spacing: 1px; text-transform: uppercase; transition: color 0.2s; }
.fb-social a:hover { color: var(--gold-light); }

/* ── PAGE HERO COMMONS ── */
.page-hero { padding: 112px 80px 72px; }
.page-hero.dark { background: var(--ink); }
.page-hero.cream { background: var(--cream-dark); }
.page-hero.indigo { background: var(--indigo); }
.page-hero.saffron { background: var(--saffron); }

/* ── GRID UTILITIES ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(24,18,12,0.08); }
.four-col { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: rgba(24,18,12,0.08); }
.card { background: var(--warm-white); padding: 44px 36px; transition: background 0.3s; }
.card:hover { background: var(--cream-dark); }
.card.dark { background: rgba(255,255,255,0.04); }
.card.dark:hover { background: rgba(255,255,255,0.08); }

/* ── ANIMATIONS ── */
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ── MOBILE ── */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  footer { padding: 40px 24px 24px; }
  .ft { grid-template-columns: 1fr 1fr; gap: 28px; }
  .fb-line { flex-direction: column; gap: 12px; text-align: center; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .three-col { grid-template-columns: 1fr; }
  .four-col { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 100px 24px 56px; }
}
