:root {
    /* Color Palette from Logo */
    --clr-bg: #fdfaf4; /* Cream background */
    --clr-maroon: #821021; /* Deep maroon/wine */
    --clr-terracotta: #cc3d24; /* Terracotta/Red-orange */
    --clr-mustard: #eebb45; /* Yellow/Mustard */
    --clr-teal: #22939b; /* Teal/Cyan */
    --clr-dark: #2a0b10; /* Very dark shade for text */
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Layout */
    --max-width: 1200px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg);
    color: var(--clr-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 15a35 35 0 0 1 0 70 35 35 0 0 1 0-70zm0 5a30 30 0 0 0 0 60 30 30 0 0 0 0-60zm0 10a20 20 0 0 1 0 40 20 20 0 0 1 0-40zm0 5a15 15 0 0 0 0 30 15 15 0 0 0 0-30z' fill='%23eebb45' fill-opacity='0.03' fill-rule='evenodd'/%3E%3Ccircle cx='50' cy='50' r='3' fill='%23cc3d24' fill-opacity='0.05'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--clr-maroon);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    overflow-x: hidden; /* Prevent horizontal scroll on containers */
}

/* Ensure images never overflow */
img {
    max-width: 100%;
    height: auto;
}

/* --- Typography Utilities --- */
.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 140px;
    height: 18px;
    margin: 0.5rem auto 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M0 10 Q 25 0, 50 10 T 100 10' fill='none' stroke='%23eebb45' stroke-width='6' stroke-linecap='round'/%3E%3Cpath d='M10 15 Q 35 5, 60 15' fill='none' stroke='%23cc3d24' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    background-color: transparent;
}

/* --- Buttons --- */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-family: var(--font-body);
    text-align: center;
}

.btn-primary {
    background-color: var(--clr-terracotta);
    color: white;
    box-shadow: 0 4px 15px rgba(204, 61, 36, 0.3);
}

.btn-primary:hover {
    background-color: var(--clr-maroon);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(130, 16, 33, 0.4);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-maroon);
    border: 2px solid var(--clr-maroon);
}

.btn-secondary:hover {
    background-color: var(--clr-maroon);
    color: white;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(253, 250, 244, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    padding: 1rem 5%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    height: 50px;
    width: auto;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.nav-typography {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    font-weight: 800;
    color: var(--clr-maroon);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-terracotta);
    transition: width var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;    /* Reduced from 30px */
    height: 16px;  /* Reduced from 21px */
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    height: 2px;   /* Reduced from 3px */
    width: 100%;
    background-color: var(--clr-maroon);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Menu Toggle Animations */
.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg); /* Adjusted translation for smaller height */
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg); /* Adjusted translation */
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 5% 40px; /* Offset for fixed navbar */
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 10;
    position: relative;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(238, 187, 69, 0.2);
    color: var(--clr-maroon);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--clr-mustard);
}

.hero-logo-center {
    display: block;
    width: 250px;
    height: auto;
    object-fit: contain;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
    mix-blend-mode: multiply;
}

.hero-typography {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
    margin-bottom: 1.5rem;
}

.highlight-text {
color: var(--clr-terracotta);
font-style: italic;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.insta-hero-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: transparent;
    border: 2px solid var(--clr-maroon);
    color: var(--clr-maroon);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.insta-hero-btn:hover {
    background: var(--clr-maroon);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 43, 43, 0.2);
}

.insta-hero-btn svg {
    width: 20px;
    height: 20px;
}

/* --- Ticker Marquee --- */
.ticker-wrapper {
    width: 100vw;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 2rem; /* Adjusted for better spacing */
    padding: 1rem 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(139, 43, 43, 0.04);
}

