

/* ── CUSTOM PROPERTIES ── */
:root {
    --maroon: #5a0f1c;
    --maroon-deep: #3d0912;
    --maroon-mid: #7a1527;
    --gold: #c6a75e;
    --gold-light: #e2c98a;
    --gold-dim: rgba(198,167,94,0.15);
    --dark: #0d0d0d;
    --dark-2: #111111;
    --dark-3: #161616;
    --dark-4: #1c1c1c;
    --white: #ffffff;
    --cream: #f5f0e8;
    --text-muted: rgba(255,255,255,0.55);
    --border-gold: 1px solid rgba(198,167,94,0.3);
    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-pill: 50px;
    --shadow-gold: 0 0 40px rgba(198,167,94,0.2);
    --shadow-card: 0 20px 60px rgba(0,0,0,0.5);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    background: var(--dark);
    color: var(--white);
    padding-top: 90px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.loading, html.loading { overflow: hidden; }

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9998;
    opacity: 0.4;
}

/* ── LOADER ── */
#loader {
    position: fixed;
    inset: 0;
    background: var(--maroon-deep);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    gap: 24px;
}

#loader img {
    width: 120px;
    animation: loaderPulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(198,167,94,0.6));
}

#loader::after {
    content: 'TBSUMUN 2026';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 8px;
    color: var(--gold);
    animation: loaderFade 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.06); opacity: 0.85; }
}
@keyframes loaderFade {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.fade-out { opacity: 0; transition: opacity 0.8s ease; }
.fade-in  { opacity: 1; transition: opacity 0.4s ease; }

/* ── FOOTER ── */
.site-footer {
    background: var(--dark);
    border-top: var(--border-gold);
    padding: 24px 20px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    font-family: 'Montserrat', sans-serif;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
nav {
    height: 90px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(58,9,18,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: top 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    border-bottom: var(--border-gold);
}

nav.scrolled {
    background: rgba(10,10,10,0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.6);
    border-bottom-color: rgba(198,167,94,0.15);
}

.logo-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
}

.logo-title img {
    height: 60px;
    width: auto;
    transition: filter 0.3s ease;
}
.logo-title:hover img {
    filter: drop-shadow(0 0 10px rgba(198,167,94,0.7));
}

.logo-title h1 {
    font-family: 'Aboreto', serif;
    font-size: 22px;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #fff 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 6px;
    align-items: center;
}

nav a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: color 0.3s ease;
}

nav a:not(.register-btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}
nav a:not(.register-btn):hover {
    color: var(--gold-light);
}
nav a:not(.register-btn):hover::after { width: 70%; }

nav .register-btn {
    background: var(--gold);
    color: var(--maroon-deep) !important;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    -webkit-text-fill-color: var(--maroon-deep);
}
nav .register-btn:hover {
    background: var(--gold-light);
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(198,167,94,0.4);
}
nav .register-btn::after { display: none; }

/* Hamburger */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    z-index: 1100;
    background: none;
    border: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
    min-height: 100dvh;
    padding: 120px 20px 80px;
    background:
        linear-gradient(170deg, rgba(58,9,18,0.85) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.85) 100%),
        url("images/banner.png") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Animated background shimmer */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(198,167,94,0.08) 0%, transparent 70%);
    animation: heroGlow 6s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Decorative corner ornaments */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--dark) 0%, transparent 100%);
    pointer-events: none;
}

@keyframes heroGlow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

/* Animated entry */
.hero-school {
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.9s 0.3s forwards ease;
}

.hero-main {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 900;
    font-size: clamp(60px, 13vw, 130px);
    letter-spacing: 6px;
    color: var(--gold);
    line-height: 1;
    margin: 10px 0 20px;
    text-shadow:
        0 0 30px rgba(198,167,94,0.5),
        0 0 80px rgba(198,167,94,0.25),
        0 4px 20px rgba(0,0,0,0.4);
    animation: glowPulse 4s ease-in-out infinite, fadeUp 0.9s 0.5s both;
    opacity: 0;
}

.hero-sub {
    font-size: 15px;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.9s 0.7s forwards ease;
}

.hero-divider {
    width: 120px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 36px auto;
    opacity: 0;
    animation: fadeUp 0.9s 0.9s forwards ease;
}

.hero-motto {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 3vw, 28px);
    font-style: italic;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
    opacity: 0;
    animation: fadeUp 0.9s 1.1s forwards ease;
}

.hero-date {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 10px 28px;
    border: 1px solid rgba(198,167,94,0.5);
    display: inline-block;
    border-radius: var(--radius-pill);
    color: var(--gold-light);
    background: rgba(198,167,94,0.08);
    backdrop-filter: blur(6px);
    opacity: 0;
    animation: fadeUp 0.9s 1.3s forwards ease;
    transition: var(--transition);
}
.hero-date:hover {
    background: rgba(198,167,94,0.15);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(198,167,94,0.3);
}

/* Scroll indicator */
.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: max-content;
    transform: none;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s 2s forwards ease;
    color: rgba(255,255,255,0.4);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.hero-scroll-hint::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 0.6; }
    50% { transform: scaleY(1.3); opacity: 1; }
}

@keyframes glowPulse {
    0%, 100% { text-shadow: 0 0 20px rgba(198,167,94,0.4), 0 0 60px rgba(198,167,94,0.2); }
    50% { text-shadow: 0 0 40px rgba(198,167,94,0.7), 0 0 100px rgba(198,167,94,0.35), 0 0 140px rgba(198,167,94,0.15); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════
   SECTION BASE
════════════════════════════════ */
section {
    padding: 100px 10%;
    text-align: center;
    background: var(--dark-2);
    color: white;
    scroll-margin-top: 90px;
}

section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 62px);
    color: var(--gold);
    margin-bottom: 50px;
    letter-spacing: 3px;
}

