/* ══════════════════════════════════════════════════════════════════
   SAC – Student Activities Council  |  Vignan University
   CSS redesigned to match vignan.ac.in aesthetic
   ══════════════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* ── Vignan.ac.in colour palette ── */
    --vu-maroon:    #992901;
    --vu-maroon-d:  #992901;
    --vu-maroon-l:  #992901;
    --vu-cream:     #F6F4EF;
    --vu-off-white: #F6F4EF;
    --vu-white:     #ffffff;
    --vu-text:      #1a1a1a;
    --vu-gray:      #555555;
    --vu-gray-l:    #888888;
    --vu-border:    #d6cfc4;
    --vu-gold:      #c8952a;
    --vu-gold-l:    #e0aa40;
    --radius:      4px;
    --radius-lg:   8px;
    --shadow:      0 1px 6px rgba(0,0,0,.08);
    --shadow-lg:   0 4px 20px rgba(0,0,0,.12);
    --transition:  .22s ease;
    --font-body:   'Inter', system-ui, sans-serif;
    --font-head:   'Merriweather', Georgia, serif;
    --max-w:       1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--vu-text);
    background: var(--vu-cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.container {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── TOP UTILITY BAR ────────────────────────────────────────────── */
.top-bar {
    background: var(--vu-maroon-d);
    color: rgba(255,255,255,.85);
    font-size: .74rem;
    padding: 6px 0;
}
.top-bar-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.top-bar-links { display: flex; gap: 20px; }
.top-bar-links a { color: rgba(255,255,255,.80); transition: color var(--transition); font-weight: 500; }
.top-bar-links a:hover { color: #fff; }

/* ── SITE HEADER / NAV ──────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--vu-white);
    border-bottom: 1px solid var(--vu-border);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.10); }

.header-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo-block { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-img   { height: 52px; width: auto; }
.logo-text  { display: flex; flex-direction: column; }
.logo-title {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--vu-maroon);
    line-height: 1;
}
.logo-sub { font-size: .67rem; color: var(--vu-gray-l); line-height: 1.3; margin-top: 3px; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
    flex-wrap: wrap;
}
.main-nav a {
    padding: 7px 12px;
    border-radius: var(--radius);
    font-size: .82rem;
    font-weight: 500;
    color: var(--vu-text);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}
.main-nav a:hover { color: var(--vu-maroon); background: rgba(139,37,0,.06); }
.main-nav a.active { color: var(--vu-maroon); font-weight: 700; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--vu-maroon);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background: var(--vu-white);
    z-index: 1000;
    padding: 80px 24px 32px;
    box-shadow: -4px 0 24px rgba(0,0,0,.12);
    transition: right .3s ease;
    overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav nav  { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav a {
    padding: 11px 14px;
    border-radius: var(--radius);
    font-weight: 500;
    color: var(--vu-text);
    border-bottom: 1px solid var(--vu-border);
    transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover { color: var(--vu-maroon); background: rgba(139,37,0,.05); }

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 999;
}
.mobile-overlay.open { display: block; }

/* ═══════════════════════════════════════════════════════════════
   CAMPUS EVENTS CAROUSEL SECTION
   ═══════════════════════════════════════════════════════════════ */
.campus-events-section {
    background: #f5f0eb;
    padding: 64px 0 72px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.events-section-header {
    margin-bottom: 40px;
    text-align: left;
}
.events-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}
.events-subheading {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Carousel Container */
.events-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}
.events-track-wrapper {
    overflow: hidden;
    flex: 1;
    margin: 0 44px;
}
.events-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Event Card */
.event-card-new {
    flex: 0 0 auto;
    width: calc((100% - 40px) / 3);
    min-width: 280px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.event-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Card Image */
.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #e8e4de;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card Content */
.card-content {
    padding: 16px;
}

/* Card Meta (Date + Author) */
.card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #8a7a50;
}
.meta-date, .meta-author {
    display: flex;
    align-items: center;
    gap: 5px;
}
.meta-icon {
    font-style: normal;
}

/* Card Title */
.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #c0392b;
    margin: 0 0 8px;
    line-height: 1.35;
}

/* Card Description */
.card-description {
    font-size: 0.95rem;
    color: #444;
    margin: 0;
    line-height: 1.55;
}

/* Navigation Arrows */
.carousel-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s ease, opacity 0.2s ease;
    z-index: 10;
}
.carousel-nav-arrow:hover {
    background: rgba(0,0,0,0.8);
}
.carousel-nav-arrow.left { left: 0; }
.carousel-nav-arrow.right { right: 0; }

/* Responsive: Tablet (2 cards) */
@media (max-width: 900px) {
    .event-card-new {
        width: calc((100% - 20px) / 2);
    }
    .events-track-wrapper {
        margin: 0 40px;
    }
    .events-heading {
        font-size: 2rem;
    }
}

/* Responsive: Mobile (1 card) */
@media (max-width: 600px) {
    .campus-events-section {
        padding: 48px 0 56px;
    }
    .event-card-new {
        width: 100%;
        min-width: unset;
    }
    .events-track-wrapper {
        margin: 0 36px;
    }
    .carousel-nav-arrow {
        width: 38px;
        height: 38px;
    }
    .carousel-nav-arrow svg {
        width: 20px;
        height: 20px;
    }
    .events-heading {
        font-size: 1.75rem;
    }
    .events-subheading {
        font-size: 1rem;
    }
    .card-image {
        height: 180px;
    }
}

/* ── SECTION COMMON ─────────────────────────────────────────────── */
.section { padding: 68px 0; }
.section-alt { background: var(--vu-off-white); }

.section-head { text-align: center; margin-bottom: 44px; }

.section-label {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--vu-maroon);
    margin-bottom: 10px;
}
.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--vu-text);
    margin-bottom: 10px;
    font-weight: 700;
}
.section-note {
    font-size: .95rem;
    color: var(--vu-gray);
    max-width: 580px;
    margin-inline: auto;
    line-height: 1.7;
}
.divider {
    width: 48px;
    height: 3px;
    background: var(--vu-maroon);
    margin: 14px auto 0;
    border-radius: 1px;
    opacity: .40;
}

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--vu-maroon-d);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .28;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(107,28,0,.90) 45%, rgba(107,28,0,.42));
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 580px;
    color: var(--vu-white);
    padding: 60px 24px;
    text-align: center;
}
.hero-main-title {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 0.4rem 0;
    line-height: 1;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}
