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

body {
    font-family: 'Outfit', sans-serif;
    color: #111;
    background-color: #fcfcfc;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    background: #fcfcfc;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo a {
    display: block;
    width: 150px;
    /* Adjust based on logo aspect ratio */
}

.logo img {
    width: 30%;
    height: auto;
    display: block;
}

.nav a {
    margin-left: 40px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    color: #666;
}

.nav a:hover {
    color: #000;
}

.burger-menu {
    display: none;
}

/* Gallery / Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2px;
    padding: 2px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #f0f0f0;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.overlay h3 {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.overlay .category {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Footer */
.footer {
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    margin-top: 40px;
    font-size: 0.8rem;
    color: #888;
}

.socials a {
    margin-left: 20px;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px;
    font-weight: 300;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 20px 30px;
        flex-direction: row;
        /* Keep row to separate logo and burger */
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        margin-bottom: 0;
    }

    /* Burger Menu */
    .burger-menu {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 200;
        padding: 10px;
    }

    .burger-menu span {
        display: block;
        width: 25px;
        height: 1px;
        background: #000;
        margin: 6px 0;
        transition: 0.3s;
    }

    /* Burger Animation */
    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile Nav Overlay */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 150;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav a {
        margin: 20px 0;
        font-size: 1.5rem;
        opacity: 0;
        transform: translateY(20px);
        transition: 0.4s;
    }

    .nav.active a {
        opacity: 1;
        transform: translateY(0);
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .socials a {
        margin: 0 10px;
    }
}