/* ── SECTION DIVIDER ── */
.section-divider {
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), transform 0.9s cubic-bezier(0.4,0,0.2,1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════
   PRINCIPAL / COORDINATOR
════════════════════════════════ */
.principal-section {
    padding: 100px 20px;
    background: var(--dark-2);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Subtle side accent */
.principal-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    width: 3px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.4;
}
.principal-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    width: 3px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.principal-container {
    max-width: 800px;
    margin: auto;
    position: relative;
}

.principal-heading {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 600;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(198,167,94,0.3);
    margin-bottom: 50px;
    line-height: 1.2;
}

/* Photo frame */
.principal-img-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.principal-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(198,167,94,0.5);
    box-shadow: 0 0 0 8px rgba(198,167,94,0.06), 0 20px 50px rgba(0,0,0,0.5);
    display: block;
    margin: 0 auto 0;
}

.principal-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--gold-light);
    margin: 20px 0 6px;
}

.principal-title {
    position: relative;
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 40px;
    padding-bottom: 20px;
}

.principal-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.principal-message {
    font-size: 16px;
    line-height: 1.95;
    margin-top: 22px;
    color: rgba(255,255,255,0.78);
    text-align: left;
}

/* Opening quote styling */
.principal-message:first-of-type {
    position: relative;
    padding-left: 24px;
    border-left: 2px solid rgba(198,167,94,0.3);
}

/* ════════════════════════════════
   ABOUT SECTION
════════════════════════════════ */
.about-section {
    padding: 100px 20px;
    background: var(--dark-3);
    text-align: center;
    color: white;
    position: relative;
}

.about-section::before {
    content: '"';
    position: absolute;
    top: 60px;
    left: 8%;
    font-family: 'Playfair Display', serif;
    font-size: 180px;
    color: rgba(198,167,94,0.05);
    line-height: 1;
    pointer-events: none;
}

.about-container {
    max-width: 860px;
    margin: auto;
    position: relative;
}

.about-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 6vw, 68px);
    margin-bottom: 50px;
    color: var(--gold);
    letter-spacing: 4px;
}

.about-section p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.75);
    text-align: left;
}

/* Stats bar inside about */
.about-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(198,167,94,0.15);
    flex-wrap: wrap;
}

.about-stat-item {
    text-align: center;
}

.about-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    color: var(--gold);
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 0 0 30px rgba(198,167,94,0.3);
}

.about-stat-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-top: 6px;
}

/* ════════════════════════════════
   COMMITTEES
════════════════════════════════ */
.committees-section-dark {
    background: var(--dark);
    color: white;
    padding: 100px 6%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.committees-section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(90,15,28,0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(198,167,94,0.04) 0%, transparent 60%);
    pointer-events: none;
}

#committees h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 6vw, 72px);
    letter-spacing: 6px;
    color: var(--gold);
    position: relative;
}

#committees h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto 0;
    opacity: 0.5;
}

.committees-container {
    max-width: 1100px;
    margin: 70px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
    position: relative;
}

.committee-block {
    padding: 40px 30px;
    border: 1px solid rgba(198,167,94,0.1);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.committee-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(198,167,94,0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.committee-block:hover,
.committee-block.locked {
    border-color: rgba(198,167,94,0.35);
    background: rgba(255,255,255,0.04);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(198,167,94,0.06);
}
.committee-block:hover::before,
.committee-block.locked::before { opacity: 1; }

.committee-block img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(198,167,94,0.3);
    margin-bottom: 20px;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    filter: brightness(0.95) saturate(1.1);
}
.committee-block:hover img,
.committee-block.locked img {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(198,167,94,0.25), 0 10px 40px rgba(0,0,0,0.5);
    transform: scale(1.04);
}

.committee-block h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 4px;
    color: var(--gold-light);
    font-size: 32px;
    margin-bottom: 12px;
}

.committee-block p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    max-width: 380px;
    margin: 0 auto;
    line-height: 1.8;
    font-style: italic;
}

/* ════════════════════════════════
   SECRETARIAT
════════════════════════════════ */
#secretariat {
    background: var(--dark-2);
    padding: 100px 6%;
    position: relative;
}

#secretariat h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 6vw, 68px);
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.secretariat-subtitle {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 50px;
}

.secretariat-wrapper {
    text-align: center;
    margin-top: 20px;
    position: relative;
}

.secretariat-group {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.secretariat-group.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    position: absolute;
    left: 0;
    right: 0;
}

/* Flip Cards Grid */
.secretariat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 28px;
}

.profile { perspective: 1000px; }

.profile-card {
    width: 100%;
    height: 300px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
    cursor: pointer;
}

@media (hover: hover) {
    .profile:hover .profile-card:not(.static-card) {
        transform: rotateY(180deg);
    }
}
.profile.flip .profile-card { transform: rotateY(180deg); }

.profile-front,
.profile-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: var(--radius-md);
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.profile-front {
    background: linear-gradient(145deg, var(--dark-4), #222);
    border: 1px solid rgba(198,167,94,0.15);
    transition: border-color 0.3s ease;
}
.profile:hover .profile-front {
    border-color: rgba(198,167,94,0.35);
}

.profile-front img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(198,167,94,0.4);
    margin-bottom: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    transition: var(--transition);
}
.profile:hover .profile-front img {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(198,167,94,0.3);
}