.hero-subtitle {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 600;
    color: #fff;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    white-space: nowrap;
    text-shadow: 0 2px 15px rgba(0,0,0,0.4);
}
.hero-meta {
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.28);
    color: rgba(255,255,255,.88);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 3px;
    margin-bottom: 1.4rem;
}
.hero-description {
    color: rgba(255,255,255,.9);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto 1.8rem auto;
    line-height: 1.6;
}

.hero h1 span { color: var(--vu-gold-l); }
.hero p {
    font-size: 1rem;
    opacity: .86;
    margin-bottom: 30px;
    line-height: 1.75;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── STATS COUNTER SECTION ──────────────────────────────────────── */
.stats-section {
    background: var(--vu-white);
    padding: 48px 0;
    border-bottom: 1px solid var(--vu-border);
}
.stats-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
}
.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 32px;
    text-align: center;
    min-width: 140px;
}
.stat-number {
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--vu-maroon);
    line-height: 1.2;
    margin-bottom: 6px;
}
.stat-label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--vu-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.stat-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--vu-border), transparent);
    align-self: stretch;
}

/* Tablet: 2 columns */
@media (max-width: 900px) {
    .stats-grid {
        flex-wrap: wrap;
        max-width: 500px;
        margin: 0 auto;
    }
    .stat-item {
        flex: 1 1 40%;
        min-width: 120px;
    }
    .stat-divider { display: none; }
}

/* Mobile: 1 column */
@media (max-width: 540px) {
    .stats-section { padding: 36px 0; }
    .stat-item {
        flex: 1 1 100%;
        padding: 16px 20px;
    }
    .stat-number { font-size: 2.2rem; }
    .stat-label { font-size: .8rem; }
}

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-size: .84rem;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary { background: var(--vu-maroon); color: var(--vu-white); border-color: var(--vu-maroon); }
.btn-primary:hover { background: var(--vu-maroon-d); border-color: var(--vu-maroon-d); }
.btn-outline { background: transparent; color: var(--vu-white); border-color: rgba(255,255,255,.50); }
.btn-outline:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.80); }
.btn-maroon { background: var(--vu-maroon); color: var(--vu-white); border-color: var(--vu-maroon); }
.btn-maroon:hover { background: var(--vu-maroon-d); }