.ticker-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-terracotta);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.ticker-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scrollTicker 35s linear infinite;
    padding-left: 2rem;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-card {
    background: var(--clr-maroon);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    min-width: 220px;
    text-align: left;
    color: white;
    box-shadow: 0 4px 15px rgba(139, 43, 43, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    transition: transform var(--transition-fast);
}

.ticker-card .time {
    font-size: 0.75rem;
    color: var(--clr-mustard);
    font-weight: 700;
}

.ticker-card h4 {
    font-size: 0.95rem;
    margin: 0;
    color: white;
}

.ticker-card .venue {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Abstract Blobs for Hero Background */
.hero-graphics {
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 100%;
z-index: 1;
}

.blob {
position: absolute;
border-radius: 50%;
filter: blur(60px);
opacity: 0.6;
animation: float 10s infinite ease-in-out alternate;
}

.blob-maroon {
width: 400px;
height: 400px;
background-color: var(--clr-maroon);
top: 10%;
right: 10%;
animation-delay: 0s;
}

.blob-mustard {
width: 300px;
height: 300px;
background-color: var(--clr-mustard);
bottom: 20%;
right: 25%;
animation-delay: -2s;
}

.blob-teal {
width: 250px;
height: 250px;
background-color: var(--clr-teal);
top: 30%;
right: -5%;
animation-delay: -4s;
}

.blob-terracotta {
width: 350px;
height: 350px;
background-color: var(--clr-terracotta);
bottom: 5%;
right: 5%;
animation-delay: -6s;
}

@keyframes float {
0% { transform: translate(0, 0) scale(1); }
100% { transform: translate(-30px, 30px) scale(1.1); }
}

/* --- About Section --- */
.about {
padding: var(--spacing-xl) 0;
background-color: white;
}

.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.about-text h2 {
font-size: 3rem;
margin-bottom: 1.5rem;
}

.about-text p {
font-size: 1.1rem;
color: #555;
margin-bottom: 2rem;
}

.stats {
display: flex;
gap: 3rem;
}

.stat-item {
display: flex;
flex-direction: column;
}

.stat-number {
font-family: var(--font-heading);
font-size: 3rem;
font-weight: 800;
color: var(--clr-teal);
line-height: 1;
}

.stat-label {
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 0.9rem;
color: var(--clr-mustard);
margin-top: 0.5rem;
}

.about-visual {
position: relative;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    object-fit: contain; /* ensures full image is visible */
    max-height: 80vh; /* caps it from being too tall on very large images without cropping */
}

/* --- Categories Section --- */
.categories {
padding: var(--spacing-xl) 0;
background-color: var(--clr-bg);
}

.category-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}

.category-card {
background: white;
padding: 2.5rem 2rem;
border-radius: 20px;
text-align: center;
box-shadow: 0 10px 30px rgba(0,0,0,0.03);
transition: var(--transition-smooth);
position: relative;
overflow: hidden;
z-index: 1;
}

.category-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--clr-maroon);
z-index: -1;
transform: scaleY(0);
transform-origin: bottom;
transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card[data-color="mustard"]::before { background: var(--clr-mustard); }
.category-card[data-color="terracotta"]::before { background: var(--clr-terracotta); }
.category-card[data-color="teal"]::before { background: var(--clr-teal); }

.category-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
color: white;
}

.category-card:hover::before {
transform: scaleY(1);
}

.category-card:hover h3,
.category-card:hover p,
.category-card:hover .explore-link {
color: white;
}

.card-icon {
font-size: 3rem;
margin-bottom: 1.5rem;
display: inline-block;
width: 80px;
height: 80px;
line-height: 80px;
background: var(--clr-bg);
border-radius: 50%;
box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.category-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
transition: color 0.3s;
}

.category-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.event-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.4s ease-out, margin 0.3s ease;
    text-align: left;
}

.event-list.expanded {
    max-height: 500px; /* Arbitrary large number to allow content to reflow */
    opacity: 1;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.event-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.95rem;
    color: var(--clr-dark);
}

.category-card:hover .event-list li {
    color: white;
    border-bottom-color: rgba(255,255,255,0.2);
}

.explore-btn {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--clr-terracotta);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.category-card:hover .explore-btn {
    color: white;
}

/* --- Schedule Section --- */
.schedule {
padding: var(--spacing-xl) 0;
background-color: white;
}