.profile-front h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.profile-front p {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    opacity: 0.85;
}

.profile-back {
    transform: rotateY(180deg);
    background: linear-gradient(145deg, var(--maroon-deep), var(--maroon));
    border: 1px solid rgba(198,167,94,0.2);
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    overflow-y: auto;
    text-align: center;
    padding: 20px 14px;
}

.profile-back h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--gold-light);
    margin-bottom: 10px;
}

/* Flip indicator */
.profile-front::after {
    content: '↻';
    position: absolute;
    bottom: 10px;
    right: 14px;
    font-size: 14px;
    color: rgba(198,167,94,0.4);
    transition: color 0.3s;
}
.profile:hover .profile-front::after {
    color: var(--gold);
}

/* Static cards (2025 secretariat) */
.static-card {
    transform: none !important;
    cursor: default;
}
.static-card:hover { transform: none !important; }
.static-card::after { display: none !important; }
.static-card .profile-front::after { display: none !important; }

/* Toggle button */
.secretariat-btn {
    border: 1px solid rgba(198,167,94,0.4);
    margin-top: 50px;
    padding: 13px 36px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}
.secretariat-btn:hover {
    background: var(--gold);
    color: var(--maroon-deep);
    border-color: var(--gold);
    transform: scale(1.04);
    box-shadow: 0 6px 30px rgba(198,167,94,0.3);
}

/* ════════════════════════════════
   EXECUTIVE BOARD
════════════════════════════════ */
#eb {
    background: var(--dark-3);
    padding: 100px 6%;
}

#eb h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 6vw, 68px);
    color: var(--gold);
    letter-spacing: 4px;
}

/* ════════════════════════════════
   CONTACT / REGISTER SECTION
════════════════════════════════ */
.footer-register {
    background: linear-gradient(135deg, var(--maroon-deep) 0%, #4a1020 40%, var(--maroon) 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-register::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(198,167,94,0.08) 0%, transparent 70%);
}

.footer-register h2 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 4px;
    font-size: clamp(44px, 7vw, 80px);
    color: white;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 30px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.contact-email {
    margin: 0 0 40px;
    font-size: 14px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.65);
    position: relative;
}
.contact-email a {
    color: var(--gold-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(198,167,94,0.3);
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}
.contact-email a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

.register-btn,
.insta-btn {
    padding: 14px 36px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-block;
}

.register-btn {
    background: var(--gold);
    color: var(--maroon-deep);
    box-shadow: 0 4px 20px rgba(198,167,94,0.3);
}
.register-btn:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(198,167,94,0.45);
}

.insta-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}
.insta-btn:hover {
    background: rgba(225,48,108,0.85);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(225,48,108,0.35);
}

/* ════════════════════════════════
   MATERIALS SECTION
════════════════════════════════ */
.materials-section {
    padding: 100px 20px;
    background: var(--dark);
    text-align: center;
    color: white;
}

.materials-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 56px);
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 50px;
}

.materials-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.material-btn {
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid rgba(198,167,94,0.4);
    color: var(--gold-light);
    transition: var(--transition);
}
.material-btn:hover {
    background: var(--gold);
    color: var(--maroon-deep);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(198,167,94,0.3);
}

/* ════════════════════════════════
   GRAND TITLE
════════════════════════════════ */
.grand-title {
    background: var(--dark-2);
    padding: 140px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.grand-title::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(198,167,94,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.grand-logo {
    width: 160px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(198,167,94,0.4));
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    z-index: 1;
}
@media (hover: hover) {
    .grand-logo:hover { transform: scale(1.06) rotate(3deg); }
}
.grand-logo.active { transform: scale(1.12) rotate(-3deg); }

.grand-title-container h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 6vw, 72px);
    letter-spacing: 4px;
    margin-bottom: 14px;
    color: var(--gold);
    text-shadow: 0 0 40px rgba(198,167,94,0.35);
    position: relative;
}

.grand-title-container h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    letter-spacing: 3px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 10px;
}

.grand-title-container h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
}

/* ════════════════════════════════
   COUNTDOWN
════════════════════════════════ */
.countdown-section {
    background:
        radial-gradient(ellipse 100% 80% at 50% 50%, rgba(90,15,28,0.45) 0%, transparent 65%),
        linear-gradient(180deg, #0a0205 0%, #0d0d0d 100%);
    color: white;
    padding: 110px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Soft ambient side glows */
.countdown-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 0% 50%,   rgba(90,15,28,0.2)  0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 100% 50%, rgba(90,15,28,0.15) 0%, transparent 60%);
    pointer-events: none;
}

/* Thin gold top border */
.countdown-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(198,167,94,0.4), transparent);
}

.countdown-eyebrow {
    font-size: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(198,167,94,0.55);
    margin-bottom: 12px;
    position: relative;
}

.countdown-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 6vw, 62px);
    letter-spacing: 8px;
    color: var(--gold-light);
    margin-bottom: 60px;
    position: relative;
    text-shadow: 0 0 60px rgba(198,167,94,0.2);
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    position: relative;
}

/* Colon separators */
.countdown-colon {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    color: rgba(198,167,94,0.2);
    line-height: 1;
    padding: 0 6px;
    margin-bottom: 24px;
    animation: colonPulse 1.4s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes colonPulse {
    0%, 100% { opacity: 0.2; }
    50%       { opacity: 0.55; }
}

/* Card */
.time-box {
    position: relative;
    min-width: 130px;
    padding: 2px;
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(198,167,94,0.25), rgba(198,167,94,0.05));
}

