/* =====================================================
   GAGAN SANDHU CAMPAIGN WEBSITE – Site.css
   ===================================================== */

/* ── TOKENS ── */
:root {
    --navy:      #1a2744;
    --navy-deep: #111b33;
    --gold:      #c9972c;
    --gold-light:#e8b84b;
    --cream:     #f8f5f0;
    --charcoal:  #2d2d2d;
    --muted:     #6b7280;
    --white:     #ffffff;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, sans-serif;
    --radius:    8px;
    --shadow-sm: 0 2px 12px rgba(26,39,68,.10);
    --shadow-md: 0 8px 32px rgba(26,39,68,.14);
    --transition: .35s cubic-bezier(.4,0,.2,1);
    --topbar-h: 42px;
    --navbar-h: 84px;
}

/* ── RESET / BASE ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--charcoal);
    background: var(--white);
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 800; letter-spacing: -.01em; }
p { font-weight: 400; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; }

/* ====================================================
   TOP UTILITY BAR
   ==================================================== */
.gs-topbar {
    background: var(--navy-deep);
    color: rgba(255,255,255,.85);
    font-size: .82rem;
    font-weight: 600;
    padding: .55rem 0;
    border-bottom: 1px solid rgba(201,151,44,.2);
}
.topbar-left {
    letter-spacing: .01em;
}
.topbar-left strong { color: var(--gold); font-weight: 700; }
.topbar-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.topbar-social {
    display: flex;
    gap: .65rem;
}
.topbar-social a {
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
}
.topbar-social a:hover {
    color: var(--navy-deep);
    background: var(--gold);
}
.topbar-donate {
    background: var(--gold);
    color: var(--navy-deep) !important;
    font-weight: 800;
    font-size: .8rem;
    letter-spacing: .03em;
    padding: .4rem 1.1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    transition: all var(--transition);
}
.topbar-donate:hover {
    background: var(--gold-light);
    color: var(--navy-deep) !important;
    transform: translateY(-1px);
}
@media (max-width: 575.98px) {
    .gs-topbar { font-size: .72rem; }
    .topbar-social { gap: .4rem; }
    .topbar-social a { width: 24px; height: 24px; font-size: .85rem; }
    .topbar-donate { padding: .35rem .8rem; font-size: .72rem; }
    .topbar-right { gap: .6rem; }
}

/* ── NAVBAR ── */
.gs-navbar {
    background: rgba(17, 27, 51, 0);
    backdrop-filter: blur(0px);
    transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition), top var(--transition);
    padding: 1.1rem 0;
    z-index: 1050;
    top: var(--topbar-h);
}
.gs-navbar.scrolled {
    background: rgba(17, 27, 51, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(0,0,0,.25);
    padding: .7rem 0;
    top: 0;
}
.gs-brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: .01em;
}
.brand-sub {
    font-size: .76rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}
