* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Roboto', sans-serif;
}

body {
    background-image: linear-gradient(rgba(30, 30, 30, 0.7), rgba(30, 30, 30, 0.7)), url(../IMG/Cover3.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #f5f5f5;
    line-height: 1.5;
}

nav {
    background-color: #1a1a1a;
    padding: 1rem;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline-flex;
}

nav a {
    text-decoration: none;
    color: #f97316;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: #3b82f6;
    color: #fff;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #f97316;
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1100;
    transition: color 0.3s ease;
}

.hamburger:hover {
    color: #3b82f6;
}

#menu-toggle {
    display: none;
}

#menu-toggle:checked ~ ul {
    display: flex;
}

header {
    color: #fff;
    padding: 2.5rem 0;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(6, 187, 247, 0.5);
    transition: color 0.3s ease;
}

header:hover {
    color: #3b82f6;
}

.gallery-container {
    width: 90%;
    max-width: 1400px;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: 220px;
    gap: 2rem;
    padding: 0 1rem;
}

.gallery-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery-container img:hover {
    border: 3px solid #3b82f6;
    transform: scale(1.08) rotate(-1deg);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

footer {
    background: #1a1a1a;
    color: #d1d5db;
    text-align: center;
    padding: 1.5rem;
    margin-top: auto;
    width: 100%;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1a1a1a;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        transform: translateY(-20px);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

    #menu-toggle:checked ~ ul {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    nav li {
        width: 100%;
        text-align: center;
    }

    nav a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 6px;
        margin: 0.25rem 0;
    }

    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        grid-auto-rows: 180px;
        gap: 1.5rem;
        margin: 2rem auto;
    }

    header {
        padding: 2rem 0;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 1rem;
    }

    header {
        font-size: 1.5rem;
    }

    nav {
        padding: 0.75rem;
    }

    .hamburger {
        font-size: 1.6rem;
        top: 0.75rem;
        right: 0.75rem;
    }
}