/* ═══════════════════════════════════════════════
   JAISVI KUMAR — Shared Stylesheet
   Theme: Lavender & Silver · Age: 10+ · Golfer
   ═══════════════════════════════════════════════ */

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

:root {
  --lav-xlight:  #f5eeff;
  --lav-light:   #ecdeff;
  --lav:         #c9a8f0;
  --lav-mid:     #b48de6;
  --lav-deep:    #8b5fd4;
  --lav-dark:    #6b3fa8;
  --lav-xdark:   #2d1b4e;

  --silver-xlight: #f8f8fa;
  --silver-light:  #ededf2;
  --silver:        #d4d4d8;
  --silver-mid:    #a8a8b8;
  --silver-dark:   #6b6b7b;

  --gold:        #e8c84a;
  --gold-dark:   #c9a830;
  --green:       #4caf7d;
  --white:       #ffffff;

  --text-dark:   #2d1b4e;
  --text-mid:    #4a3570;
  --text-soft:   #7a6a9a;

  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   28px;
  --radius-xl:   40px;

  --shadow-sm:   0 4px 16px rgba(139,95,212,.10);
  --shadow-md:   0 8px 30px rgba(139,95,212,.15);
  --shadow-lg:   0 20px 60px rgba(139,95,212,.22);
}

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

body {
  font-family: 'Nunito', sans-serif;
  background: var(--lav-xlight);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width:100%; display:block; object-position: top center; }
a  { text-decoration:none; }

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--lav-light);
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--lav-dark);
  letter-spacing: .5px;
}
.nav-brand em { color: var(--lav-mid); font-style:normal; }

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-weight: 700;
  font-size: .88rem;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: 50px;
  letter-spacing: .4px;
  transition: background .25s, color .25s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--lav-light);
  color: var(--lav-dark);
}

.nav-links .nav-cta {
  background: var(--lav-dark);
  color: #fff;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 800;
  margin-left: 8px;
}

.nav-links .nav-cta:hover {
  background: var(--lav-deep);
  color: #fff;
}

/* ── PAGE WRAPPER ── */
.page-wrap { padding-top: 68px; }

/* ── SECTIONS ── */
section { padding: 90px 24px; }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.container-sm {
  max-width: 780px;
  margin: 0 auto;
}

/* ── SECTION HEADERS ── */
.sh-label {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lav-mid);
  margin-bottom: 10px;
}

.sh-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--lav-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.sh-line {
  width: 56px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--lav), var(--silver));
  margin-bottom: 36px;
}

.sh-desc {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 48px;
  max-width: 680px;
}