.schedule-tabs {
    display: flex;
    justify-content: flex-start; /* Start from left on overflow */
    gap: 1rem;
    margin-bottom: 3rem;
    overflow-x: auto; /* Enable horizontal scrolling */
    padding-bottom: 10px; /* Space for scrollbar */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scrollbar-width: none; /* Hide scrollbar Firefox */
}
.schedule-tabs::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

/* Wrapper for horizontal scrollable items on mobile */
.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tab-btn {
padding: 0.8rem 2rem;
background: transparent;
border: 2px solid #eaeaea;
border-radius: 50px;
font-family: var(--font-body);
font-weight: 600;
font-size: 1.1rem;
cursor: pointer;
transition: var(--transition-fast);
color: #555;
flex: 0 0 auto;
min-width: 240px;
white-space: nowrap;
display: flex;
align-items: center;
justify-content: center;
}

.tab-btn.active, .tab-btn:hover {
background: var(--clr-teal);
color: white;
border-color: var(--clr-teal);
box-shadow: 0 4px 15px rgba(34, 147, 155, 0.3);
}

.schedule-item {
display: grid;
grid-template-columns: 150px 1fr;
gap: 2rem;
padding: 1.5rem;
border-bottom: 1px solid #eaeaea;
transition: background 0.3s;
border-radius: 10px;
}

.schedule-item:hover {
background: rgba(253, 250, 244, 1);
}

.time {
font-family: var(--font-heading);
font-size: 1.25rem;
font-weight: 600;
color: var(--clr-terracotta);
}

.event-details h3 {
font-size: 1.3rem;
margin-bottom: 0.5rem;
color: var(--clr-dark);
}

.event-details p {
color: #666;
font-size: 0.95rem;
}

.event-venue {
display: inline-block;
margin-top: 0.5rem;
font-size: 0.85rem;
padding: 0.3rem 0.8rem;
background: var(--clr-bg);
border-radius: 20px;
color: var(--clr-maroon);
font-weight: 600;
}