.gs-navbar .nav-link {
    color: rgba(255,255,255,.9) !important;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .01em;
    padding: .5rem .85rem !important;
    position: relative;
    transition: color var(--transition);
}
.gs-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: .85rem; right: .85rem;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.gs-navbar .nav-link:hover,
.gs-navbar .nav-link.active {
    color: var(--white) !important;
}
.gs-navbar .nav-link:hover::after,
.gs-navbar .nav-link.active::after { transform: scaleX(1); }
.navbar-toggler { border-color: rgba(255,255,255,.3); }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── BUTTONS ── */
.gs-btn-gold {
    background: var(--gold);
    color: var(--navy-deep) !important;
    font-weight: 800;
    font-size: .95rem;
    letter-spacing: .02em;
    border: none;
    border-radius: 50px;
    padding: .65rem 1.7rem;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.gs-btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,151,44,.4);
}
.gs-btn-outline {
    background: transparent;
    color: var(--white) !important;
    font-weight: 800;
    font-size: .95rem;
    letter-spacing: .02em;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: 50px;
    padding: .63rem 1.7rem;
    transition: all var(--transition);
}
.gs-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold) !important;
    transform: translateY(-2px);
}
.gs-btn-navy {
    background: var(--navy);
    color: var(--white) !important;
    font-weight: 800;
    border-radius: 50px;
    padding: .75rem 2.1rem;
    transition: all var(--transition);
}
.gs-btn-navy:hover {
    background: var(--navy-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ── SECTION HELPERS ── */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: .7rem;
}
.section-title {
    font-size: clamp(2.3rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1rem;
}
.section-title .gold-line {
    position: relative;
    display: inline-block;
}
.section-title .gold-line::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0; right: 0;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}
.section-lead {
    font-size: 1.18rem;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.75;
    max-width: 660px;
}
.hero-page-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 800;
    color: white;
    line-height: 1.08;
}
.hero-page-title em {
    font-style: normal;
    color: var(--gold);
}
.bg-cream { background: var(--cream); }
.bg-navy  { background: var(--navy); }
.gs-section { padding: 6rem 0; }
.gs-section-sm { padding: 4rem 0; }

/* ====================================================
   HOME PAGE – HERO
   ==================================================== */
.gs-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy-deep) 0%, #1e3a6e 60%, #0d1f45 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--topbar-h) + 90px);
}
.gs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 70% 50%, rgba(201,151,44,.12) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
}
.hero-eyebrow {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1.25rem;
    opacity: 0;
    animation: fadeSlideUp .8s .3s forwards;
}
.hero-eyebrow span.line {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.hero-name {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7.5vw, 5.6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.03;
    opacity: 0;
    animation: fadeSlideUp .9s .5s forwards;
}
.hero-name em {
    font-style: normal;
    color: var(--gold);
    display: block;
}
.hero-tagline {
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    font-weight: 500;
    color: rgba(255,255,255,.82);
    line-height: 1.6;
    margin: 1.5rem 0 2.25rem;
    max-width: 540px;
    opacity: 0;
    animation: fadeSlideUp .9s .7s forwards;
}
.hero-quote {
    display: inline-block;
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255,255,255,.9);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeSlideUp .9s .9s forwards;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0;
    animation: fadeSlideUp .9s 1.1s forwards;
}
.hero-image-wrap {
    position: relative;
    opacity: 0;
    animation: fadeIn 1.2s 1s forwards;
}
.hero-image-wrap::before {
    content: '';
    position: absolute;
    inset: -16px;
    border: 2px solid rgba(201,151,44,.35);
    border-radius: var(--radius);
    z-index: 0;
}
.hero-image-wrap img {
    border-radius: var(--radius);
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}
.hero-placeholder {
    border-radius: var(--radius);
    width: 100%;
    max-width: 420px;
    height: 480px;
    background: linear-gradient(160deg, rgba(255,255,255,.08) 0%, rgba(201,151,44,.12) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 2px dashed rgba(201,151,44,.4);
    position: relative;
    z-index: 1;
}
.hero-placeholder i { font-size: 3.5rem; color: var(--gold); opacity: .7; }
.hero-placeholder p { color: rgba(255,255,255,.5); font-size: .85rem; text-align: center; }
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.5);
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    animation: bounce 2.5s infinite;
    cursor: pointer;
}
.hero-scroll i { font-size: 1.1rem; }

/* ── STATS BAR ── */
.gs-stats-bar {
    background: var(--navy);
    padding: 3rem 0;
}
.stat-item {
    text-align: center;
    color: var(--white);
    padding: 1rem;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: .85rem;
    color: rgba(255,255,255,.65);
    margin-top: .4rem;
    letter-spacing: .04em;
}
.stat-divider {
    width: 1px;
    background: rgba(255,255,255,.1);
    align-self: stretch;
}

