/* ============================================================
   Vasavi Club Secunderabad Couples — Main Stylesheet
   Design: Deep Maroon + Gold | Playfair Display + Inter
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
    --primary:       #7B1D1D;   /* deep maroon */
    --primary-dark:  #5C0E0E;
    --primary-light: #A52A2A;
    --accent:        #C9A84C;   /* antique gold */
    --accent-light:  #E8C96D;
    --bg:            #FAFAF7;
    --bg-card:       #FFFFFF;
    --text-dark:     #1A1A1A;
    --text-muted:    #6B7280;
    --border:        #E5E7EB;
    --shadow-sm:     0 2px 8px rgba(0,0,0,.08);
    --shadow-md:     0 6px 24px rgba(0,0,0,.12);
    --shadow-lg:     0 16px 48px rgba(0,0,0,.16);
    --radius:        12px;
    --radius-lg:     20px;
    --transition:    .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    line-height: 1.25;
    color: var(--text-dark);
}

/* ── Utility classes ──────────────────────────────────────── */
.text-primary-club  { color: var(--primary) !important; }
.text-accent        { color: var(--accent)  !important; }
.bg-primary-club    { background: var(--primary) !important; }
.bg-hero            { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%); }

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: .5rem;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}
.gold-bar {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 2px;
    margin: .5rem auto 1.5rem;
}
.section-pad { padding: 80px 0; }

/* ── Navbar ───────────────────────────────────────────────── */
.navbar-club {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--accent);
    box-shadow: var(--shadow-sm);
    padding: .6rem 0;
    transition: background var(--transition);
    position: sticky; top: 0; z-index: 1030;
}
.navbar-club.scrolled {
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow-md);
}
.navbar-brand-club {
    display: flex; align-items: center; gap: .75rem;
}
.navbar-brand-club .brand-logo {
    width: 50px; height: 50px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 1.4rem; flex-shrink: 0;
}
.navbar-brand-club .brand-text {
    display: flex; flex-direction: column; line-height: 1.2;
}
.navbar-brand-club .brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700;
    color: var(--primary);
}
.navbar-brand-club .brand-sub {
    font-size: .7rem; color: var(--accent);
    letter-spacing: .05em; text-transform: uppercase; font-weight: 600;
}
.nav-link-club {
    font-weight: 500; font-size: .9rem;
    color: var(--text-dark) !important;
    padding: .45rem .8rem !important;
    position: relative;
    transition: color var(--transition);
}
.nav-link-club::after {
    content: '';
    position: absolute; bottom: 0; left: .8rem; right: .8rem;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform var(--transition);
    border-radius: 1px;
}
.nav-link-club:hover,
.nav-link-club.active { color: var(--primary) !important; }
.nav-link-club:hover::after,
.nav-link-club.active::after { transform: scaleX(1); }
.nav-btn-admin {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff !important;
    border-radius: 6px !important;
    padding: .4rem 1rem !important;
    font-size: .85rem !important;
}
.nav-btn-admin:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important; }
.nav-btn-admin::after { display: none; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    background: var(--bg-hero, linear-gradient(135deg, #5C0E0E 0%, #7B1D1D 60%, #A52A2A 100%));
    min-height: 90vh;
    display: flex; align-items: center;
    overflow: hidden;
    color: #fff;
}
.hero-bg-pattern {
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30Z' fill='none' stroke='rgba(201,168,76,.10)' stroke-width='1'/%3E%3C/svg%3E") repeat;
    opacity: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(201,168,76,.2);
    border: 1px solid rgba(201,168,76,.4);
    color: var(--accent-light);
    border-radius: 30px;
    padding: .4rem 1rem;
    font-size: .85rem; font-weight: 600;
    letter-spacing: .04em; text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
    margin-bottom: 1.25rem;
}
.hero-title span { color: var(--accent-light); }
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,.85);
    max-width: 580px;
    margin-bottom: 2.5rem;
}
.hero-btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--primary-dark) !important;
    font-weight: 700; border: none;
    padding: .85rem 2.2rem;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(201,168,76,.4);
    transition: box-shadow var(--transition), transform var(--transition);
    display: inline-flex; align-items: center; gap: .5rem;
}
.hero-btn-primary:hover {
    box-shadow: 0 10px 30px rgba(201,168,76,.55);
    transform: translateY(-2px);
}
.hero-btn-secondary {
    color: rgba(255,255,255,.9) !important;
    border: 2px solid rgba(255,255,255,.4) !important;
    padding: .83rem 2rem;
    border-radius: 50px;
    font-size: 1rem; font-weight: 500;
    transition: all var(--transition);
    display: inline-flex; align-items: center; gap: .5rem;
}
.hero-btn-secondary:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.7) !important;
}

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 1.8rem 0;
}
.stat-item { text-align: center; padding: .5rem; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem; font-weight: 800; color: var(--accent-light);
    display: block; line-height: 1;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.8); margin-top: .3rem; }

