/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --mvbl-navy: #0f172a;
    --mvbl-blue: #1e40af;
    --mvbl-blue-light: #2563eb;
    --mvbl-green: #16a34a;
    --mvbl-green-light: #22c55e;
    --mvbl-surface: #f2f8ff;
    --mvbl-surface-alt: #e8f5ef;
    --mvbl-banner-height: 46px;
    --mvbl-header-height: 90px;
    --mvbl-top-offset: calc(var(--mvbl-banner-height) + var(--mvbl-header-height));
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: linear-gradient(135deg, #f7fbff 0%, #ecf7ff 55%, #eefcf3 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--mvbl-navy) 0%, var(--mvbl-blue) 60%, var(--mvbl-blue-light) 100%);
    color: white;
    padding: 0.85rem 0;
    position: fixed;
    top: var(--mvbl-banner-height);
    width: 100%;
    z-index: 1000;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: var(--mvbl-header-height);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #d1fae5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text span {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 0.7rem;
    align-items: center;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 9px 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--mvbl-green-light), var(--mvbl-green));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav a:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.nav a:hover::before {
    width: 80%;
}

.nav a.active {
    background: rgba(34, 197, 94, 0.24);
    color: #ffffff;
}

/* Main Content */
main {
    margin-top: 0;
    padding-top: var(--mvbl-top-offset);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--mvbl-navy) 0%, var(--mvbl-blue) 34%, var(--mvbl-blue-light) 66%, var(--mvbl-green-light) 100%);
    color: white;
    padding: 5.5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="bowling" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="8" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23bowling)"/></svg>');
    opacity: 0.1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.hero-logo img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    animation: float 3s ease-in-out infinite;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #bbf7d0, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite alternate;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes glow {
    0% { text-shadow: 0 0 20px rgba(34, 197, 94, 0.3); }
    100% { text-shadow: 0 0 30px rgba(34, 197, 94, 0.5); }
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Demo Disclaimer Banner */
.demo-disclaimer {
    background: linear-gradient(135deg, #ecfdf5, #dcfce7);
    border-bottom: 2px solid var(--mvbl-green);
    padding: 0.6rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1002;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.demo-disclaimer .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.demo-disclaimer .icon {
    font-size: 1rem;
}

.demo-disclaimer span {
    color: #14532d;
    font-weight: 500;
    text-align: center;
    font-size: 0.88rem;
}

.demo-disclaimer strong {
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(45deg, var(--mvbl-green), var(--mvbl-green-light));
    color: white;
    border: 2px solid transparent;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    color: var(--mvbl-blue);
}

/* Sections */
.schools, .schedule, .standings {
    padding: 5rem 0;
    position: relative;
}

.schools {
    background: linear-gradient(135deg, #ffffff 0%, var(--mvbl-surface) 100%);
}

.schedule {
    background: linear-gradient(135deg, #f1f8ff 0%, #e1efff 100%);
    position: relative;
}

.schedule::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(37,99,235,0.12)"/><circle cx="90" cy="90" r="1" fill="rgba(34,197,94,0.12)"/></svg>') repeat;
    opacity: 0.3;
}

.standings {
    background: linear-gradient(135deg, #ffffff 0%, var(--mvbl-surface-alt) 100%);
}

section h2 {
    text-align: center;
    font-size: 2.65rem;
    margin-bottom: 4rem;
    color: #1e40af;
    font-weight: 800;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--mvbl-blue-light), var(--mvbl-green-light));
    border-radius: 2px;
}

/* Schools Grid */
.schools-grid {
    display: flex;
    gap: 1.25rem;
    margin-top: 3rem;
    overflow: hidden;
    padding: 0.35rem 0.2rem 1rem;
}

.schools-grid > .school-link {
    flex: 0 0 300px;
}

.school-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.school-link:hover {
    transform: scale(1.02);
}

.school-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.school-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--mvbl-blue-light), var(--mvbl-green-light), var(--mvbl-green));
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.school-card:hover::before {
    transform: translateX(0);
}

.school-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 30px rgba(59, 130, 246, 0.1);
    border-color: rgba(34, 197, 94, 0.35);
}

