/* ===== Mobile First Responsive Design ===== */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .hero {
        padding: 8rem 0;
        text-align: left;
    }
    
    .hero-content {
        max-width: 600px;
        margin: 0;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .container {
        padding: 0 2rem;
    }
    
    .about-content {
        flex-direction: row;
    }
    
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
    }
}

/* ===== Mobile Menu ===== */
@media (max-width: 991px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: var(--navy-primary);
        color: var(--white);
        transition: right 0.3s ease;
        z-index: 1001;
    }
    
    .mobile-menu.active {
        right: 0;
    }
    
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu .logo img {
        height: 40px;
    }
    
    .close-menu {
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    .mobile-nav ul {
        list-style: none;
        padding: 1rem;
    }
    
    .mobile-nav li {
        margin-bottom: 1rem;
    }
    
    .mobile-nav a {
        color: var(--white);
        font-size: 1.1rem;
        display: block;
        padding: 0.5rem 0;
    }
    
    .mobile-nav .btn {
        display: inline-block;
        margin-top: 1rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 2rem;
    }
}

/* Small mobile devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 1rem;
    }
    
    .footer-links a {
        margin: 0 0.75rem;
    }
}