/* ── STAT BAR ───────────────────────────────────────────────────── */
.stat-bar { background: var(--vu-maroon-d); color: var(--vu-white); padding: 24px 0; }
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    text-align: center;
}
.stat-item .stat-num {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--vu-white);
    display: block;
}
.stat-item .stat-label { font-size: .76rem; opacity: .60; margin-top: 2px; }

/* ── ABOUT SPLIT ────────────────────────────────────────────────── */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}
.about-text p { margin-bottom: 14px; color: var(--vu-gray); line-height: 1.8; }
.about-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background: var(--vu-off-white);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ── INFO CARDS ─────────────────────────────────────────────────── */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px;
    margin-top: 36px;
}
.info-card {
    background: var(--vu-white);
    border: 1px solid var(--vu-border);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.info-card-icon {
    width: 46px; height: 46px;
    background: rgba(139,37,0,.07);
    color: var(--vu-maroon);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 14px;
}
.info-card h3 { font-size: .93rem; font-weight: 700; color: var(--vu-maroon); margin-bottom: 7px; }
.info-card p  { font-size: .83rem; color: var(--vu-gray); line-height: 1.6; }

/* ── CLUBS GRID ─────────────────────────────────────────────────── */
.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}
.club-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    aspect-ratio: 4/3;
    background: var(--vu-maroon-d);
}
.club-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.club-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.club-card:hover img { transform: scale(1.05); }
.club-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(107,28,0,.88) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 18px;
}
.club-card-title { color: var(--vu-white); font-size: .92rem; font-weight: 700; }

/* Club modal - Full Screen View with Events */
.club-modal {
    display: none !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 2000 !important;
    background: var(--vu-cream) !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}

.club-modal.open { display: flex !important; }
.club-modal-card {
    background: var(--vu-white) !important;
    border-radius: 0 !important;
    max-width: 100% !important;
    width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    overflow: hidden !important;
    box-shadow: none !important;
    animation: modalIn .22s ease !important;
    display: flex !important;
    flex-direction: column !important;
}
@keyframes modalIn { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.club-modal-media {
    width: 100%;
    max-height: 45vh;
    min-height: 300px;
    background: var(--vu-off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.club-modal-media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
}
.club-modal-body {
    padding: 32px 48px 48px;
    text-align: left;
    overflow-y: auto;
    flex: 1;
}
.club-modal-body h2 {
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--vu-maroon);
    margin-bottom: 16px;
}
.club-modal-body p {
    color: var(--vu-gray);
    line-height: 1.9;
    font-size: 1rem;
    margin-bottom: 24px;
}

/* Club Lead Info Section */
.club-lead-info {
    background: var(--vu-cream);
    border-left: 4px solid var(--vu-maroon);
    padding: 20px 24px;
    margin: 24px 0 28px;
    border-radius: 0 var(--radius) var(--radius) 0;
}
.club-lead-info h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--vu-maroon);
    margin-bottom: 12px;
    font-weight: 600;
}
.club-lead-info p {
    color: var(--vu-text);
    font-size: .95rem;
    margin-bottom: 8px;
    line-height: 1.6;
}
.club-lead-info p:last-child {
    margin-bottom: 0;
}
.club-lead-info strong {
    color: var(--vu-maroon);
    font-weight: 600;
}

/* Club Events Section */
.club-events-section {
    margin-top: 32px;
}
.club-events-section h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    color: var(--vu-maroon);
    margin-bottom: 20px;
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--vu-border);
}
.club-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.club-event-card {
    background: var(--vu-white);
    border: 1px solid var(--vu-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.club-event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.club-event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.club-event-info {
    padding: 16px;
}
.club-event-info h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    color: var(--vu-text);
    margin-bottom: 8px;
    font-weight: 600;
}
.club-event-info span {
    font-size: .85rem;
    color: var(--vu-gray-l);
}
.no-events {
    color: var(--vu-gray-l);
    font-style: italic;
    padding: 20px 0;
}
.club-modal-close {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 40px auto 0;
    background: var(--vu-maroon);
    color: var(--vu-white);
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    text-align: center;
}
.club-modal-close:hover {
    background: var(--vu-maroon-d);
    transform: translateY(-2px);
}

/* ── EVENTS ─────────────────────────────────────────────────────── */
.events-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.filter-btn {
    padding: 7px 16px;
    border-radius: 20px;
    border: 1.5px solid var(--vu-border);
    background: #fff;
    font-size: .8rem;
    font-weight: 600;
    color: var(--vu-gray);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--vu-maroon);
    color: var(--vu-maroon);
    transform: translateY(-1px);
}