/* ── Cards ────────────────────────────────────────────────── */
.card-club {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.card-club:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.card-club .card-img-wrap {
    overflow: hidden; aspect-ratio: 16/9;
    background: linear-gradient(135deg, #f3e8d0, #e8d5b0);
    position: relative;
}
.card-club .card-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.card-club:hover .card-img-wrap img { transform: scale(1.05); }
.card-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #f8f0e0, #eddcb8);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 3rem;
}
.card-club .card-body { padding: 1.4rem; }
.card-badge {
    display: inline-block; font-size: .72rem; font-weight: 700;
    padding: .25rem .75rem; border-radius: 20px;
    text-transform: uppercase; letter-spacing: .05em;
    margin-bottom: .75rem;
}
.badge-upcoming  { background: #d1fae5; color: #065f46; }
.badge-past      { background: #f3f4f6; color: #6b7280; }
.badge-new       { background: #fee2e2; color: #991b1b; }
.badge-important { background: #fef3c7; color: #92400e; }
.badge-general   { background: #e0e7ff; color: #3730a3; }

/* ── Committee Card ──────────────────────────────────────── */
.committee-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative; overflow: hidden;
}
.committee-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.committee-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.committee-avatar {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 2.5rem;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 4px solid var(--accent);
}
.committee-avatar img { width: 100%; height: 100%; object-fit: cover; }
.committee-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700;
    color: var(--primary);
}
.committee-role {
    font-size: .82rem; color: var(--accent);
    font-weight: 600; text-transform: uppercase;
    letter-spacing: .06em; margin-top: .25rem;
}
.committee-bio {
    font-size: .88rem; color: var(--text-muted);
    margin-top: .75rem; line-height: 1.6;
}

/* ── Gallery ──────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}
.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #f0e8d5;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(92,14,14,.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex; align-items: flex-end;
    padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: #fff; font-size: .85rem; font-weight: 500; }
.gallery-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #f8f0e0, #e8d5b0);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--accent); font-size: 2.5rem; gap: .5rem;
}
.gallery-placeholder span { font-size: .78rem; color: var(--text-muted); font-family: 'Inter', sans-serif; }

/* ── Filter Tabs ──────────────────────────────────────────── */
.filter-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.filter-tab {
    padding: .4rem 1.1rem;
    border: 2px solid var(--border);
    border-radius: 30px;
    font-size: .85rem; font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    background: transparent; color: var(--text-dark);
}
.filter-tab:hover, .filter-tab.active {
    border-color: var(--primary);
    background: var(--primary); color: #fff;
}

/* ── Services ─────────────────────────────────────────────── */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    height: 100%;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
.service-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fdf0e0, #f5d9a0);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.8rem;
    margin: 0 auto 1.25rem;
    transition: background var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--accent-light);
}
.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; color: var(--primary); font-weight: 600;
}
.service-desc { font-size: .88rem; color: var(--text-muted); margin-top: .6rem; }

/* ── Announcement Card ────────────────────────────────────── */
.announcement-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.4rem 1.6rem;
    margin-bottom: 1rem;
    transition: box-shadow var(--transition), border-left-color var(--transition);
}
.announcement-item:hover {
    box-shadow: var(--shadow-md);
    border-left-color: var(--accent);
}
.ann-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--primary); }
.ann-body  { font-size: .9rem; color: var(--text-muted); margin-top: .4rem; }
.ann-meta  { font-size: .78rem; color: var(--text-muted); margin-top: .6rem; }