/* --- Register Section --- */
.register {
padding: var(--spacing-xl) 0;
background: linear-gradient(135deg, var(--clr-maroon), #4a0711);
color: white;
}

.register-card {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.register-info h2 {
color: var(--clr-mustard);
font-size: 3rem;
margin-bottom: 1.5rem;
}

.register-info p {
font-size: 1.1rem;
margin-bottom: 2rem;
opacity: 0.9;
}

.benefit-list {
list-style: none;
}

.benefit-list li {
margin-bottom: 1rem;
display: flex;
align-items: center;
font-size: 1.1rem;
}

.benefit-list li::before {
content: '✓';
display: inline-flex;
justify-content: center;
align-items: center;
width: 24px;
height: 24px;
background: var(--clr-mustard);
color: var(--clr-maroon);
border-radius: 50%;
margin-right: 1rem;
font-size: 0.8rem;
font-weight: bold;
}

.register-form-container {
background: white;
padding: 3rem;
border-radius: 20px;
color: var(--clr-dark);
box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.form-group {
margin-bottom: 1.5rem;
}

.form-group label {
display: block;
font-weight: 600;
margin-bottom: 0.5rem;
color: var(--clr-maroon);
}

.form-group input,
.form-group select {
width: 100%;
padding: 1rem;
border: 2px solid #eaeaea;
border-radius: 10px;
font-family: var(--font-body);
font-size: 1rem;
transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
outline: none;
border-color: var(--clr-teal);
}

/* --- Footer Banner --- */
.footer-banner {
background: linear-gradient(135deg, var(--clr-maroon), var(--clr-terracotta));
color: var(--clr-mustard);
text-align: center;
padding: 3rem 1.5rem;
font-family: var(--font-heading);
position: relative;
overflow: hidden;
}

.footer-banner h2 {
color: var(--clr-mustard);
font-size: 2.2rem;
position: relative;
z-index: 2;
}

.footer-banner::before {
content: '';
position: absolute;
top: 0; left: 0; width: 100%; height: 100%;
background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L35 25L55 30L35 35L30 55L25 35L5 30L25 25Z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
pointer-events: none;
z-index: 1;
}

/* --- Footer --- */
footer {
background: var(--clr-dark);
color: rgba(255,255,255,0.7);
padding: 4rem 0 2rem;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 3rem;
padding-bottom: 2rem;
border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h2 {
color: white;
font-style: italic;
margin-bottom: 0.5rem;
}

.footer-links {
display: flex;
gap: 2rem;
}

.footer-links a {
color: rgba(255, 255, 255, 0.7);
font-size: 0.9rem;
transition: var(--transition-fast);
}

.footer-links a:hover {
color: var(--clr-mustard);
}

.copyright-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.copyright {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 500;
}

.developer-socials {
    display: flex;
    gap: 1.5rem;
}

.developer-socials a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.developer-socials a:hover {
    color: var(--clr-mustard);
    transform: translateY(-3px);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .about-grid, .register-card { grid-template-columns: 1fr; gap: 3rem; }
    .hero-graphics { opacity: 0.3; width: 100%; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    
    .nav-links { 
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--clr-bg);
        width: 70%;
        height: 100vh;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
        gap: 3rem;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
    }
    
    .nav-links a {
        font-size: 1.5rem;
    }
    
    .hero-title { font-size: 2.8rem; }
    .hero {
        padding-top: 120px;
        padding-left: 0;
        padding-right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .hero-content {
        width: 100%;
        text-align: center;
        margin: 0 auto;
        padding: 0 5%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-actions {
        justify-content: center;
        width: 100%;
    }
    .hero-logo-center {
        width: 180px; 
        margin-bottom: 1.5rem;
    }
    .hero-typography {
        max-width: 90%;
        margin-bottom: 1.5rem;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    /* schedule scrolling logic below */
    
    /* Horizontal scrolling for Schedule Items on Mobile */
    .schedule-list {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1.5rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1.5rem;
    }
    
    .schedule-list::-webkit-scrollbar {
        height: 6px;
    }
    .schedule-list::-webkit-scrollbar-thumb {
        background-color: var(--clr-mustard);
        border-radius: 10px;
    }
    
    .schedule-item {
        grid-template-columns: 1fr; 
        gap: 0.5rem; 
        min-width: 280px; /* Fixed width for cards so they can scroll horizontally */
        scroll-snap-align: start;
        border: 1px solid #eaeaea;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .time {
        font-size: 1.1rem;
    }
    
    /* About section fixes for mobile */
    .about {
        padding: var(--spacing-md) 0; /* Reduce padding to fit in viewable area */
    }
    
    .about-text {
        text-align: center;
    }
    
    .stats {
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 2.2rem; /* Reduce size so 'Exciting' isn't cut off */
    }
    
    .footer-content { flex-direction: column; gap: 2rem; text-align: center; }
}

/* --- Added Schedule Contact Styles --- */
.contact-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(0,0,0,0.1);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: #25D366;
    color: white !important;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.expand-hint {
    font-size: 0.85rem;
    color: var(--clr-terracotta);
    margin-top: 0.8rem;
    font-weight: 600;
    opacity: 0.8;
}

.schedule-item:hover .expand-hint {
    opacity: 1;
    text-decoration: underline;
}

/* --- Rules Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--clr-bg);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--clr-maroon);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--clr-maroon);
    color: white;
}

#modal-title {
    margin-bottom: 1.5rem;
    color: var(--clr-maroon);
    font-size: 2rem;
    padding-right: 2rem;
}

.modal-rules-list {
    list-style: none;
    padding: 0;
}

.modal-rules-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
    color: #444;
}

.modal-rules-list li::before {
    content: "•";
    color: var(--clr-mustard);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -4px;
}

.event-item {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s, background-color 0.3s, padding-left 0.3s;
}

.category-card:hover .event-list li.event-item:hover {
    color: var(--clr-mustard);
    padding-left: 5px;
}

.info-icon {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-left: 10px;
}
.event-item:hover .info-icon {
    opacity: 1;
}

/* Adjust mobile styles for modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }
    #modal-title {
        font-size: 1.5rem;
    }
}