/* Inner fill — creates the framed border effect */
.time-box-inner {
    background: linear-gradient(160deg, #140408 0%, #0d0205 100%);
    border-radius: calc(var(--radius-md) - 2px);
    padding: 36px 32px 28px;
    position: relative;
    overflow: hidden;
}

/* Subtle inner top shimmer */
.time-box-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(198,167,94,0.35), transparent);
}

/* Corner ornament — top left */
.time-box-inner::after {
    content: '';
    position: absolute;
    bottom: 10px; right: 10px;
    width: 24px; height: 24px;
    border-right: 1px solid rgba(198,167,94,0.15);
    border-bottom: 1px solid rgba(198,167,94,0.15);
    border-radius: 0 0 4px 0;
}

.time-box:hover .time-box-inner {
    background: linear-gradient(160deg, #1c050a 0%, #110306 100%);
}
.time-box:hover {
    background: linear-gradient(145deg, rgba(198,167,94,0.45), rgba(198,167,94,0.12));
}

.time-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-shadow:
        0 0 30px rgba(198,167,94,0.35),
        0 2px 0 rgba(0,0,0,0.5);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.time-box p {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    font-weight: 600;
}

/* Date line below */
.countdown-date {
    margin-top: 52px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    position: relative;
}
.countdown-date::before,
.countdown-date::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: rgba(198,167,94,0.25);
    vertical-align: middle;
    margin: 0 16px;
}

@media (max-width: 600px) {
    .countdown-container { gap: 8px; }
    .countdown-colon { display: none; }
    .time-box { min-width: 110px; }
    .time-box-inner { padding: 26px 20px 20px; }
    .time-box h3 { font-size: 48px; }
    .countdown-date::before,
    .countdown-date::after { display: none; }
}


/* ════════════════════════════════
   MOBILE RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
    section { padding: 80px 5%; }
    nav { padding: 0 5%; }

    .menu-toggle {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background: rgba(45,5,15,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 0 40px;
        text-align: center;
        gap: 0;
        transform: translateY(-110%);
        opacity: 0;
        transition: transform 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
        border-bottom: var(--border-gold);
    }

    nav ul.active {
        transform: translateY(0);
        opacity: 1;
    }

    nav ul li { width: 100%; }
    nav a {
        display: block;
        padding: 14px 40px;
        font-size: 13px;
    }
    nav .register-btn {
        margin: 12px 40px 0;
        display: block;
        text-align: center;
    }

    .committees-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .committee-block img {
        width: 130px;
        height: 130px;
    }

    .about-stats {
        gap: 40px;
    }

    .principal-section::before,
    .principal-section::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-main { font-size: clamp(36px, 11vw, 58px); letter-spacing: 2px; }
    .hero-motto { font-size: 18px; }

    .hero-scroll-hint { display: none; }

    .time-box { padding: 24px 28px; min-width: 100px; }
    .time-box h3 { font-size: 42px; }

    .secretariat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .profile-card { height: 260px; }

    .profile-back {
        font-size: 11px;
        line-height: 1.55;
        padding: 16px 10px;
    }

    .about-stats {
        flex-direction: column;
        gap: 30px;
    }
}

/* ════════════════════════════════
   PRIZES SECTION
════════════════════════════════ */
.prizes-section {
    background: var(--dark);
    padding: 100px 6%;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.prizes-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(198,167,94,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(90,15,28,0.2) 0%, transparent 60%);
    pointer-events: none;
}

.prizes-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.prizes-eyebrow {
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    opacity: 0.7;
}

.prizes-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 6vw, 72px);
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 16px;
    text-shadow: 0 0 40px rgba(198,167,94,0.25);
}

.prizes-intro {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
    margin-bottom: 60px;
}

/* Prize Cards */
.prizes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.prize-card {
    border-radius: var(--radius-md);
    padding: 36px 20px;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.prize-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

.prize-card:hover {
    transform: translateY(-8px);
}
.prize-card:hover::before { opacity: 1; }

/* Individual card themes */
.prize-gold {
    background: linear-gradient(145deg, rgba(198,167,94,0.12), rgba(198,167,94,0.04));
    border-color: rgba(198,167,94,0.4);
}
.prize-gold::before {
    background: radial-gradient(ellipse at 50% 0%, rgba(198,167,94,0.15) 0%, transparent 70%);
}
/* Trophy laurel-arc ornament */
.prize-gold::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid rgba(198,167,94,0.18);
    box-shadow: inset 0 0 0 12px rgba(198,167,94,0.06);
    pointer-events: none;
}
.prize-gold:hover {
    border-color: rgba(198,167,94,0.7);
    box-shadow: 0 20px 60px rgba(198,167,94,0.15), 0 0 0 1px rgba(198,167,94,0.2);
}
.prize-gold .prize-label { color: rgba(226,201,138,0.55); }

.prize-silver {
    background: linear-gradient(145deg, rgba(220,220,220,0.08), rgba(200,200,200,0.03));
    border-color: rgba(200,200,200,0.25);
}
.prize-silver::before {
    background: radial-gradient(ellipse at 50% 0%, rgba(220,220,220,0.1) 0%, transparent 70%);
}
/* Medal ribbon lines */
.prize-silver::after {
    content: '';
    position: absolute;
    top: 14px;
    right: 16px;
    width: 22px;
    height: 3px;
    background: rgba(210,210,210,0.22);
    border-radius: 2px;
    box-shadow: 0 7px 0 rgba(210,210,210,0.16), 0 14px 0 rgba(210,210,210,0.10);
    pointer-events: none;
}
.prize-silver:hover {
    border-color: rgba(220,220,220,0.5);
    box-shadow: 0 20px 60px rgba(220,220,220,0.08);
}
.prize-silver .prize-label { color: rgba(200,200,200,0.55); }