/* ── Contact Form ─────────────────────────────────────────── */
.contact-form-wrap {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--accent);
}
.form-label-club { font-size: .88rem; font-weight: 600; color: var(--text-dark); margin-bottom: .35rem; }
.form-control-club {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: .7rem 1rem;
    font-size: .92rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control-club:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(123,29,29,.12);
    outline: none;
}
.btn-club-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff; border: none;
    padding: .8rem 2rem; border-radius: 8px;
    font-weight: 600; font-size: .95rem;
    transition: box-shadow var(--transition), transform var(--transition);
}
.btn-club-primary:hover {
    box-shadow: 0 6px 20px rgba(123,29,29,.35);
    transform: translateY(-2px); color: #fff;
}
.contact-info-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}
.contact-info-card h3 { font-family: 'Playfair Display', serif; color: var(--accent-light); }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-top: 1.5rem; }
.contact-info-icon {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-text strong { display: block; font-size: .85rem; color: var(--accent-light); margin-bottom: .15rem; }
.contact-info-text span { font-size: .9rem; color: rgba(255,255,255,.85); }

/* ── About Section ────────────────────────────────────────── */
.about-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.about-img-wrap::after {
    content: '';
    position: absolute; bottom: -8px; right: -8px;
    width: 60%; height: 60%;
    border: 3px solid var(--accent);
    border-radius: var(--radius);
    z-index: -1;
}
.pillar-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--accent);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}
.pillar-card h5 { font-family: 'Playfair Display', serif; color: var(--primary); margin-bottom: .3rem; font-size: 1rem; }

/* ── Footer ───────────────────────────────────────────────── */
.footer-club {
    background: linear-gradient(135deg, var(--primary-dark), #2a0a0a);
    color: rgba(255,255,255,.85);
    padding: 4rem 0 0;
}
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #fff; }
.footer-brand-tagline { font-size: .82rem; color: var(--accent-light); margin-top: .2rem; }
.footer-about { font-size: .88rem; color: rgba(255,255,255,.65); margin-top: 1rem; }
.footer-heading {
    font-family: 'Playfair Display', serif;
    color: var(--accent-light);
    font-size: 1rem; font-weight: 700;
    margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
    color: rgba(255,255,255,.7); font-size: .88rem;
    transition: color var(--transition);
    display: flex; align-items: center; gap: .4rem;
}
.footer-links a:hover { color: var(--accent-light); }
.footer-links a::before { content: '›'; color: var(--accent); font-size: 1.1rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .75rem; }
.footer-contact-item i { color: var(--accent); margin-top: .15rem; flex-shrink: 0; }
.footer-contact-item span { font-size: .88rem; color: rgba(255,255,255,.75); }
.footer-divider {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 2.5rem; padding: 1.25rem 0;
}
.footer-bottom { font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-bottom a { color: var(--accent-light); }

/* ── Page Hero Banner ─────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff; padding: 5rem 0 3.5rem;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='30' fill='none' stroke='rgba(201,168,76,.08)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); color: #fff; position: relative; }
.page-hero p { color: rgba(255,255,255,.8); position: relative; }
.breadcrumb-club { background: transparent; padding: 0; margin: 0; }
.breadcrumb-club .breadcrumb-item { font-size: .85rem; color: rgba(255,255,255,.6); }
.breadcrumb-club .breadcrumb-item a { color: var(--accent-light); }
.breadcrumb-club .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.breadcrumb-club .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── Alerts / Flash Messages ──────────────────────────────── */
.alert-club {
    border-radius: var(--radius);
    border: none;
    font-size: .9rem;
    padding: 1rem 1.25rem;
}
.alert-success-club { background: #d1fae5; color: #065f46; }
.alert-error-club   { background: #fee2e2; color: #991b1b; }

/* ── Map ──────────────────────────────────────────────────── */
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--accent);
}

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity .35s ease;
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-inner { max-width: 90vw; max-height: 90vh; position: relative; }
.lightbox-inner img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
    position: absolute; top: -2.5rem; right: 0;
    color: #fff; font-size: 1.5rem; cursor: pointer;
    background: none; border: none;
    padding: .25rem .5rem;
}
.lightbox-caption {
    text-align: center; color: rgba(255,255,255,.8);
    font-size: .9rem; margin-top: .75rem;
}

/* ── Scroll to top ────────────────────────────────────────── */
.scroll-top {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff; border: none; cursor: pointer;
    box-shadow: var(--shadow-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    opacity: 0; visibility: hidden;
    transition: all var(--transition);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ── Pagination ───────────────────────────────────────────── */
.pagination-club .page-link {
    color: var(--primary);
    border-color: var(--border);
    border-radius: 8px !important;
    margin: 0 2px;
    font-size: .88rem;
    transition: all var(--transition);
}
.pagination-club .page-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination-club .page-item.active .page-link { background: var(--primary); border-color: var(--primary); }

/* ── Fade-in animation ────────────────────────────────────── */
.fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Carousel Indicators ──────────────────────────────────── */
.carousel-indicators [data-bs-target] {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--accent-light); opacity: .5;
    border: none;
}
.carousel-indicators .active { opacity: 1; background: var(--accent); }

/* ── Section eyebrow label ───────────────────────────────── */
.section-eyebrow {
    color: var(--accent);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: .25rem;
}

/* ── Hero slide card ──────────────────────────────────────── */
.hero-slide-card {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(201,168,76,.35);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    color: #fff;
    backdrop-filter: blur(10px);
    min-height: 220px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
}
.hero-slide-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(201,168,76,.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-light); font-size: 2rem;
    margin-bottom: 1.25rem;
}
.hero-slide-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; color: #fff; margin-bottom: .6rem;
}
.hero-slide-card p { color: rgba(255,255,255,.8); font-size: .92rem; margin: 0; }

