/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, Arial, sans-serif; color: #1a1a2e; background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Tokens ── */
:root {
  --purple: #5B2D8E; --purple-mid: #7B4DB8; --purple-light: #EDE7F6;
  --purple-gradient: linear-gradient(135deg, #1a0a2e 0%, #2d1057 40%, #4A148C 70%, #6a1fa0 100%);
  --gold: #C9A84C; --gold-lt: #E8C96A;
  --dark: #1a1a2e; --mid: #4a4a6a; --soft: #f7f5ff; --white: #fff;
  --r: 12px;
  --sh: 0 4px 24px rgba(91,45,142,.10);
  --sh-lg: 0 12px 48px rgba(91,45,142,.18);
}

/* ── Pride stripe ── */
.pride-stripe {
  height: 10px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg,
    #E40303 0 16.6%, #FF8C00 16.6% 33.2%,
    #FFED00 33.2% 49.8%, #008026 49.8% 66.4%,
    #004DFF 66.4% 83%, #750787 83% 100%);
}
/* Glitter sweep highlight */
.pride-stripe::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 20%,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,0.55) 45%,
    rgba(255,255,255,0.85) 50%,
    rgba(255,255,255,0.55) 55%,
    rgba(255,255,255,0) 65%,
    transparent 80%);
  background-size: 200% 100%;
  animation: glitterSweep 2.4s linear infinite;
}
/* Glitter sparkle dots — JS-generated individual spans for random size/timing */
.pride-sparkle {
  position: absolute;
  border-radius: 50%;
  background: white;
  pointer-events: none;
  animation: sparkleFlicker var(--dur, 1.2s) ease-in-out var(--delay, 0s) infinite alternate;
  transform-origin: center;
}
@keyframes glitterSweep {
  0%   { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}
@keyframes sparkleFlicker {
  0%   { opacity: 0.05; transform: scale(0.6); }
  40%  { opacity: 0.9;  transform: scale(1.1); }
  70%  { opacity: 0.3;  transform: scale(0.8); }
  100% { opacity: 1.0;  transform: scale(1.3); }
}

/* ── Navbar ── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(13, 100, 49, 0.97); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(160, 115, 211, 0.1);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--purple);
}
.nav-logo img { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li > a {
  padding: 8px 12px; border-radius: 8px;
  font-size: .85rem; font-weight: 500; color: var(--mid); transition: all .2s;
}
.nav-links > li > a:hover { background: var(--soft); color: var(--purple); }
.nav-donate {
  background: var(--purple) !important; color: #fff !important;
  padding: 9px 20px !important; border-radius: 50px !important; font-weight: 700 !important;
}
.nav-donate:hover { background: var(--purple-mid) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }
.mobile-nav {
  display: none; flex-direction: column;
  background: #fff; padding: 12px 24px 24px;
  border-top: 1px solid rgba(91,45,142,.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 0; font-size: .95rem; font-weight: 500; color: var(--mid); border-bottom: 1px solid rgba(0,0,0,.05); }
.mobile-nav a:hover { color: var(--purple); }
.mobile-donate { margin-top: 16px; background: var(--purple); color: #fff !important; text-align: center; padding: 14px !important; border-radius: 50px; font-weight: 700 !important; border: none !important; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, #0f0c29, #302b63, #24243e);
  display: flex; align-items: center;
  padding: 100px 24px 60px; position: relative; overflow: hidden;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-lt); padding: 6px 16px; border-radius: 50px;
  font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900;
  color: #fff; line-height: 1.12; margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--gold-lt); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.72); line-height: 1.75; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-gold {
  background: var(--gold); color: #1a1a2e; padding: 14px 28px;
  border-radius: 50px; font-weight: 700; font-size: .95rem;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold:hover { background: var(--gold-lt); }
.btn-ghost {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.35);
  padding: 12px 26px; border-radius: 50px; font-weight: 600; font-size: .95rem;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.7); }

/* Sponsors Section */
.sponsors {
  padding: 80px 24px;
  background: #f8f9fa;
}
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.sponsor-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.sponsor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.sponsor-logo {
  margin-bottom: 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsor-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #5B2D8E;
  margin-bottom: 15px;
}
.sponsor-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ── Monarch card ── */
.monarch-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px; padding: 28px; backdrop-filter: blur(10px); color: #fff;
}
.mlabel { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-lt); margin-bottom: 8px; }
.monarch-card h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.mtitle { font-size: .82rem; color: rgba(255,255,255,.75); line-height: 1.55; -webkit-text-fill-color: rgba(255,255,255,.75); }
.mcolors { display: flex; gap: 8px; margin-top: 14px; }
.cdot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255,255,255,.3); }
.stat-row { display: flex; gap: 12px; margin-top: 16px; }
.stat-mini {
  flex: 1; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 18px 12px; text-align: center;
}
.snum { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold-lt); }
.slbl { font-size: .7rem; color: rgba(255,255,255,.75); margin-top: 4px; text-transform: uppercase; }

/* ── Shared section styles ── */
section { padding: 20px 24px; }
.si { max-width: 1200px; margin: 0 auto; }
.stag {
  display: inline-block; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--purple); background: var(--soft); padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
}
.stitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--dark); margin-bottom: 14px;
}
.pbar { width: 56px; height: 4px; background: linear-gradient(90deg, var(--purple), var(--gold)); border-radius: 2px; margin-bottom: 18px; }
.ssub { font-size: 1rem; color: var(--mid); line-height: 1.7; max-width: 620px; margin-bottom: 48px; }