.prize-bronze {
    background: linear-gradient(145deg, rgba(180,120,60,0.1), rgba(160,100,40,0.04));
    border-color: rgba(180,120,60,0.3);
}
.prize-bronze::before {
    background: radial-gradient(ellipse at 50% 0%, rgba(180,120,60,0.12) 0%, transparent 70%);
}
/* Diamond ornament */
.prize-bronze::after {
    content: '';
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(180,120,60,0.22);
    transform: rotate(45deg);
    pointer-events: none;
}
.prize-bronze:hover {
    border-color: rgba(180,120,60,0.55);
    box-shadow: 0 20px 60px rgba(180,120,60,0.1);
}
.prize-bronze .prize-label { color: rgba(200,145,90,0.55); }

.prize-mention {
    background: linear-gradient(145deg, rgba(150,150,180,0.08), rgba(120,120,160,0.03));
    border-color: rgba(150,150,180,0.22);
}
.prize-mention::before {
    background: radial-gradient(ellipse at 50% 0%, rgba(150,150,180,0.1) 0%, transparent 70%);
}
/* Star-dot cluster */
.prize-mention::after {
    content: '✦';
    position: absolute;
    bottom: 14px;
    right: 16px;
    font-size: 18px;
    color: rgba(150,150,180,0.18);
    line-height: 1;
    pointer-events: none;
}
.prize-mention:hover {
    border-color: rgba(150,150,180,0.45);
    box-shadow: 0 20px 60px rgba(150,150,180,0.08);
}
.prize-mention .prize-label { color: rgba(170,170,200,0.55); }

/* ── Best Photographer — cinematic teal/lens theme ── */
.prize-photographer {
    background: linear-gradient(145deg, rgba(30,160,150,0.12), rgba(10,100,100,0.04));
    border-color: rgba(30,200,185,0.35);
    position: relative;
    overflow: hidden;
}
.prize-photographer::before {
    background: radial-gradient(ellipse at 50% 0%, rgba(30,200,185,0.18) 0%, transparent 70%);
}
.prize-photographer::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(30,200,185,0.12);
    pointer-events: none;
}
.prize-photographer:hover {
    border-color: rgba(30,200,185,0.65);
    box-shadow: 0 20px 60px rgba(30,200,185,0.14), 0 0 0 1px rgba(30,200,185,0.18);
}
.prize-photographer .prize-label {
    color: rgba(130,230,220,0.6);
}
.prize-photographer .prize-amount {
    color: #62e8dc;
    text-shadow: 0 0 20px rgba(30,200,185,0.4);
}

/* ── Best Journalist — editorial ink/navy theme ── */
.prize-journalist {
    background: linear-gradient(145deg, rgba(80,100,200,0.1), rgba(40,60,160,0.04));
    border-color: rgba(110,130,230,0.32);
    position: relative;
    overflow: hidden;
}
.prize-journalist::before {
    background: radial-gradient(ellipse at 50% 0%, rgba(110,130,230,0.16) 0%, transparent 70%);
}
.prize-journalist::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 14px;
    width: 28px;
    height: 3px;
    background: rgba(110,130,230,0.25);
    border-radius: 2px;
    box-shadow: 0 6px 0 rgba(110,130,230,0.18), 0 12px 0 rgba(110,130,230,0.1);
    pointer-events: none;
}
.prize-journalist:hover {
    border-color: rgba(110,130,230,0.6);
    box-shadow: 0 20px 60px rgba(80,100,200,0.14), 0 0 0 1px rgba(110,130,230,0.18);
}
.prize-journalist .prize-label {
    color: rgba(160,175,240,0.6);
}
.prize-journalist .prize-amount {
    color: #a0afff;
    text-shadow: 0 0 20px rgba(100,120,230,0.4);
}

.prize-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.prize-label {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
    margin-bottom: 14px;
}

.prize-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    letter-spacing: 2px;
    color: var(--gold-light);
    line-height: 1;
}

.prize-gold .prize-amount { color: var(--gold-light); }
.prize-silver .prize-amount { color: #d4d4d4; }
.prize-bronze .prize-amount { color: #d4935a; }
.prize-mention .prize-amount { color: #a8a8c4; }

/* Instagram grid */
.prizes-instagram {
    border-top: 1px solid rgba(198,167,94,0.12);
    padding-top: 60px;
}

.prizes-ig-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 24px;
}

.prizes-ig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    max-width: 560px;
    margin: 0 auto 28px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(198,167,94,0.2);
}

.prizes-ig-post {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, rgba(198,167,94,0.08), rgba(90,15,28,0.2));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

/* Subtle seamless gradient to imply the 3-panel banner */
.prizes-ig-post:nth-child(1) {
    background: linear-gradient(135deg, rgba(90,15,28,0.5) 0%, rgba(120,30,50,0.3) 100%);
}
.prizes-ig-post:nth-child(2) {
    background: linear-gradient(135deg, rgba(120,30,50,0.3) 0%, rgba(120,30,50,0.3) 100%);
}
.prizes-ig-post:nth-child(3) {
    background: linear-gradient(135deg, rgba(120,30,50,0.3) 0%, rgba(198,167,94,0.2) 100%);
}

.prizes-ig-post::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(198,167,94,0.04) 0%, rgba(198,167,94,0.01) 100%);
}