/* ── INTRO / ABOUT SNIPPET ── */
.gs-intro { padding: 6rem 0; }
.intro-roles {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin: 1.5rem 0;
}
.role-badge {
    background: var(--cream);
    color: var(--navy);
    font-size: .8rem;
    font-weight: 600;
    padding: .35rem .9rem;
    border-radius: 50px;
    border: 1px solid rgba(26,39,68,.12);
}
.intro-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #444;
}

/* ── WHY VOTE PHOTO ── */
.why-photo-wrap {
    position: relative;
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}
.why-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}
.why-photo-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    background: rgba(17, 27, 51, 0.92);
    backdrop-filter: blur(8px);
    color: var(--gold);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .04em;
    padding: .75rem 1.1rem;
    border-radius: 6px;
    border: 1px solid rgba(201, 151, 44, .3);
    display: flex;
    align-items: center;
}

/* ── WHY CARDS ── */
.gs-why { padding: 6rem 0; background: var(--cream); }
.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid transparent;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
    border-top-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.why-icon {
    width: 52px; height: 52px;
    background: rgba(201,151,44,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    font-size: 1.4rem;
    color: var(--gold);
}
.why-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .5rem;
}
.why-card p {
    font-size: .92rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.7;
}

/* ── VISION BAND ── */
.gs-vision {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.gs-vision::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(201,151,44,.1) 0%, transparent 70%);
}
.vision-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--white);
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.vision-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    margin: 2.5rem 0;
    position: relative;
    z-index: 1;
}
.vision-pill {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(201,151,44,.4);
    color: var(--white);
    font-size: .9rem;
    font-weight: 500;
    padding: .6rem 1.4rem;
    border-radius: 50px;
    transition: background var(--transition), border-color var(--transition);
}
.vision-pill:hover {
    background: rgba(201,151,44,.2);
    border-color: var(--gold);
}

/* ── PROGRAMS / ACTIVITIES ── */
.activity-list { list-style: none; padding: 0; margin: 0; }
.activity-list li {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .85rem 0;
    border-bottom: 1px solid rgba(26,39,68,.07);
    font-size: .97rem;
    color: #444;
}
.activity-list li:last-child { border-bottom: none; }
.activity-list li i {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ====================================================
   ABOUT PAGE
   ==================================================== */
.about-hero {
    background: linear-gradient(135deg, var(--navy-deep) 0%, #1e3a6e 100%);
    padding: calc(var(--topbar-h) + 9rem) 0 5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 40% 60% at 80% 50%, rgba(201,151,44,.12), transparent 70%);
}
.about-hero h1 { font-size: clamp(2.6rem,5.5vw,4.4rem); font-weight: 900; }
.about-content-section { padding: 5rem 0; }
.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}
.timeline-dot {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: .4rem;
    position: relative;
}
.timeline-dot::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 6px;
    width: 2px;
    height: calc(100% + 1.5rem);
    background: rgba(201,151,44,.25);
}
.timeline-item:last-child .timeline-dot::after { display: none; }
.timeline-body h5 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.timeline-body p { font-size: .95rem; color: var(--muted); margin: 0; line-height: 1.7; }

/* ====================================================
   PLATFORM PAGE
   ==================================================== */