/* ── Announcement ticker ──────────────────────────────────── */
.ann-ticker {
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    padding: .6rem 0;
    overflow: hidden;
}
.ann-ticker-label {
    background: var(--primary-dark);
    color: #fff;
    padding: .2rem .8rem;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
    white-space: nowrap;
    flex-shrink: 0;
}
.ann-ticker-scroll {
    white-space: nowrap;
    overflow: hidden;
    color: var(--primary-dark);
    font-size: .85rem;
    font-weight: 600;
    animation: ticker 40s linear infinite;
    flex: 1;
}
@keyframes ticker {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ── About visual card ────────────────────────────────────── */
.about-visual-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    color: #fff;
}
.about-vc-icon {
    width: 90px; height: 90px; border-radius: 50%;
    background: rgba(201,168,76,.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-light); font-size: 3rem;
    margin: 0 auto 1.25rem;
}
.about-visual-card h2 {
    font-family: 'Playfair Display', serif;
    color: #fff; font-size: 1.8rem; line-height: 1.2;
}
.about-visual-card p { color: var(--accent-light); font-size: .9rem; margin-top: .25rem; }
.about-vc-badges {
    display: flex; flex-direction: column; gap: .5rem;
    margin-top: 1.5rem; align-items: center;
}
.about-vc-badges span {
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.9);
    padding: .35rem 1rem;
    border-radius: 20px;
    font-size: .82rem; font-weight: 600;
    display: flex; align-items: center; gap: .5rem;
}
.about-vc-badges span i { color: var(--accent-light); }

/* ── Programme Cards (like reference schemes) ─────────────── */
.programme-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative; overflow: hidden;
}
.programme-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.programme-card:hover::before { transform: scaleX(1); }
.programme-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
.programme-icon {
    width: 56px; height: 56px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.programme-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; color: var(--primary);
    margin-bottom: .5rem; font-weight: 700;
}
.programme-desc {
    font-size: .87rem; color: var(--text-muted);
    line-height: 1.6; margin-bottom: 1rem;
}
.programme-link {
    font-size: .82rem; font-weight: 700;
    color: var(--primary);
    display: inline-flex; align-items: center; gap: .25rem;
    transition: color var(--transition), gap var(--transition);
    text-decoration: none;
}
.programme-link:hover { color: var(--accent); gap: .5rem; }

/* ── Event Card with date badge ───────────────────────────── */
.event-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}
.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.event-date-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 1.1rem;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    min-height: 90px;
}
.event-day {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem; font-weight: 800;
    line-height: 1; color: var(--accent-light);
}
.event-mon {
    font-size: .75rem; color: rgba(255,255,255,.85);
    font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
    margin-top: .2rem;
}
.event-body { padding: 1.25rem; flex: 1; }
.event-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; color: var(--primary);
    margin-bottom: .5rem; font-weight: 700; line-height: 1.3;
}
.event-desc { font-size: .87rem; color: var(--text-muted); margin-bottom: .75rem; }
.event-meta { font-size: .8rem; color: var(--accent); font-weight: 600; display: flex; align-items: center; gap: .4rem; }

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 5rem 0; color: #fff;
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='35' fill='none' stroke='rgba(201,168,76,.07)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}
.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; color: #fff;
    position: relative; margin-bottom: .75rem;
}
.cta-section p {
    color: rgba(255,255,255,.8);
    max-width: 500px; margin: 0 auto 2rem;
    font-size: .97rem; position: relative;
}

/* ── min-vh-80 ────────────────────────────────────────────── */
.min-vh-80 { min-height: 80vh; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
    .section-pad { padding: 55px 0; }
    .hero-section { min-height: 80vh; }
    .stats-bar .stat-number { font-size: 1.8rem; }
    .contact-form-wrap { padding: 1.5rem; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .committee-avatar { width: 80px; height: 80px; font-size: 2rem; }
}