.prizes-ig-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.prizes-ig-overlay span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.prizes-ig-post:hover .prizes-ig-overlay { opacity: 1; }
.prizes-ig-post:hover { filter: brightness(1.1); }

/* Instagram icon in each cell when not hovered */
.prizes-ig-post .prizes-ig-overlay svg {
    color: rgba(255,255,255,0.6);
}

/* Always-visible subtle IG icon */
.prizes-ig-post::before {
    content: '';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.prizes-ig-center {
    border-left: 1px solid rgba(198,167,94,0.15);
    border-right: 1px solid rgba(198,167,94,0.15);
}

.prizes-note {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-top: 10px;
    letter-spacing: 0.3px;
}

.prizes-note a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(198,167,94,0.3);
    padding-bottom: 1px;
    transition: border-color 0.3s ease, color 0.3s ease;
}
.prizes-note a:hover {
    color: var(--gold-light);
    border-color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    .prizes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .prize-card { padding: 28px 16px; }
    .prize-amount { font-size: 34px; }

    .prizes-ig-grid {
        max-width: 340px;
    }
}

@media (max-width: 480px) {
    .prizes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ════════════════════════════════
   GALLERY SECTION — Masonry columns
════════════════════════════════ */
.gallery-section {
    background: #161616;
    padding: 100px 6%;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(198,167,94,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.gallery-eyebrow {
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #c6a75e;
    margin-bottom: 12px;
    opacity: 0.7;
}

.gallery-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 6vw, 72px);
    color: #c6a75e;
    letter-spacing: 4px;
    margin-bottom: 14px;
    text-shadow: 0 0 40px rgba(198,167,94,0.2);
}

.gallery-intro {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 50px;
}

.gallery-columns {
    columns: 4;
    column-gap: 8px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: zoom-in;
    display: block;
    border: 1px solid rgba(198,167,94,0.1);
    transition: border-color 0.3s ease;
}
.gallery-item:hover {
    border-color: rgba(198,167,94,0.35);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), filter 0.4s ease;
    filter: brightness(0.88) contrast(1.08) saturate(0.82) sepia(0.1);
}
.gallery-item:hover img {
    transform: scale(1.04);
    filter: brightness(0.75) contrast(1.1) saturate(0.9) sepia(0.06);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(90,15,28,0.15) 0%, rgba(198,167,94,0.05) 100%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.4s ease;
}
.gallery-item:hover::after { opacity: 0.4; }

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #e2c98a;
    font-weight: 600;
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.94);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}
.gallery-lightbox.active { opacity: 1; pointer-events: all; }
.gallery-lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.8);
    transform: scale(0.96);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.gallery-lightbox.active img { transform: scale(1); }