.school-logo {
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.school-logo img {
    max-height: 100%;
    max-width: 120px;
    object-fit: contain;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.school-card:hover .school-logo {
    transform: scale(1.05);
}

.school-card:hover .school-logo img {
    filter: drop-shadow(3px 3px 12px rgba(0, 0, 0, 0.25));
}

.school-card h3 {
    color: #1e3a8a;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.school-card p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

/* Bowling Venues */
.venues {
    background: linear-gradient(135deg, #eef7ff 0%, #e8f8ee 100%);
    padding: 6rem 0;
    position: relative;
}

.venues .section-description {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.venues-grid {
    display: flex;
    gap: 1.25rem;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
    overflow: visible;
    padding: 0.35rem 0.2rem 1rem;
}

.venues-grid > .venue-card {
    flex: 0 1 320px;
}

.auto-scroll-clone {
    pointer-events: none;
}

.venue-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.08),
        0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.venue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--mvbl-blue-light), var(--mvbl-green-light), var(--mvbl-green));
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.venue-card:hover::before {
    transform: translateX(0);
}

.venue-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 30px rgba(59, 130, 246, 0.1);
}

.venue-logo {
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.venue-logo img {
    max-height: 100%;
    max-width: 180px;
    object-fit: contain;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.venue-card:hover .venue-logo {
    transform: scale(1.05);
}

.venue-card:hover .venue-logo img {
    filter: drop-shadow(3px 3px 12px rgba(0, 0, 0, 0.25));
}

.venue-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.venue-card h3 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.venue-location {
    color: var(--mvbl-green);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.venue-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Schedule and Standings */
.schedule-table, .standings-table {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.1),
        0 5px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    color: #64748b;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.schedule-table::before, .standings-table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--mvbl-blue-light), var(--mvbl-green-light), var(--mvbl-green));
}

.schedule-table p, .standings-table p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #3b82f6 100%);
    color: white;
    padding: 2.5rem 0 0.75rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="footerBowling" patternUnits="userSpaceOnUse" width="150" height="150"><circle cx="75" cy="75" r="6" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23footerBowling)"/></svg>');
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #86efac, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-section h3 {
    font-size: 1.25rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    font-size: 0.92rem;
    opacity: 0.9;
    line-height: 1.45;
}

.footer-bottom {
    border-top: 1px solid rgba(59, 130, 246, 0.3);
    padding-top: 1.2rem;
    text-align: center;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.powered-by {
    font-size: 0.85rem;
    margin-top: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.powered-by span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-style: italic;
}

.holland-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 11px;
    padding: 7px 11px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.holland-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #60a5fa, #22c55e, #15803d);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 11px;
}

.holland-link::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #60a5fa, #2563eb, #22c55e, #60a5fa);
    border-radius: 15px;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

@keyframes borderGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.holland-link:hover::before {
    opacity: 1;
}

.holland-link:hover::after {
    opacity: 1;
}

.holland-link:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 
        0 10px 28px rgba(0, 0, 0, 0.35),
        0 3px 14px rgba(34, 197, 94, 0.25);
}

.holland-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.holland-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.holland-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.4));
    transition: all 0.3s ease;
}

.holland-link:hover .holland-icon {
    transform: scale(1.06) rotate(2deg);
}

.holland-link:hover .holland-icon img {
    filter: 
        drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 10px rgba(34, 197, 94, 0.55));
}

.holland-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

.holland-text {
    color: #ffffff;
    font-weight: 800;
    font-size: 0.86rem;
    letter-spacing: 0.2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #86efac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.holland-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.62rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .powered-by {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .holland-link {
        padding: 7px 10px;
    }
    
    .holland-info {
        align-items: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 0.85rem;
        padding: 0.8rem 20px;
        min-height: 0;
    }

    .nav ul {
        gap: 0.45rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav a {
        font-size: 0.92rem;
        padding: 7px 10px;
    }

    .header-logo {
        width: 50px;
        height: 50px;
    }

    .logo-text h1 {
        font-size: 1.8rem;
    }

    .logo-text span {
        font-size: 0.85rem;
    }

    .hero {
        padding: 5rem 0 3rem;
    }

    .hero-logo img {
        width: 140px;
        height: 140px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    section h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .schools-grid > .school-link {
        flex-basis: 270px;
    }

    .venues-grid > .venue-card {
        flex-basis: 290px;
    }

    .school-card {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        text-align: center;
    }

    :root {
        --mvbl-header-height: 128px;
    }
}

@media (max-width: 480px) {
    :root {
        --mvbl-header-height: 152px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-logo img {
        width: 120px;
        height: 120px;
    }

    .header-logo {
        width: 45px;
        height: 45px;
    }

    .logo-text h1 {
        font-size: 1.5rem;
    }

    .logo-text span {
        font-size: 0.75rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .school-logo {
        font-size: 3rem;
    }

    .footer-logo img {
        width: 60px;
        height: 60px;
    }
}

/* Bowling-themed decorative elements and animations */
.hero::after {
    content: "🎳";
    position: absolute;
    top: 15%;
    right: 10%;
    font-size: 4rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.schools::before {
    content: "🎳";
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 3rem;
    opacity: 0.05;
    animation: float 8s ease-in-out infinite reverse;
}

.schools::after {
    content: "🎳";
    position: absolute;
    bottom: 10%;
    right: 5%;
    font-size: 3rem;
    opacity: 0.05;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(5deg); 
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading animation for better UX */
.school-card, .schedule-table, .standings-table {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.school-card:nth-child(1) { animation-delay: 0.1s; }
.school-card:nth-child(2) { animation-delay: 0.2s; }
.school-card:nth-child(3) { animation-delay: 0.3s; }
.school-card:nth-child(4) { animation-delay: 0.4s; }
.school-card:nth-child(5) { animation-delay: 0.5s; }
.school-card:nth-child(6) { animation-delay: 0.6s; }
.school-card:nth-child(7) { animation-delay: 0.7s; }
.school-card:nth-child(8) { animation-delay: 0.8s; }
.school-card:nth-child(9) { animation-delay: 0.9s; }
.school-card:nth-child(10) { animation-delay: 1.0s; }
.school-card:nth-child(11) { animation-delay: 1.1s; }

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced focus states for accessibility */
.nav a:focus,
.btn:focus,
.school-link:focus .school-card {
    outline: 3px solid var(--mvbl-green-light);
    outline-offset: 2px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #3b82f6, #22c55e);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #1e3a8a, #15803d);
}