.filter-btn.active {
    background: var(--vu-maroon);
    color: #fff;
    border-color: var(--vu-maroon);
}

.events-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .87rem;
    background: var(--vu-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.events-table thead th {
    background: var(--vu-maroon);
    color: var(--vu-white);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: .76rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.events-table tbody tr { border-bottom: 1px solid var(--vu-border); transition: background var(--transition); }
.events-table tbody tr:hover { background: rgba(139,37,0,.04); }
.events-table td { padding: 11px 16px; vertical-align: middle; }
.event-category-tag {
    display: inline-block;
    padding: 2px 9px;
    border-radius: 10px;
    font-size: .70rem;
    font-weight: 600;
    background: rgba(139,37,0,.07);
    color: var(--vu-maroon);
    border: 1px solid rgba(139,37,0,.18);
}

/* ── EVENTS CARDS GRID ─────────────────────────────── */
.events-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 20px;
    align-items: stretch;
}
.event-card {
    background: var(--vu-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1.5px solid var(--vu-border);
    padding: 28px 24px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow .18s, border-color .18s;
    position: relative;
}
.event-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--vu-maroon);
}
.event-card-date {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--vu-maroon);
    margin-bottom: 2px;
    letter-spacing: 0.01em;
}
.event-card-title {
    font-size: 1.13rem;
    font-weight: 700;
    color: var(--vu-text);
    margin-bottom: 2px;
    margin-top: 2px;
}
.event-card-org {
    font-size: .97rem;
    color: var(--vu-gray);
    margin-bottom: 2px;
}
.event-card-cat {
    margin-top: 8px;
}
.event-category-tag {
    display: inline-block;
    background: var(--vu-off-white);
    color: var(--vu-maroon);
    border: 1px solid var(--vu-border);
    border-radius: 16px;
    padding: 2px 14px 2px 14px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-top: 2px;
}
@media (max-width: 700px) {
    .events-cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .event-card {
        padding: 20px 12px 16px 12px;
    }
}
.events-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* ── BLOG ───────────────────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.blog-card {
    background: var(--vu-white);
    border: 1px solid var(--vu-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-card-media { aspect-ratio: 16/9; background: var(--vu-off-white); overflow: hidden; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 20px 22px; }
.blog-card-body h3 { font-family: var(--font-head); font-size: 1rem; color: var(--vu-maroon); margin-bottom: 8px; line-height: 1.4; }
.blog-card-body p  { font-size: .84rem; color: var(--vu-gray); line-height: 1.7; }
.blog-write-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    background: var(--vu-maroon);
    color: var(--vu-white);
    border-radius: var(--radius);
    font-size: .83rem;
    font-weight: 600;
    transition: background var(--transition);
    margin-bottom: 32px;
}
.blog-write-btn:hover { background: var(--vu-maroon-d); }

/* ── GALLERY MARQUEE ─────────────────────────────────────────────── */
.gallery-marquee { overflow: hidden; }
.gallery-row { overflow: hidden; margin-bottom: 14px; }
.gallery-track { display: flex; gap: 14px; width: max-content; }
.gallery-row-top    .gallery-track { animation: marquee-left  32s linear infinite; }
.gallery-row-bottom .gallery-track { animation: marquee-right 32s linear infinite; }
@keyframes marquee-left  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.gallery-marquee:hover .gallery-track { animation-play-state: paused; }
.gallery-item {
    width: 270px;
    height: 175px;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    background-color: var(--vu-off-white);
}

/* ── TEAM ────────────────────────────────────────────────────────── */
/* Force kill any global circular-avatar styles */
.member-card .member-avatar,
.member-card .member-avatar img,
div.member-avatar,
div.member-avatar img {
    border-radius: 0 !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
    shape-outside: none !important;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.member-card {
    background: var(--vu-white);
    border: 1px solid var(--vu-border);
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    overflow: hidden;
    width: 100%;
    text-align: center;
}
.member-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.member-avatar {
    width: 100%;
    height: 260px;
    border-radius: 0;
    background: var(--vu-off-white);
    margin: 0;
    overflow: hidden;
    border: none;
    display: block;
}
.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 0;
}
.member-avatar .avatar-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vu-maroon);
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-head);
    background: rgba(139,37,0,.08);
}
/* FIX: these two lines were orphaned outside any rule block — moved inside .member-card h4 and .member-card p */
.member-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--vu-text);
    margin: 18px 0 4px 0;
}
.member-card p {
    font-size: .92rem;
    color: var(--vu-gray-l);
    margin-bottom: 18px;
}