.gallery-lightbox-close {
    position: absolute;
    top: 20px; right: 26px;
    color: rgba(255,255,255,0.55);
    font-size: 34px;
    cursor: pointer;
    background: none;
    border: none;
    font-weight: 300;
    transition: color 0.2s ease;
}
.gallery-lightbox-close:hover { color: #c6a75e; }

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: white;
    font-size: 20px;
    width: 48px; height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.gallery-lightbox-nav:hover {
    background: rgba(198,167,94,0.15);
    border-color: #c6a75e;
    color: #c6a75e;
}
.gallery-lightbox-prev { left: 20px; }
.gallery-lightbox-next { right: 20px; }

.gallery-view-all {
    display: inline-block;
    padding: 13px 36px;
    border: 1px solid rgba(198,167,94,0.35);
    border-radius: 50px;
    color: #c6a75e;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.gallery-view-all:hover {
    background: #c6a75e;
    color: #3d0912;
    border-color: #c6a75e;
    box-shadow: 0 6px 30px rgba(198,167,94,0.3);
    transform: translateY(-2px);
}

@media (max-width: 1024px) { .gallery-columns { columns: 3; } }
@media (max-width: 640px) {
    .gallery-columns { columns: 2; column-gap: 5px; }
    .gallery-item { margin-bottom: 5px; }
    .gallery-lightbox-nav { display: none; }
}

/* ════════════════════════════════
   DROPDOWN NAVBAR
════════════════════════════════ */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    user-select: none;
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.nav-dropdown-trigger:hover {
    color: var(--gold-light, #e2c98a);
}

.nav-caret {
    font-size: 9px;
    opacity: 0.6;
    transition: transform 0.25s ease, opacity 0.25s ease;
    display: inline-block;
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown.open .nav-caret {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: rgba(30,4,10,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(198,167,94,0.2);
    border-radius: var(--radius-md);
    padding: 8px 0;
    min-width: 190px;
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 2000;
    box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}

/* Invisible bridge: keeps hover alive while mouse travels from trigger to menu */
.nav-dropdown-menu::after {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}

/* Arrow tip */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: rgba(30,4,10,0.97);
    border-left: 1px solid rgba(198,167,94,0.2);
    border-top: 1px solid rgba(198,167,94,0.2);
    rotate: 45deg;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 1024px) {
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.open .nav-dropdown-menu {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

.nav-dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
    border-radius: 0;
}
.nav-dropdown-menu li a::after { display: none; }
.nav-dropdown-menu li a:hover {
    color: var(--gold-light);
    background: rgba(198,167,94,0.06);
    padding-left: 26px;
}

/* ════════════════════════════════
   MOBILE DRAWER
════════════════════════════════ */
#nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1400;
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
#nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

#nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100%;
    height: 100svh;
    background: rgba(15,2,6,0.99);
    border-left: 1px solid rgba(198,167,94,0.15);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    overflow: hidden;
}

/* Drawer structural sections */
.drawer-header {
    flex-shrink: 0;
    position: relative;
}

.drawer-body {
    flex: 1 1 auto;
    min-height: 0;          /* essential — lets flex item shrink so scroll kicks in */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 20px 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* styled scrollbar to match gold theme */
    scrollbar-width: thin;
    scrollbar-color: rgba(198,167,94,0.4) transparent;
}
.drawer-body::-webkit-scrollbar { width: 3px; }
.drawer-body::-webkit-scrollbar-track { background: transparent; }
.drawer-body::-webkit-scrollbar-thumb {
    background: rgba(198,167,94,0.4);
    border-radius: 10px;
}

.drawer-footer {
    flex-shrink: 0;
}
#nav-drawer.open { transform: translateX(0); }

/* Fixed top bar: close button + logo */
#nav-drawer-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: 1px solid rgba(198,167,94,0.2);
    color: rgba(255,255,255,0.5);
    font-size: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, border-color 0.2s ease;
    z-index: 10;
}
#nav-drawer-close:hover { color: var(--gold); border-color: rgba(198,167,94,0.5); }

.drawer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px 14px;
    padding-right: 56px;
    border-bottom: 1px solid rgba(198,167,94,0.1);
    flex-shrink: 0;
}
.drawer-logo img {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 0 6px rgba(198,167,94,0.4));
}
.drawer-logo span {
    font-family: 'Aboreto', serif;
    font-size: 14px;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #fff 0%, var(--gold-light) 60%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Scrollable middle area — legacy selector kept for compatibility */
.drawer-nav {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-group { display: flex; flex-direction: column; gap: 2px; }

.drawer-group-label {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(198,167,94,0.5);
    margin-bottom: 6px;
    padding-left: 4px;
}

.drawer-link {
    display: block;
    padding: 10px 12px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
    font-weight: 500;
}
.drawer-link:hover {
    color: var(--gold-light);
    background: rgba(198,167,94,0.06);
    padding-left: 18px;
}

/* Fixed bottom register button */
.drawer-register {
    display: block;
    flex-shrink: 0;
    flex-grow: 0;
    margin: 0;
    padding: 16px 20px;
    background: var(--gold);
    color: var(--maroon-deep);
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-top: 1px solid rgba(198,167,94,0.2);
    transition: background 0.3s ease;
}
.drawer-register:hover {
    background: var(--gold-light);
}

/* Hide desktop nav on mobile, show hamburger */
@media (max-width: 1024px) {
    #nav-links { display: none !important; }
    .menu-toggle { display: block; }
    .nav-dropdown-menu,
    .nav-dropdown-menu * {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}
@media (min-width: 1025px) {
    #nav-drawer, #nav-overlay, .menu-toggle { display: none !important; }
}

/* ════════════════════════════════
   REGISTRATION INFO STRIP
════════════════════════════════ */
.reg-info-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 28px auto 36px;
    border: 1px solid rgba(198,167,94,0.25);
    border-radius: var(--radius-md);
    overflow: hidden;
    max-width: 400px;
    background: rgba(198,167,94,0.04);
}

.reg-info-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 18px 20px;
}

.reg-info-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
}

.reg-info-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--gold-light);
    line-height: 1;
}

.reg-info-divider {
    width: 1px;
    height: 50px;
    background: rgba(198,167,94,0.2);
    flex-shrink: 0;
}

/* ════════════════════════════════
   VENUE SECTION
════════════════════════════════ */
.venue-section {
    background: var(--dark-3);
    padding: 100px 6%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.venue-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(90,15,28,0.18) 0%, transparent 60%);
    pointer-events: none;
}

.venue-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.venue-eyebrow {
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 10px;
}

.venue-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 7vw, 72px);
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 52px;
    text-shadow: 0 0 40px rgba(198,167,94,0.2);
}

.venue-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 28px;
    align-items: stretch;
    text-align: left;
}

.venue-card {
    background: rgba(198,167,94,0.04);
    border: 1px solid rgba(198,167,94,0.2);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.venue-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(198,167,94,0.4), transparent);
}

.venue-icon {
    font-size: 32px;
    line-height: 1;
}

.venue-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.venue-info p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
}

.venue-directions-btn {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid rgba(198,167,94,0.4);
    border-radius: var(--radius-pill);
    color: var(--gold);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: var(--transition);
    background: rgba(198,167,94,0.05);
}
.venue-directions-btn:hover {
    background: var(--gold);
    color: var(--maroon-deep);
    box-shadow: 0 4px 20px rgba(198,167,94,0.25);
}

.venue-map-embed {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(198,167,94,0.15);
    min-height: 300px;
}

.venue-map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: block;
    border: none;
    filter: grayscale(30%) invert(5%) sepia(10%);
}

@media (max-width: 768px) {
    .venue-grid { grid-template-columns: 1fr; }
    .venue-map-embed { min-height: 240px; }
    .venue-map-embed iframe { min-height: 240px; }
    .reg-info-strip { max-width: 300px; }
}

/* ════════════════════════════════
   SCROLL PROGRESS BAR
════════════════════════════════ */
#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, var(--maroon-mid), var(--gold), var(--gold-light));
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(198,167,94,0.5);
}