.platform-hero {
    background: linear-gradient(135deg, var(--navy-deep) 0%, #1e3a6e 100%);
    padding: calc(var(--topbar-h) + 9rem) 0 5rem;
    color: var(--white);
}
.platform-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.25rem 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
    border-left: 4px solid var(--gold);
}
.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.platform-icon {
    width: 56px; height: 56px;
    background: rgba(201,151,44,.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.platform-card h4 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: .75rem; }
.platform-card p { font-size: .93rem; color: var(--muted); line-height: 1.75; margin: 0; }

/* ====================================================
   CONTACT PAGE
   ==================================================== */
.contact-hero {
    background: linear-gradient(135deg, var(--navy-deep) 0%, #1e3a6e 100%);
    padding: calc(var(--topbar-h) + 9rem) 0 5rem;
    color: var(--white);
}
.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}
.contact-card .form-label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: .03em;
}
.contact-card .form-control,
.contact-card .form-select {
    border: 1.5px solid #e0e0e0;
    border-radius: var(--radius);
    padding: .75rem 1rem;
    font-size: .95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-card .form-control:focus,
.contact-card .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,151,44,.15);
    outline: none;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-info-item .icon-wrap {
    width: 44px; height: 44px;
    background: rgba(201,151,44,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-info-item h6 { font-size: .78rem; font-weight: 600; color: var(--muted); letter-spacing: .07em; text-transform: uppercase; margin-bottom: .2rem; }
.contact-info-item p { margin: 0; font-size: .95rem; color: var(--charcoal); }

/* ── ALERT STYLES ── */
.alert-success-gs {
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    color: #166534;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    font-size: .93rem;
}
.alert-error-gs {
    background: #fef2f2;
    border: 1.5px solid #fca5a5;
    color: #991b1b;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    font-size: .93rem;
}

/* ====================================================
   GALLERY PAGE
   ==================================================== */

/* ── Filter Buttons ── */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .6rem;
}
.gf-btn {
    background: var(--white);
    color: var(--navy);
    border: 1.5px solid rgba(26,39,68,.15);
    border-radius: 50px;
    padding: .55rem 1.3rem;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
}
.gf-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(201,151,44,.15);
}
.gf-btn.active {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
    box-shadow: 0 4px 16px rgba(26,39,68,.2);
}

/* ── Masonry Grid ── */
.gallery-grid {
    columns: 4 260px;
    column-gap: 1rem;
}
@media (max-width: 991.98px) { .gallery-grid { columns: 3 200px; } }
@media (max-width: 575.98px) { .gallery-grid { columns: 2 150px; } }

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(16px) scale(.98);
    transition: opacity .45s ease, transform .45s ease;
    position: relative;
}
.gallery-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.gallery-item.hidden {
    display: none;
}

/* Portrait images span 2 rows visually via aspect-ratio */
.gallery-item.is-portrait .gallery-thumb img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    width: 100%;
}
.gallery-item.is-landscape .gallery-thumb img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

/* ── Thumbnail & Overlay ── */
.gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--cream);
}
.gallery-thumb img {
    display: block;
    width: 100%;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover .gallery-thumb img {
    transform: scale(1.06);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,27,51,.85) 0%, rgba(17,27,51,.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.25rem;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    color: var(--white);
    transform: translateY(10px);
    transition: transform var(--transition);
}
.gallery-item:hover .gallery-overlay-content { transform: translateY(0); }
.gallery-overlay-content i {
    font-size: 1.6rem;
    color: var(--gold);
    background: rgba(255,255,255,.1);
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.gallery-overlay-content span {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

/* ── Empty message ── */
.gallery-empty {
    text-align: center;
    padding: 4rem 0;
    color: var(--muted);
}
.gallery-empty i { font-size: 3rem; display: block; margin-bottom: 1rem; opacity: .4; }

/* ====================================================
   LIGHTBOX
   ==================================================== */
.gs-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}
.gs-lightbox.active {
    opacity: 1;
    pointer-events: all;
}
.gs-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 25, 0.96);
    backdrop-filter: blur(6px);
}
.gs-lightbox-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 4rem 1rem 5rem;
}
.lb-img-wrap {
    position: relative;
    max-width: min(90vw, 1000px);
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lb-img-wrap img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 20px 80px rgba(0,0,0,.6);
    transition: opacity .3s ease;
}

/* Spinner */
.lb-spinner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lb-spin-ring {
    width: 44px; height: 44px;
    border: 3px solid rgba(255,255,255,.1);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Close button */
.lb-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: var(--white);
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), transform var(--transition);
    z-index: 2;
}
.lb-close:hover {
    background: var(--gold);
    color: var(--navy-deep);
    transform: rotate(90deg);
}