/* sh-* inverted (for dark sections) */
.inv .sh-label { color: var(--lav); }
.inv .sh-title { color: #fff; }
.inv .sh-line  { background: linear-gradient(90deg, var(--lav), var(--gold)); }
.inv .sh-desc  { color: rgba(255,255,255,.75); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  letter-spacing: .5px;
}

.btn-primary {
  background: var(--lav-dark);
  color: #fff;
  box-shadow: 0 8px 28px rgba(107,63,168,.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(107,63,168,.45);
}

.btn-gold {
  background: var(--gold);
  color: var(--text-dark);
  box-shadow: 0 8px 28px rgba(232,200,74,.4);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(232,200,74,.5);
}

.btn-outline {
  background: transparent;
  color: var(--lav-dark);
  border: 2.5px solid var(--lav-dark);
}

.btn-outline:hover {
  background: var(--lav-dark);
  color: #fff;
  transform: translateY(-3px);
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

/* ── BADGES / CHIPS ── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lav-light);
  color: var(--lav-dark);
  border: 2px solid var(--lav);
  font-weight: 700;
  font-size: .82rem;
  padding: 6px 16px;
  border-radius: 50px;
}

.chip-gold {
  background: #fff9e0;
  color: var(--gold-dark);
  border-color: var(--gold);
}

.chip-green {
  background: #e8faf1;
  color: #2d7a52;
  border-color: var(--green);
}

.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── TAG (small inline label) ── */
.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.tag-lav   { background: var(--lav-dark);  color: #fff; }
.tag-gold  { background: var(--gold);       color: var(--text-dark); }
.tag-green { background: var(--green);      color: #fff; }
.tag-silver{ background: var(--silver);     color: var(--text-dark); }

/* ── HERO (shared base) ── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.4);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,.25);
}

.hero-h1 .gold { color: var(--gold); display:block; }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,.85);
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-meta {
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 40px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-tag {
  background: rgba(255,255,255,.17);
  border: 1.5px solid rgba(255,255,255,.35);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 700;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.45);
  font-size: .75rem;
  letter-spacing: 1px;
  animation: bobble 2.4s ease-in-out infinite;
}

@keyframes bobble {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(9px); }
}

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 24px 70px;
}

.page-hero .hero-h1 { font-size: clamp(2.4rem, 7vw, 5rem); }

/* ── QUOTE BAND ── */
.quote-band {
  background: linear-gradient(135deg, var(--gold), #f5d85a);
  padding: 70px 40px;
  text-align: center;
}

.quote-band blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--text-dark);
  max-width: 720px;
  margin: 0 auto 18px;
  line-height: 1.4;
}

.quote-band cite {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 1.5px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--lav-xdark);
  color: rgba(255,255,255,.65);
  padding: 60px 24px 36px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.footer-bio {
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
}

.footer-col h5 {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lav);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  font-weight: 600;
  transition: color .25s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  max-width: 1100px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

.footer-heart { color: var(--lav); }

/* ── DIVIDERS ── */
.bg-white  { background: var(--white); }
.bg-lav    { background: var(--lav-xlight); }
.bg-dark   { background: linear-gradient(160deg, var(--lav-xdark), #5b2fa0); }
.bg-golf   { background: linear-gradient(160deg, #eef8f3, #f5eeff); }

/* ── GRID UTILITIES ── */
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:32px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }

/* ── TIMELINE ── */
.timeline { position:relative; max-width:750px; margin:0 auto; }
.timeline::before {
  content:'';
  position:absolute;
  left:44px; top:0; bottom:0;
  width:3px;
  background:linear-gradient(180deg, var(--lav), transparent);
}
.tl-item { display:flex; gap:28px; margin-bottom:36px; }
.tl-dot {
  width:90px; height:90px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--lav), var(--lav-dark));
  display:flex; align-items:center; justify-content:center;
  font-size:2rem; flex-shrink:0;
  box-shadow:0 6px 20px rgba(139,95,212,.3);
  position:relative; z-index:1;
}
.tl-body {
  flex:1;
  background: var(--white);
  border-radius: var(--radius-md);
  padding:24px 28px;
  border-left:4px solid var(--lav);
  box-shadow: var(--shadow-sm);
  margin-top:12px;
}
.tl-body h4 { font-size:1.05rem; font-weight:800; color:var(--lav-dark); margin-bottom:8px; }
.tl-body p  { font-size:.9rem; color:var(--text-soft); line-height:1.65; }

/* ── FORM ── */
.form-group { margin-bottom:22px; }
.form-group label {
  display:block;
  font-weight:800;
  font-size:.88rem;
  color:var(--lav-dark);
  margin-bottom:8px;
  letter-spacing:.4px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width:100%;
  padding:14px 20px;
  border:2.5px solid var(--lav-light);
  border-radius:var(--radius-sm);
  font-family:'Nunito', sans-serif;
  font-size:1rem;
  color:var(--text-dark);
  background:var(--white);
  transition:border-color .25s, box-shadow .25s;
  outline:none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color:var(--lav-mid);
  box-shadow:0 0 0 4px rgba(180,141,230,.18);
}
.form-group textarea { min-height:150px; resize:vertical; }

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .grid-3 { grid-template-columns:1fr 1fr; }
  .grid-4 { grid-template-columns:1fr 1fr; }
  .footer-inner { grid-template-columns:1fr 1fr; }
  .footer-inner > *:first-child { grid-column:1/-1; }
}

@media(max-width:640px) {
  .site-nav { padding:0 20px; }
  .nav-links { display:none; }
  .grid-2,.grid-3,.grid-4 { grid-template-columns:1fr; }
  section { padding:60px 16px; }
  .footer-inner { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; gap:8px; text-align:center; }
  .tl-dot { width:58px; height:58px; font-size:1.4rem; }
  .timeline::before { left:28px; }
}