/* ════════════════════════════════
   BACK TO TOP
════════════════════════════════ */
#back-to-top {
    position: fixed;
    bottom: 36px; right: 36px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(198,167,94,0.12);
    border: 1px solid rgba(198,167,94,0.4);
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: none;
}
#back-to-top.visible {
    opacity: 1; transform: translateY(0); pointer-events: all;
}
#back-to-top:hover {
    background: rgba(198,167,94,0.22);
    box-shadow: 0 0 20px rgba(198,167,94,0.3);
    border-color: var(--gold);
}

/* ════════════════════════════════
   ACTIVE NAV HIGHLIGHT
════════════════════════════════ */
nav a.nav-active:not(.register-btn) { color: var(--gold-light); }
nav a.nav-active:not(.register-btn)::after { width: 70%; }

/* ════════════════════════════════
   HERO PARTICLE CANVAS
════════════════════════════════ */
#hero-particles {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ════════════════════════════════
   FOOTER RIGHTS
════════════════════════════════ */
.footer-rights {
    margin-top: 8px;
    font-size: 10px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.12);
    text-transform: uppercase;
}

/* ════════════════════════════════
   ITINERARY SECTION
════════════════════════════════ */
.itinerary-section {
    background: var(--dark-2);
    padding: 100px 6%;
    text-align: center;
    position: relative;
    overflow: hidden;
}
 
.itinerary-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(90,15,28,0.2) 0%, transparent 60%);
    pointer-events: none;
}
 
.itinerary-container {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}
 
.itinerary-eyebrow {
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 10px;
}
 
.itinerary-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 7vw, 72px);
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 48px;
    text-shadow: 0 0 40px rgba(198,167,94,0.2);
}
 
/* Day tabs */
.itinerary-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 44px;
}
 
.itinerary-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(198,167,94,0.25);
    background: rgba(255,255,255,0.02);
    color: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}
.itinerary-tab:hover {
    border-color: rgba(198,167,94,0.5);
    color: rgba(255,255,255,0.75);
}
.itinerary-tab.active {
    border-color: rgba(198,167,94,0.6);
    background: rgba(198,167,94,0.08);
    color: var(--gold-light);
    box-shadow: 0 4px 24px rgba(198,167,94,0.1);
}
 
.tab-day {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 3px;
}
.tab-date {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}
 
/* Panels */
.itinerary-panel {
    display: none;
    animation: fadeUp 0.5s ease forwards;
}
.itinerary-panel.active { display: block; }
 
/* Dress code badge */
.itinerary-dress {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    border: 1px solid rgba(198,167,94,0.18);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    margin-bottom: 44px;
    background: rgba(198,167,94,0.04);
}
.itinerary-dress strong {
    color: var(--gold-light);
    font-weight: 600;
    letter-spacing: 2px;
}
.dress-icon { font-size: 16px; }
 
/* Timeline */
.itinerary-timeline {
    position: relative;
    text-align: left;
}
 
/* Vertical centre line */
.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(198,167,94,0.25) 10%, rgba(198,167,94,0.25) 90%, transparent);
    transform: translateX(-50%);
}
 
.timeline-item {
    display: grid;
    grid-template-columns: 1fr 24px 1fr;
    align-items: center;
    gap: 0 20px;
    margin-bottom: 10px;
    position: relative;
}
 
.timeline-time {
    text-align: right;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    padding: 18px 0;
    font-weight: 600;
    transition: color 0.3s ease;
}
 
.timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(198,167,94,0.3);
    border: 1px solid rgba(198,167,94,0.5);
    justify-self: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
 
.timeline-event {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}
 
.event-title {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
}
 
/* Highlighted rows — committee sessions & ceremonies */
.timeline-item.highlight .timeline-time {
    color: rgba(198,167,94,0.7);
}
.timeline-item.highlight .timeline-dot {
    background: var(--gold);
    border-color: var(--gold-light);
    box-shadow: 0 0 10px rgba(198,167,94,0.4);
    width: 12px;
    height: 12px;
}
.timeline-item.highlight .timeline-event {
    background: rgba(198,167,94,0.06);
    border-color: rgba(198,167,94,0.2);
}
.timeline-item.highlight .event-title {
    color: var(--gold-light);
}
 
/* Hover states */
.timeline-item:hover .timeline-dot {
    background: var(--gold-light);
    box-shadow: 0 0 12px rgba(198,167,94,0.5);
}
.timeline-item:hover .event-title { color: #fff; }
.timeline-item:hover .timeline-time { color: rgba(255,255,255,0.6); }
 
/* Mobile */
@media (max-width: 600px) {
    .itinerary-timeline::before {
        left: 10px;
        transform: none;
    }
    .timeline-item {
        display: grid;
        grid-template-columns: 20px 1fr;
        grid-template-rows: auto auto;
        gap: 0 14px;
        align-items: start;
    }
    .timeline-time {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
        font-size: 10px;
        padding: 4px 0 2px;
        color: rgba(255,255,255,0.35);
    }
    .timeline-item.highlight .timeline-time {
        color: rgba(198,167,94,0.65);
    }
    .timeline-dot {
        grid-column: 1;
        grid-row: 1 / 3;
        justify-self: center;
        margin-top: 6px;
    }
    .timeline-event {
        grid-column: 2;
        grid-row: 2;
        margin-bottom: 4px;
    }
    .itinerary-tabs {
        flex-direction: column;
        align-items: center;
    }
}