/* Prev / Next */
.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: var(--white);
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 2;
}
.lb-nav:hover {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
}
.lb-prev { left: 1.25rem; }
.lb-next { right: 1.25rem; }
@media (max-width: 575.98px) {
    .lb-prev { left: .5rem; }
    .lb-next { right: .5rem; }
    .lb-nav  { width: 40px; height: 40px; font-size: 1rem; }
}

/* Caption & Counter */
.lb-caption {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.8);
    font-size: .9rem;
    font-weight: 500;
    text-align: center;
    max-width: 600px;
    padding: 0 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lb-counter {
    position: absolute;
    top: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.7);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    padding: .3rem .9rem;
    border-radius: 50px;
}

/* ====================================================
   DONATE PAGE
   ==================================================== */
.donate-card {
    background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.donate-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    border: 2px solid rgba(201,151,44,.15);
}
.donate-card::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 260px; height: 260px;
    border-radius: 50%;
    border: 2px solid rgba(201,151,44,.1);
}
.donate-card-badge {
    width: 76px; height: 76px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--navy-deep);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(201,151,44,.4);
}
.donate-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 900;
    margin-bottom: .75rem;
    position: relative;
    z-index: 1;
}
.donate-subtitle {
    color: rgba(255,255,255,.75);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 1;
}
.donate-email-box {
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(201,151,44,.4);
    border-radius: 50px;
    padding: .9rem 1rem .9rem 1.6rem;
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
}
.donate-email-box i { font-size: 1.1rem; }
.donate-copy-btn {
    background: var(--gold);
    color: var(--navy-deep);
    border: none;
    border-radius: 50px;
    padding: .5rem 1.1rem;
    font-size: .85rem;
    font-weight: 800;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}
.donate-copy-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.donate-copy-btn.copied { background: #4ade80; color: #064e29; }
.donate-note {
    color: rgba(255,255,255,.65);
    font-size: .95rem;
    line-height: 1.75;
    max-width: 520px;
    margin: 1.75rem auto 0;
    position: relative;
    z-index: 1;
}
@media (max-width: 575.98px) {
    .donate-card { padding: 2.5rem 1.5rem; }
    .donate-email-box { font-size: .95rem; padding: .8rem 1.2rem; }
}

/* ====================================================
   FOOTER
   ==================================================== */
.gs-footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,.75);
    padding: 4rem 0 2rem;
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
}
.footer-title { font-size: .88rem; color: var(--gold); font-weight: 700; letter-spacing: .03em; }
.footer-tagline {
    font-style: italic;
    font-size: .92rem;
    color: rgba(255,255,255,.5);
    border-left: 2px solid var(--gold);
    padding-left: .75rem;
}
.footer-heading {
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
    color: rgba(255,255,255,.65);
    font-size: .92rem;
    font-weight: 500;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: 1rem;
    transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy-deep); }
.footer-contact { font-size: .9rem; color: rgba(255,255,255,.6); }
.footer-contact i { color: var(--gold); }
.footer-divider { border-color: rgba(255,255,255,.1); margin: 2.5rem 0 1.5rem; }
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.4); }

/* ====================================================
   KEYFRAMES
   ==================================================== */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 991.98px) {
    .gs-navbar { background: rgba(17,27,51,.97); top: var(--topbar-h); }
    .gs-navbar.scrolled { top: 0; }
    .hero-actions { justify-content: center; }
    .hero-name { text-align: center; }
    .hero-tagline { text-align: center; margin-left: auto; margin-right: auto; }
    .hero-quote { text-align: center; display: block; }
    .hero-eyebrow { justify-content: center; }
    .hero-image-wrap, .hero-placeholder { margin: 0 auto; }
    .stat-divider { display: none; }
}
@media (max-width: 575.98px) {
    .gs-section { padding: 4rem 0; }
    .gs-hero { padding-top: calc(var(--topbar-h) + 70px); }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    [data-aos] { transition: none !important; }
}
