/* Mobile First */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 5px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background: var(--white);
        flex-direction: column;
        text-align: center;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .stats-container {
        flex-direction: column;
    }

    .stat-box {
        margin-bottom: 2rem;
    }

    .timeline-container::before {
        left: 0;
    }

    .timeline-item {
        width: 100%;
        padding-left: 30px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-item:nth-child(odd) {
        left: 0;
    }

    .timeline-item::before {
        left: -6px;
        right: auto;
    }

    .timeline-item .date {
        position: relative;
        right: auto;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 0.5rem;
    }

    .timeline-item:nth-child(odd) .date {
        left: auto;
    }

    .programmes {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 2rem 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
} 