/* ── CONTACT ─────────────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.contact-card {
    background: var(--vu-white);
    border: 1px solid var(--vu-border);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: box-shadow var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-lg); }
.contact-card-icon {
    width: 42px; height: 42px;
    background: rgba(139,37,0,.07);
    color: var(--vu-maroon);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-card h3 { font-size: .88rem; font-weight: 700; color: var(--vu-text); margin-bottom: 5px; }
.contact-card p, .contact-card a { font-size: .84rem; color: var(--vu-gray); line-height: 1.6; }
.contact-card a:hover { color: var(--vu-maroon); }

/* ── FOOTER ──────────────────────────────────────────────────────── */
.site-footer {
    background: #1a0a05;
    color: rgba(255,255,255,.75);
    padding-top: 52px;
}
.footer-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: 24px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 44px;
}
.footer-logo { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--vu-white); margin-bottom: 12px; }
.footer-tagline { font-size: .80rem; line-height: 1.75; opacity: .70; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 34px; height: 34px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.70);
    font-size: .9rem;
    transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--vu-maroon); color: var(--vu-white); }
.footer-heading { font-size: .76rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.40); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-col ul a { font-size: .81rem; opacity: .72; transition: opacity var(--transition), color var(--transition); }
.footer-col ul a:hover { opacity: 1; color: #fff; }
.footer-col p { font-size: .81rem; opacity: .68; margin-bottom: 7px; line-height: 1.6; }
.footer-col p i { margin-right: 6px; color: rgba(255,255,255,.38); }
.footer-col p a:hover { opacity: 1; color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 16px 24px;
    max-width: var(--max-w);
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: .73rem;
    opacity: .50;
}
.footer-bottom a:hover { opacity: 1; color: #fff; }

/* ── OFFICER BOX ─────────────────────────────────────────────────── */
.officer-box {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: var(--vu-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border-left: 3px solid var(--vu-maroon);
    box-shadow: var(--shadow);
}
.officer-photo { width: 110px; height: 130px; border-radius: var(--radius); object-fit: cover; flex-shrink: 0; border: 2px solid var(--vu-border); }
.officer-info h3 { font-family: var(--font-head); font-size: 1.1rem; color: var(--vu-maroon); margin-bottom: 3px; }
.officer-info .officer-role { font-size: .80rem; color: var(--vu-gray-l); font-weight: 600; margin-bottom: 12px; }
.officer-info p { font-size: .86rem; color: var(--vu-gray); line-height: 1.75; }

/* ── UTILITY ─────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
    .team-grid    { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .main-nav { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: block; }
    .about-split { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .officer-box { flex-direction: column; }
    .officer-photo { width: 90px; height: 110px; }
    .top-bar .top-bar-inner span { display: none; }
    .events-table { font-size: .76rem; }
    .events-table thead th, .events-table td { padding: 9px 10px; }
    .hero-content { padding: 44px 24px; }
    .team-grid    { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
    .logo-sub  { display: none; }
    .logo-img  { height: 40px; }
    .events-table .hide-sm { display: none; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── EVENTS TOOLBAR (SEARCH + FILTERS) ── */
.events-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 30px;
}

/* Search Box */
.events-search {
    padding: 10px 14px;
    border: 1.5px solid var(--vu-border);
    border-radius: 6px;
    font-size: .9rem;
    width: 240px;
    outline: none;
    transition: border var(--transition), box-shadow var(--transition);
}

.events-search:focus {
    border-color: var(--vu-maroon);
    box-shadow: 0 0 0 3px rgba(153,41,1,0.08);
}

/* Filter Buttons Wrapper */
.events-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

/* ===== FIX EVENTS GRID ALIGNMENT ===== */
.events-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

/* Tablet */
@media (max-width: 1024px) {
    .events-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .events-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Ensure cards behave properly */
.event-card-new {
    width: 100%;
}