/* ── Welcome ── */
.welcome { background: var(--soft); padding: 52px 24px; }
.welcome .si { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.welcome h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--dark); margin-bottom: 14px; }
.welcome p { color: var(--mid); line-height: 1.75; margin-bottom: 12px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.ctag { background: #fff; border: 1px solid rgba(91,45,142,.2); color: var(--purple); padding: 6px 14px; border-radius: 50px; font-size: .82rem; font-weight: 500; }

/* ── Mission ── */
.mission { background: #fff; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.mission-text p { color: var(--mid); line-height: 1.75; margin-bottom: 16px; }
blockquote { background: var(--soft); border-left: 4px solid var(--purple); padding: 20px 24px; border-radius: 0 var(--r) var(--r) 0; font-style: italic; color: var(--mid); line-height: 1.7; margin-top: 24px; }
blockquote cite { display: block; margin-top: 10px; font-style: normal; font-weight: 600; color: var(--purple); font-size: .85rem; }
.info-cards { display: flex; flex-direction: column; gap: 16px; }
.icard { background: var(--soft); border-radius: var(--r); padding: 22px; border-left: 4px solid var(--purple); }
.icard h4 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--purple); margin-bottom: 8px; }
.icard p { color: var(--mid); font-size: .9rem; line-height: 1.6; }
.icard a { color: var(--purple); font-weight: 600; }

/* ── Charities ── */
.charities { background: var(--soft); }
.charity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.ccard {
  background: #fff; border-radius: var(--r); padding: 32px 24px;
  text-align: center; box-shadow: var(--sh);
  display: flex; flex-direction: column; align-items: center;
  transition: transform .3s;
}
.ccard:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.clogo { height: 80px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.clogo img { max-height: 70px; max-width: 160px; object-fit: contain; }
.ccard h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.ccard p { font-size: .88rem; color: var(--mid); line-height: 1.65; margin-bottom: 18px; flex: 1; }
.clink { color: var(--purple); font-weight: 600; font-size: .85rem; display: inline-flex; align-items: center; gap: 6px; border: 1.5px solid var(--purple); padding: 8px 18px; border-radius: 50px; transition: all .2s; }
.clink:hover { background: var(--purple); color: #fff; }

/* ── Coronation ── */
.coronation { background: #fff; }
.past-banner {
  background: linear-gradient(135deg, #1a1a2e, #5B2D8E);
  border-radius: 20px; padding: 44px 48px; color: #fff;
  margin-bottom: 24px; position: relative; overflow: hidden;
}
.past-pill {
  display: inline-flex; gap: 6px;
  background: rgba(201,168,76,.2); border: 1px solid rgba(201,168,76,.45);
  color: var(--gold-lt); padding: 5px 14px; border-radius: 50px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px;
}
.past-banner h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 8px; }
.past-banner .theme { color: rgba(255,255,255,.7); font-size: .9rem; }

/* ── ICS band ── */
.ics-band { background: linear-gradient(90deg, #1a1a2e, #302b63); padding: 40px 24px; }
.ics-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.ics-inner img { height: 56px; filter: brightness(0) invert(1); opacity: .75; }
.ics-text { flex: 1; min-width: 240px; }
.ics-text h4 { color: #fff; font-size: 1rem; margin-bottom: 6px; }
.ics-text p { color: rgba(255,255,255,.65); font-size: .85rem; line-height: 1.6; }
.ics-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: #1a1a2e; padding: 11px 22px; border-radius: 50px; font-weight: 700; font-size: .84rem; }
.ics-btn:hover { background: var(--gold-lt); }

/* ── Donate ── */
.donate { background: linear-gradient(140deg, var(--purple), #1a1a2e); color: #fff; }
.donate-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.donate-text .stag { background: rgba(255,255,255,.1); color: var(--gold-lt); }
.donate-text .pbar { background: linear-gradient(90deg, var(--gold), var(--gold-lt)); }
.donate-text .stitle { color: #fff; }
.donate-text p { color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 16px; }
.dnote { font-size: .82rem; color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); border-radius: 8px; padding: 12px 16px; line-height: 1.6; }
.donate-box { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 20px; padding: 36px; }
.donate-box h3 { color: #fff; font-size: 1.3rem; margin-bottom: 6px; }
.dsub { color: rgba(255,255,255,.6); font-size: .85rem; margin-bottom: 20px; }

/* ── Scholarship ── */
.scholarship { background: var(--soft); }
.schol-card { background: #fff; border-radius: 20px; padding: 48px; box-shadow: var(--sh); display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.schol-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--dark); margin-bottom: 14px; }
.schol-card p { color: var(--mid); line-height: 1.75; margin-bottom: 12px; font-size: .95rem; }
.em { color: var(--purple); font-weight: 600; }
.criteria { display: flex; flex-direction: column; gap: 12px; }
.crit { display: flex; gap: 14px; align-items: flex-start; background: var(--soft); border-radius: var(--r); padding: 16px; }
.crit-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--purple); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; }
.crit h5 { font-size: .9rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.crit p { font-size: .82rem; color: var(--mid); margin: 0; }

/* ── Involved ── */
.involved { background: #fff; }
.inv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.invcard { background: var(--soft); border-radius: var(--r); padding: 30px 22px; text-align: center; transition: all .3s; }
.invcard:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); background: #fff; }
.inv-icon { width: 60px; height: 60px; border-radius: 14px; background: linear-gradient(135deg, var(--purple), var(--purple-mid)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin: 0 auto 18px; }
.invcard h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.invcard p { font-size: .85rem; color: var(--mid); line-height: 1.6; margin-bottom: 18px; }
.invcard a { display: inline-flex; align-items: center; gap: 6px; color: var(--purple); font-weight: 600; font-size: .84rem; border: 1.5px solid var(--purple); padding: 8px 18px; border-radius: 50px; transition: all .2s; }
.invcard a:hover { background: var(--purple); color: #fff; }

/* ── Membership ── */
.membership { background: var(--soft); }
.membership-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.membership-info, .membership-form { background: #fff; border-radius: var(--r); padding: 32px; box-shadow: var(--sh); }
.membership-info h3 { font-size: 1.3rem; font-weight: 700; color: var(--purple); margin-bottom: 20px; }
.membership-benefits { list-style: none; margin-bottom: 24px; }
.membership-benefits li { display: flex; align-items: center; gap: 12px; padding: 10px 0; font-size: .95rem; color: var(--mid); border-bottom: 1px solid rgba(91,45,142,.08); }
.membership-benefits li:last-child { border-bottom: none; }
.membership-benefits i { color: var(--purple); font-size: 1.1rem; }
.membership-note { background: var(--purple-light); border-radius: 8px; padding: 16px; border-left: 4px solid var(--purple); }
.membership-note p { font-size: .88rem; color: var(--dark); line-height: 1.6; margin: 0; }
.membership-note a { color: var(--purple); font-weight: 600; text-decoration: underline; }

/* ── Newsletter ── */
.newsletter { background: linear-gradient(135deg, #302b63, #1a1a2e); padding: 72px 24px; text-align: center; color: #fff; }
.newsletter h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 12px; }
.newsletter p { color: rgba(255,255,255,.7); margin-bottom: 28px; }
.nl-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.nl-form input[type="email"] { flex: 1; min-width: 220px; padding: 14px 18px; border-radius: 50px; border: none; font-size: .95rem; }
.nl-form button { background: var(--gold); color: #1a1a2e; border: none; padding: 14px 28px; border-radius: 50px; font-weight: 700; cursor: pointer; font-size: .95rem; }
.nl-form button:hover { background: var(--gold-lt); }
.nl-note { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 14px; }

/* ── Footer ── */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 60px 24px 0; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.fbrand .flogo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.fbrand .flogo img { height: 46px; }
.fbrand .flogo span { font-family: 'Playfair Display', serif; font-size: .97rem; font-weight: 700; color: #fff; }
.fbrand p { font-size: .85rem; line-height: 1.7; margin-bottom: 20px; }
.socrow { display: flex; gap: 10px; }
.socbtn { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: .88rem; transition: all .2s; }
.socbtn:hover { background: var(--purple); color: #fff; }
.fcol h5 { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 14px; }
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.fcol ul a { color: rgba(255,255,255,.55); font-size: .88rem; }
.fcol ul a:hover { color: var(--gold-lt); }
.footer-btm { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-btm p { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-btm a { color: rgba(255,255,255,.45); }
.footer-btm a:hover { color: var(--gold-lt); }

/* ── Page header (subpages) ── */
.page-header { background: linear-gradient(140deg, #1a1a2e, #302b63); padding: 80px 24px 60px; color: #fff; text-align: center; }
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #CE93D8 0%, #fff 25%, #9C27B0 50%, #E1BEE7 75%, #CE93D8 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroTitleShimmer 4s linear infinite;
  filter: drop-shadow(0 2px 6px rgba(123,31,162,0.5));
}
.page-header p { color: rgba(255,255,255,.7); font-size: 1rem; }

/* ── Contact page ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h2, .contact-form h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--dark); margin-bottom: 14px; }
.contact-info p { color: var(--mid); line-height: 1.75; margin-bottom: 20px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { font-size: 1.4rem; }
.contact-item strong { display: block; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.contact-item p { color: var(--mid); font-size: .9rem; margin: 0; }
.social-section h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a { background: var(--soft); color: var(--purple); padding: 8px 16px; border-radius: 50px; font-size: .85rem; font-weight: 600; border: 1.5px solid rgba(91,45,142,.2); }
.social-links a:hover { background: var(--purple); color: #fff; }
.contact-form .form-group { margin-bottom: 16px; }
.contact-form label { display: block; margin-bottom: 6px; font-weight: 500; color: #333; font-size: .9rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; border: 2px solid #e0e0e0; border-radius: 8px; font-size: .95rem; font-family: inherit; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--purple); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.btn-primary { background: var(--purple); color: #fff; padding: 13px 28px; border-radius: 50px; font-weight: 700; border: none; cursor: pointer; font-size: .95rem; }
.btn-primary:hover { background: var(--purple-mid); }

/* ── Privacy page ── */
.privacy-content h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--dark); margin: 28px 0 10px; }
.privacy-content p { color: var(--mid); line-height: 1.75; margin-bottom: 12px; }

/* ── Events page ── */
.events-grid { display: grid; gap: 20px; }
.event-card { background: #fff; border-radius: var(--r); padding: 24px; box-shadow: var(--sh); }
.calendar-info { margin-top: 40px; background: var(--soft); border-radius: var(--r); padding: 28px; }
.calendar-info h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--dark); margin-bottom: 10px; }
.calendar-info p { color: var(--mid); }
.empty-state { text-align: center; padding: 60px 20px; color: #999; background: var(--soft); border-radius: var(--r); }
.empty-state h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--mid); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner, .welcome .si, .mission-grid, .donate-inner, .schol-card { grid-template-columns: 1fr; }
  .hero-right { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .membership-container { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 60px 20px; }
  .membership-info, .membership-form { padding: 24px; }
  .past-banner { padding: 28px 24px; }
  .schol-card { padding: 28px 22px; grid-template-columns: 1fr; }
  .footer-btm { flex-direction: column; text-align: center; }
}
/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
    padding: 80px 0;
    background: var(--purple-gradient);
    color: white;
}

.testimonials-section .section-header h2 {
    color: white;
}

.testimonials-section .pride-underline {
    margin: 0 auto 2rem;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    min-height: 160px;
}

.testimonial {
    display: none;
    text-align: center;
    animation: fadeInTestimonial 0.6s ease;
}

.testimonial.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    color: rgba(255,255,255,0.95);
}

.testimonial-content cite {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
}

@keyframes fadeInTestimonial {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   PRIDE SHIFT ANIMATION (hero gradient)
   ============================================================ */
@keyframes prideShift {
    0%, 100% {
        background: linear-gradient(90deg,
            var(--pride-red) 0%,
            var(--pride-orange) 14.28%,
            var(--pride-yellow) 28.56%,
            var(--pride-green) 42.84%,
            var(--pride-blue) 57.12%,
            var(--pride-purple) 71.4%,
            var(--pride-red) 85.68%);
    }
    50% {
        background: linear-gradient(45deg,
            var(--pride-red) 0%,
            var(--pride-orange) 16.66%,
            var(--pride-yellow) 33.33%,
            var(--pride-green) 50%,
            var(--pride-blue) 66.66%,
            var(--pride-purple) 83.33%,
            var(--pride-red) 100%);
    }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1057 40%, #4A148C 70%, #6a1fa0 100%);
    color: white;
    padding: 48px 24px 52px;
    text-align: center;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-hero .container {
    width: 100%;
}
.page-hero h1 {
    -webkit-text-fill-color: white !important;
    color: white !important;
    background: none !important;
    animation: none !important;
    font-size: 2.8rem;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
/* .page-hero h1 shimmer removed — see .page-hero block above */
@keyframes heroTitleShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}
.page-hero p { font-size: 1.05rem; opacity: 0.9; max-width: 700px; margin: 0 auto; }
.page-hero .pride-underline { margin: 0.5rem auto 1rem; }

/* Coronation page specific styles */
.content-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}
.coronation-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.coronation-links .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  font-size: 1rem;
}

.coronation-hero { background: linear-gradient(135deg, #1a1a2e 0%, #4a0080 50%, #1a1a2e 100%); }
.coronation-badge-large {
    display: inline-block;
    background: var(--gold);
    color: #1a1a2e;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;

/* Feather Fantasy Gala Theme */
.feather-theme {
  background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 25%, #2d5a7b 50%, #1a3a5c 75%, #0a1628 100%);
  position: relative;
  overflow: hidden;
}

.feather-theme::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(0, 150, 136, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(123, 31, 162, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.feather-decoration {
  position: absolute;
  width: 300px;
  height: 300px;
  opacity: 0.1;
  pointer-events: none;
}

.feather-decoration-1 {
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, #009688 0%, transparent 70%);
}

.feather-decoration-2 {
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, #7B1FA2 0%, transparent 70%);
}

.peacock-feather {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #009688 0%, #4DB6AC 25%, #7B1FA2 50%, #9C27B0 75%, #009688 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  margin: 0 10px;
  animation: featherFloat 3s ease-in-out infinite;
}

@keyframes featherFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.feather-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFD700 0%, #FFA726 25%, #FFD700 50%, #FFA726 75%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  letter-spacing: 2px;
}

.feather-subtitle {
  font-size: 1.5rem;
  color: #4DB6AC;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.save-the-date-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 167, 38, 0.1) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.save-the-date-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #009688, #7B1FA2, #FFD700, #7B1FA2, #009688);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.flyer-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 150, 136, 0.3);
  margin: 30px 0;
  border: 3px solid rgba(255, 215, 0, 0.5);
}
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

/* ============================================================
   CONTENT SECTION (inner pages)
   ============================================================ */
.content-section { padding: 30px 0; }
.content-prose { max-width: 900px; margin: 0 auto; }
.content-prose p { margin-bottom: 1.2rem; line-height: 1.8; color: #444; }

/* ============================================================
   HISTORY PAGE
   ============================================================ */
.history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}
.history-card {
    background: white;
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--purple);
    transition: transform 0.2s, box-shadow 0.2s;
}
.history-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.history-reign-badge {
    display: inline-block;
    background: var(--light-purple);
    color: var(--purple);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}
.history-card h3 { color: var(--purple); margin-bottom: 0.8rem; font-size: 1.1rem; }
.history-card p { font-size: 0.92rem; color: #555; line-height: 1.7; margin-bottom: 0.8rem; }
.history-titles { font-size: 0.82rem; color: #888; border-top: 1px solid #eee; padding-top: 0.8rem; margin-top: 0.8rem; }

/* ============================================================
   COLLEGE OF MONARCHS PAGE
   ============================================================ */
.com-emeritus { text-align: center; margin-bottom: 3rem; }
.com-emeritus h2 { color: var(--purple); margin-bottom: 0.5rem; }
.monarch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
}
.emeritus-grid { max-width: 400px; margin: 1.5rem auto 0; grid-template-columns: 1fr 1fr; }
.monarch-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.monarch-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.14); }
.monarch-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: top;
}
.monarch-card.emeritus img { height: 220px; }
.monarch-info { padding: 0.8rem; }
.monarch-title { font-size: 0.72rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.monarch-name { font-size: 0.88rem; color: var(--dark); font-weight: 600; margin-top: 2px; }

/* ============================================================
   REIGNING MONARCHS PAGE
   ============================================================ */
.reigning-monarch-feature {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}
.reigning-photo img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.reign-badge {
    display: inline-block;
    background: var(--gold);
    color: #1a1a2e;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.monarch-feature-name { color: var(--purple); font-size: 2.2rem; margin-bottom: 1.5rem; }
.monarch-profile { display: flex; flex-direction: column; gap: 0.8rem; }
.profile-item { display: flex; gap: 1rem; align-items: flex-start; padding: 0.6rem 0; border-bottom: 1px solid #f0f0f0; }
.profile-label { font-weight: 700; color: var(--purple); min-width: 90px; font-size: 0.88rem; }
.profile-value { color: #555; font-size: 0.92rem; line-height: 1.5; }

/* ============================================================
   BOARD OF DIRECTORS PAGE
   ============================================================ */
.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.board-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-top: 4px solid var(--purple);
    transition: transform 0.2s;
}
.board-card:hover { transform: translateY(-4px); }
.board-role { font-size: 0.8rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.board-name { font-size: 1.1rem; color: var(--dark); font-weight: 600; }

/* ============================================================
   MEMBERSHIP PAGE
   ============================================================ */
.membership-highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--light-purple);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--purple);
}
.membership-highlight i { font-size: 2rem; color: var(--gold); }
.membership-highlight strong { font-size: 1.1rem; color: var(--purple); }
.membership-highlight p { margin: 0.3rem 0 0; color: #666; font-size: 0.9rem; }
.faq-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3rem; }
.faq-item { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.faq-question { padding: 1.2rem 1.5rem; font-weight: 600; color: var(--purple); cursor: pointer; display: flex; align-items: center; gap: 0.8rem; }
.faq-question i { color: var(--gold); }
.faq-answer { padding: 0 1.5rem 1.2rem; color: #555; line-height: 1.7; font-size: 0.95rem; }
.membership-cta { background: var(--light-purple); border-radius: 16px; padding: 2.5rem; text-align: center; margin-top: 2rem; }
.membership-cta h3 { color: var(--purple); margin-bottom: 0.8rem; }

/* ============================================================
   CODE OF CONDUCT PAGE
   ============================================================ */
.conduct-intro { background: #f9f9f9; border-radius: 12px; padding: 2rem; margin-bottom: 2.5rem; }
.conduct-intro p { margin-bottom: 1rem; }
.penalty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.penalty-card { background: white; border-radius: 12px; padding: 1.8rem; box-shadow: 0 4px 16px rgba(0,0,0,0.08); border-top: 4px solid var(--purple); }
.penalty-card h3 { color: var(--purple); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.penalty-card ul { list-style: none; padding: 0; }
.penalty-card li { padding: 0.6rem 0; border-bottom: 1px solid #f0f0f0; font-size: 0.92rem; color: #555; }
.penalty-card li:last-child { border-bottom: none; }
.conduct-note { background: var(--light-purple); border-radius: 8px; padding: 1rem 1.5rem; color: var(--purple); font-style: italic; margin-top: 1.5rem; }

/* ============================================================
   SCHOLARSHIP PAGE
   ============================================================ */
.scholarship-proclamation, .scholarship-criteria, .scholarship-apply {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.scholarship-proclamation h2, .scholarship-criteria h2, .scholarship-apply h2 { color: var(--purple); margin-bottom: 0.5rem; }
.criteria-list { list-style: none; padding: 0; margin: 1rem 0; }
.criteria-list li { display: flex; align-items: center; gap: 0.8rem; padding: 0.6rem 0; color: #555; }
.criteria-list li i { color: var(--gold); }
.apply-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.apply-buttons .btn { display: inline-flex; align-items: center; gap: 0.5rem; }

/* ============================================================
   CORONATION OVERVIEW PAGE
   ============================================================ */
.coronation-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.coronation-info-card {
    background: white;
    border-radius: 12px;
    padding: 1.8rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-top: 4px solid var(--gold);
}
.coronation-info-card i { font-size: 2rem; color: var(--purple); margin-bottom: 0.8rem; }
.coronation-info-card h3 { color: var(--purple); margin-bottom: 0.5rem; }
.coronation-info-card p { color: #555; font-size: 0.92rem; line-height: 1.6; }
.coronation-music-section, .coronation-protocol-section, .coronation-hotel-section, .coronation-ads-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.coronation-music-section h2, .coronation-protocol-section h2, .coronation-hotel-section h2, .coronation-ads-section h2 {
    color: var(--purple); margin-bottom: 0.5rem;
}
.protocol-rules { list-style: none; padding: 0; margin: 1rem 0; }
.protocol-rules li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; color: #555; font-size: 0.92rem; }
.protocol-rules li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

/* ============================================================
   RESPONSIVE — inner pages
   ============================================================ */
@media (max-width: 768px) {
    .page-hero h1 { font-size: 2rem; }
    .reigning-monarch-feature { grid-template-columns: 1fr; }
    .reigning-photo { max-width: 300px; margin: 0 auto; }
    .penalty-grid { grid-template-columns: 1fr; }
    .history-grid { grid-template-columns: 1fr; }
    .monarch-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
    .coronation-info-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   NAVBAR — slim horizontal bar
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(91,45,142,0.1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  padding: 0 24px; height: 64px; gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo span { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--purple); white-space: nowrap; }

/* Horizontal links bar */
.nav-links-bar {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav-links-bar .nav-link {
  padding: 8px 13px; border-radius: 8px;
  font-size: .85rem; font-weight: 500; color: #555;
  text-decoration: none; transition: all .2s; white-space: nowrap;
}
.nav-links-bar .nav-link:hover { background: var(--light-purple); color: var(--purple); }
.nav-donate {
  background: var(--purple) !important; color: #fff !important;
  padding: 9px 20px !important; border-radius: 50px !important; font-weight: 700 !important;
}
.nav-donate:hover { background: var(--purple-mid) !important; opacity: .9; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: white; min-width: 210px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
  border-radius: 10px; padding: 6px 0; z-index: 1000;
  border: 1px solid rgba(91,45,142,0.08);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 10px 18px;
  color: #444; text-decoration: none; font-size: .88rem;
  transition: background .15s;
}
.nav-dropdown-menu a:hover { background: var(--light-purple); color: var(--purple); }
.nav-dropdown-menu .drawer-section-label {
  padding: 8px 18px 4px; font-size: .72rem; font-weight: 700;
  color: #aaa; text-transform: uppercase; letter-spacing: 1px;
}

/* Hamburger button */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
  margin-left: 8px;
}
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; display: block; }
.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); }

/* ============================================================
   DRAWER (hamburger slide-out)
   ============================================================ */
.drawer-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.45); z-index: 1100;
  backdrop-filter: blur(2px);
}
.drawer-overlay.open { display: block; }

.drawer {
  position: fixed; top: 0; right: -340px; bottom: 0;
  width: 320px; max-width: 90vw;
  background: white; z-index: 1200;
  display: flex; flex-direction: column;
  box-shadow: -4px 0 32px rgba(0,0,0,0.18);
  transition: right .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.drawer.open { right: 0; }

.drawer-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 1.4rem;
  cursor: pointer; color: #888; padding: 4px 8px;
  border-radius: 6px; transition: background .2s;
}
.drawer-close:hover { background: var(--light-purple); color: var(--purple); }

.drawer-logo {
  display: flex; align-items: center; gap: 12px;
  padding: 24px 20px 16px;
  border-bottom: 1px solid rgba(91,45,142,0.1);
}
.drawer-logo img { height: 44px; width: auto; }
.drawer-logo span { font-family: 'Playfair Display', serif; font-size: .95rem; font-weight: 700; color: var(--purple); }

.drawer-nav { display: flex; flex-direction: column; padding: 12px 0; flex: 1; }
.drawer-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 22px; color: #444; text-decoration: none;
  font-size: .92rem; font-weight: 500; transition: background .15s;
}
.drawer-nav a:hover { background: var(--light-purple); color: var(--purple); }
.drawer-nav a i { width: 18px; text-align: center; color: var(--purple); opacity: .7; }

.drawer-section-label {
  padding: 14px 22px 4px;
  font-size: .7rem; font-weight: 700; color: #bbb;
  text-transform: uppercase; letter-spacing: 1.2px;
}

.drawer-donate {
  margin: 16px 20px 8px !important;
  background: var(--purple) !important; color: #fff !important;
  border-radius: 50px !important; justify-content: center !important;
  font-weight: 700 !important; padding: 14px 20px !important;
}
.drawer-donate:hover { background: var(--purple-mid) !important; opacity: .9; }
.drawer-donate i { color: #fff !important; opacity: 1 !important; }

.drawer-social {
  display: flex; gap: 16px; justify-content: center;
  padding: 16px 20px 24px;
  border-top: 1px solid rgba(91,45,142,0.1);
}
.drawer-social a { font-size: 1.3rem; color: var(--purple); transition: opacity .2s; }
.drawer-social a:hover { opacity: .7; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links-bar { display: none; }
  .hamburger { display: flex; margin-left: auto; }
}
@media (max-width: 480px) {
  .nav-logo span { display: none; }
}

/* ============================================================
   INDEX — MONARCH CARD WITH PHOTO
   ============================================================ */
.monarch-card-inner {
  display: flex; gap: 16px; align-items: flex-start; margin-top: 10px;
}
.monarch-photo-wrap {
  flex-shrink: 0; width: 110px;
}
.monarch-photo-wrap img {
  width: 110px; height: 150px;
  object-fit: cover; object-position: top;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  border: 2px solid var(--gold);
}
.monarch-card-info { flex: 1; }
.monarch-card-info h3 { font-size: 1.2rem; margin-bottom: 4px; color: #fff; }
.monarch-link {
  display: inline-block; margin-top: 10px;
  font-size: .8rem; font-weight: 700; color: var(--gold);
  text-decoration: none; letter-spacing: .5px;
}
.monarch-link:hover { opacity: .8; }

/* ============================================================
   COLLEGE OF MONARCHS — DYNAMIC GALLERY
   ============================================================ */
.com-controls {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; margin-bottom: 2rem;
}
.com-search-wrap {
  position: relative; flex: 1; min-width: 220px;
}
.com-search-wrap i {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: #aaa; font-size: .9rem;
}
.com-search {
  width: 100%; padding: 10px 14px 10px 38px;
  border: 1.5px solid #e0e0e0; border-radius: 50px;
  font-size: .9rem; outline: none; transition: border .2s;
  font-family: inherit;
}
.com-search:focus { border-color: var(--purple); }
.com-filter-btns { display: flex; flex-wrap: wrap; gap: 6px; }
.com-filter {
  padding: 7px 16px; border-radius: 50px; border: 1.5px solid #ddd;
  background: white; font-size: .8rem; font-weight: 600; cursor: pointer;
  color: #666; transition: all .2s; font-family: inherit;
}
.com-filter:hover { border-color: var(--purple); color: var(--purple); }
.com-filter.active { background: var(--purple); color: white; border-color: var(--purple); }

/* Dynamic monarch cards */
.monarch-card-dyn {
  background: white; border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.monarch-card-dyn:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(91,45,142,0.15); }
.monarch-card-dyn.hidden { display: none; }

.mcd-img-wrap {
  position: relative; overflow: hidden;
  height: 200px; background: linear-gradient(135deg, #f0e8ff, #e8f0ff);
}
.mcd-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform .3s;
}
.monarch-card-dyn:hover .mcd-img-wrap img { transform: scale(1.05); }

.mcd-body {
  padding: 14px 14px 16px;
  background: white;
  border-top: 3px solid var(--purple);
}
.mcd-reign {
  font-size: .7rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: 4px;
}
.mcd-name {
  font-size: .95rem; font-weight: 700; color: var(--dark);
  line-height: 1.3; margin-bottom: 3px;
}
.mcd-years { font-size: .75rem; color: #999; }

.com-no-results {
  text-align: center; padding: 4rem 2rem; color: #aaa;
  grid-column: 1 / -1;
}
.com-no-results i { font-size: 2.5rem; margin-bottom: 1rem; display: block; }

/* ============================================================
   BOARD OF DIRECTORS — DYNAMIC LAYOUT
   ============================================================ */
.bod-header {
  display: flex; align-items: center; gap: 2rem;
  background: var(--purple-gradient); color: white;
  border-radius: 16px; padding: 2rem 2.5rem; margin-bottom: 2.5rem;
}
.bod-seal img { width: 80px; height: 80px; object-fit: contain; }
.bod-header h2 { color: white; margin-bottom: .4rem; font-size: 1.6rem; }
.bod-header p { color: rgba(255,255,255,.8); font-size: .95rem; margin: 0; }

.bod-section-label {
  display: flex; align-items: center; gap: 10px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--purple);
  margin: 2rem 0 1rem; padding-bottom: .5rem;
  border-bottom: 2px solid var(--light-purple);
}
.bod-section-label i { color: var(--gold); }

/* Executive grid */
.bod-exec-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.2rem; margin-bottom: 1rem;
}
.bod-exec-card {
  border-radius: 14px; padding: 1.8rem 1.5rem; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform .2s, box-shadow .2s;
}
.bod-exec-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.15); }
.bod-exec-card.president { background: linear-gradient(135deg, #4a0080, #7b2fbe); color: white; }
.bod-exec-card.vp        { background: linear-gradient(135deg, #1a1a6e, #3a3aae); color: white; }
.bod-exec-card.secretary { background: linear-gradient(135deg, #006040, #00a060); color: white; }
.bod-exec-card.treasurer { background: linear-gradient(135deg, #7a5000, #c9a84c); color: white; }
.bod-exec-icon { font-size: 2rem; margin-bottom: .8rem; opacity: .9; }
.bod-exec-role { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; opacity: .8; margin-bottom: .4rem; }
.bod-exec-name { font-size: 1.1rem; font-weight: 700; }
.bod-exec-badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(255,255,255,.2); font-size: .65rem;
  padding: 2px 8px; border-radius: 50px; font-weight: 600;
}

/* Members grid */
.bod-members-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.bod-member-card {
  background: white; border-radius: 12px; padding: 1.4rem 1rem;
  text-align: center; box-shadow: 0 3px 14px rgba(0,0,0,0.07);
  border: 1.5px solid #f0e8ff;
  transition: transform .2s, border-color .2s;
}
.bod-member-card:hover { transform: translateY(-3px); border-color: var(--purple); }
.bod-member-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--light-purple); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 10px; font-size: 1.3rem; color: var(--purple);
}
.bod-member-role { font-size: .72rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 4px; }
.bod-member-name { font-size: .92rem; font-weight: 700; color: var(--dark); }

@media (max-width: 768px) {
  .monarch-card-inner { flex-direction: column; align-items: center; text-align: center; }
  .monarch-photo-wrap { width: 100%; }
  .monarch-photo-wrap img { width: 100%; height: 220px; }
  .bod-header { flex-direction: column; text-align: center; }
  .bod-exec-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CORONATION OVERVIEW — SCHEDULE & SECTIONS
   ============================================================ */
.cor-section {
  background: white; border-radius: 14px; padding: 2rem 2.2rem;
  margin-bottom: 2rem; box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}
.cor-section h2 {
  color: var(--purple); font-size: 1.35rem; margin-bottom: .4rem;
  display: flex; align-items: center; gap: .6rem;
}
.cor-section h2 i { color: var(--gold); }

.cor-divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 2.5rem 0 1rem; color: #aaa; font-size: .8rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.cor-divider::before, .cor-divider::after {
  content: ''; flex: 1; height: 1px; background: #e0e0e0;
}
.cor-note {
  background: #fff8e1; border-left: 4px solid var(--gold);
  border-radius: 8px; padding: 1rem 1.4rem; margin-bottom: 2rem;
  font-size: .92rem; color: #555;
}

.cor-theme-banner {
  display: flex; align-items: center; gap: 1.5rem;
  background: linear-gradient(135deg, #1a1a2e, #4a0080);
  color: white; border-radius: 14px; padding: 1.8rem 2rem;
  margin-bottom: 2rem;
}
.cor-theme-icon { font-size: 2.5rem; opacity: .8; flex-shrink: 0; }
.cor-theme-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: .3rem; }
.cor-theme-title { font-size: 1.2rem; font-weight: 700; margin-bottom: .3rem; }
.cor-theme-venue { font-size: .88rem; opacity: .75; }

.cor-info-box {
  background: #f9f6ff; border-radius: 10px; padding: 1.4rem 1.6rem;
  border: 1px solid #e8d8ff;
}
.cor-rules-list { list-style: none; padding: 0; margin: 0; }
.cor-rules-list li {
  padding: .55rem 0 .55rem 1.4rem; position: relative;
  color: #555; font-size: .92rem; border-bottom: 1px solid #ede8ff;
  line-height: 1.6;
}
.cor-rules-list li:last-child { border-bottom: none; }
.cor-rules-list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: .7rem; top: .7rem; }

/* Hotel card */
.cor-hotel-card {
  display: flex; gap: 1.5rem; align-items: flex-start;
  background: #f9f6ff; border-radius: 12px; padding: 1.5rem;
}
.cor-hotel-icon { font-size: 2.5rem; color: var(--purple); flex-shrink: 0; padding-top: .2rem; }
.cor-hotel-info h3 { color: var(--purple); margin-bottom: .4rem; }
.cor-hotel-info p { color: #555; font-size: .92rem; margin-bottom: .4rem; line-height: 1.6; }
.cor-hotel-note {
  display: flex; gap: .7rem; align-items: flex-start;
  background: #fff3cd; border-radius: 8px; padding: .8rem 1rem;
  margin-top: .8rem; font-size: .85rem; color: #7a5000;
}
.cor-hotel-note i { flex-shrink: 0; margin-top: .15rem; }

/* Schedule days */
.cor-day { margin-bottom: 2rem; }
.cor-day-header {
  display: flex; align-items: center; gap: .7rem;
  background: var(--purple-gradient); color: white;
  padding: .9rem 1.4rem; border-radius: 10px 10px 0 0;
  font-weight: 700; font-size: 1rem;
}
.cor-day-header i { color: var(--gold); }
.cor-events-list {
  border: 1px solid #e8d8ff; border-top: none;
  border-radius: 0 0 10px 10px; overflow: hidden;
}
.cor-event-item {
  display: grid; grid-template-columns: 130px 1fr;
  gap: 1rem; padding: 1.1rem 1.4rem;
  border-bottom: 1px solid #f0e8ff;
  transition: background .15s;
}
.cor-event-item:last-child { border-bottom: none; }
.cor-event-item:hover { background: #fdf8ff; }
.cor-event-item.featured { background: #f9f4ff; }
.cor-event-item.featured:hover { background: #f3ecff; }
.cor-event-time {
  font-size: .78rem; font-weight: 700; color: var(--purple);
  line-height: 1.4; padding-top: .1rem;
}
.cor-event-name {
  font-weight: 700; color: var(--dark); margin-bottom: .25rem;
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
}
.cor-event-venue {
  font-size: .78rem; color: #888; margin-bottom: .3rem;
  display: flex; align-items: center; gap: .4rem;
}
.cor-event-desc { font-size: .88rem; color: #555; line-height: 1.6; }
.cor-event-badge {
  display: inline-block; background: var(--light-purple);
  color: var(--purple); font-size: .65rem; font-weight: 700;
  padding: 2px 8px; border-radius: 50px; text-transform: uppercase;
  letter-spacing: .5px;
}
.cor-event-badge.main-event { background: var(--gold); color: #1a1a2e; }

@media (max-width: 600px) {
  .cor-event-item { grid-template-columns: 1fr; gap: .3rem; }
  .cor-event-time { color: #888; font-size: .75rem; }
  .cor-theme-banner { flex-direction: column; }
  .cor-hotel-card { flex-direction: column; }
}

/* ============================================================
   UPLOAD PAGES (protocol, music, program ads)
   ============================================================ */
.upload-rules-box {
  background: #f9f4ff; border-radius: 12px; padding: 1.5rem 1.8rem;
  border-left: 4px solid var(--purple); margin-bottom: 1.5rem;
}
.upload-rules-box h3 { color: var(--purple); margin-bottom: .8rem; font-size: 1rem; display: flex; align-items: center; gap: .5rem; }

.upload-preview-notice {
  display: flex; align-items: flex-start; gap: 1rem;
  background: #fff8e1; border: 1px solid #ffe082; border-radius: 10px;
  padding: 1rem 1.4rem; margin-bottom: 1.5rem; font-size: .88rem; color: #7a5000;
}
.upload-preview-notice i { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }

.upload-card {
  background: white; border-radius: 16px; padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08); margin-bottom: 2rem;
}

/* Tabs */
.upload-tabs { display: flex; gap: 8px; margin-bottom: 1.5rem; border-bottom: 2px solid #f0e8ff; padding-bottom: 0; }
.upload-tab {
  padding: 10px 20px; border: none; background: none; cursor: pointer;
  font-size: .9rem; font-weight: 600; color: #888; border-radius: 8px 8px 0 0;
  transition: all .2s; font-family: inherit; display: flex; align-items: center; gap: .5rem;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
}
.upload-tab:hover { color: var(--purple); background: var(--light-purple); }
.upload-tab.active { color: var(--purple); border-bottom-color: var(--purple); background: var(--light-purple); }
.upload-tab-content { display: none; }
.upload-tab-content.active { display: block; }

/* Form grid */
.upload-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.2rem; }
.upload-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: .8rem; }
.upload-field label { font-size: .85rem; font-weight: 600; color: #555; }
.upload-field input, .upload-field textarea, .upload-field select {
  padding: 10px 14px; border: 1.5px solid #e0e0e0; border-radius: 8px;
  font-size: .92rem; font-family: inherit; outline: none; transition: border .2s;
  resize: vertical;
}
.upload-field input:focus, .upload-field textarea:focus { border-color: var(--purple); }
.req { color: #e40303; }
.upload-char-count { font-size: .75rem; color: #aaa; text-align: right; margin-top: 4px; }

/* Dropzone */
.upload-dropzone {
  border: 2.5px dashed #c8a8ff; border-radius: 12px; padding: 2.5rem 2rem;
  text-align: center; cursor: pointer; transition: all .2s; background: #fdf8ff;
  margin-bottom: .8rem;
}
.upload-dropzone:hover, .upload-dropzone.dragover { border-color: var(--purple); background: var(--light-purple); }
.upload-dropzone i { font-size: 2.5rem; color: var(--purple); margin-bottom: .8rem; display: block; opacity: .7; }
.upload-dropzone p { margin: .3rem 0; color: #555; font-size: .92rem; }
.upload-hint { color: #888 !important; font-size: .82rem !important; }
.upload-types { font-size: .75rem !important; color: #aaa !important; margin-top: .5rem !important; }

.upload-file-preview {
  display: flex; align-items: center; gap: 1rem;
  background: var(--light-purple); border-radius: 8px; padding: .8rem 1.2rem;
}
.upload-file-preview i { color: var(--purple); font-size: 1.3rem; }
.upload-file-preview span { flex: 1; font-size: .9rem; font-weight: 600; color: var(--dark); }
.upload-remove-btn { background: none; border: none; cursor: pointer; color: #888; font-size: 1rem; padding: 4px; border-radius: 4px; }
.upload-remove-btn:hover { color: #e40303; background: #ffe0e0; }

/* Submit row */
.upload-submit-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.upload-submit-btn { display: inline-flex; align-items: center; gap: .6rem; font-size: 1rem; padding: 13px 28px; }
.upload-email-alt { font-size: .82rem; color: #888; margin: 0; }

/* Success */
.upload-success { text-align: center; padding: 3rem 2rem; }
.upload-success i { font-size: 3.5rem; color: #00a060; margin-bottom: 1rem; display: block; }
.upload-success h3 { color: var(--purple); margin-bottom: .5rem; }
.upload-success p { color: #555; margin-bottom: 1.5rem; }

/* Deploy info */
.upload-deploy-info {
  background: #1a1a2e; color: white; border-radius: 14px; padding: 1.8rem 2rem;
  margin-top: 2rem;
}
.upload-deploy-info h3 { color: var(--gold); margin-bottom: .8rem; font-size: 1rem; display: flex; align-items: center; gap: .6rem; }
.upload-deploy-info p { color: rgba(255,255,255,.75); font-size: .88rem; line-height: 1.6; margin-bottom: .8rem; }
.upload-deploy-info a { color: var(--gold); }
.upload-deploy-info code { background: rgba(255,255,255,.1); padding: 2px 6px; border-radius: 4px; font-size: .82rem; }
.upload-folder-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin: 1rem 0; }
.upload-folder-card {
  background: rgba(255,255,255,.08); border-radius: 10px; padding: 1.2rem;
  border: 1px solid rgba(255,255,255,.1); text-align: center;
}
.upload-folder-card i { font-size: 1.8rem; color: var(--gold); margin-bottom: .5rem; display: block; }
.upload-folder-name { font-size: .78rem; font-weight: 700; color: white; margin-bottom: .4rem; font-family: monospace; }
.upload-folder-desc { font-size: .75rem; color: rgba(255,255,255,.6); line-height: 1.4; }

@media (max-width: 600px) {
  .upload-form-grid { grid-template-columns: 1fr; }
  .upload-submit-row { flex-direction: column; align-items: flex-start; }
}

/* GALLERY SECTION */
.gallery-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0a1628 0%, #1a2332 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  border-color: #c9a84c;
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.gallery-item.large {
  grid-column: span 2;
}

.gallery-item.medium {
  grid-column: span 1;
}

.gallery-item.small {
  grid-column: span 1;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.gallery-item.large img {
  height: 400px;
}

.gallery-item.medium img {
  height: 350px;
}

.gallery-item.small img {
  height: 250px;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.95));
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  color: #c9a84c;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.gallery-overlay .btn-gold {
  font-size: 0.9rem;
  padding: 8px 20px;
}

/* CTA SECTION */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #c9a84c 0%, #8a6a00 100%);
  text-align: center;
}

.cta-content h2 {
  color: #0a1628;
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.cta-content p {
  color: #1a2332;
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.cta-content .btn-gold {
  background: #0a1628;
  color: #c9a84c;
}

.cta-content .btn-gold:hover {
  background: #1a2332;
}

/* =============================================
   DRAWER ACCORDION FOLDERS
   ============================================= */
.drawer-folder {
  border-bottom: 1px solid rgba(123,31,162,0.08);
}
.drawer-folder-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 20px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(123,31,162,0.04);
  user-select: none;
  transition: background 0.2s;
}
.drawer-folder-toggle:hover { background: rgba(123,31,162,0.10); }
.drawer-folder-toggle .folder-icon { margin-right: 8px; opacity: 0.7; }
.drawer-folder-toggle .folder-arrow {
  font-size: 0.65rem;
  transition: transform 0.25s;
  opacity: 0.6;
}
.drawer-folder.open .folder-arrow { transform: rotate(90deg); }
.drawer-folder-items {
  display: none;
  flex-direction: column;
  background: rgba(123,31,162,0.02);
}
.drawer-folder.open .drawer-folder-items { display: flex; }
.drawer-folder-items a {
  padding-left: 36px !important;
  font-size: 0.88rem !important;
  border-left: 3px solid transparent;
}
.drawer-folder-items a:hover {
  border-left-color: var(--purple);
  background: var(--light-purple) !important;
}
.drawer-folder-items a.active-page {
  border-left-color: var(--purple);
  background: var(--light-purple) !important;
  font-weight: 600;
}
/* Top-level drawer links (not in folders) */
.drawer-nav > a {
  padding: 11px 20px;
  font-size: 0.92rem;
}
