
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    height: 100%;
}

a {
    text-decoration: none;
    color: #333;
}

/* Main content */
.main-content {
    margin-top: 75px;
    padding: 10px 20px;
    display: flex;
    flex-wrap: wrap;
}

/* Gallery section (right side) */
.gallery-section {
    width: 75%;
    padding-right: 20px;
}

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}


.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.prev-image, .next-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.prev-image {
    left: 20px;
}

.next-image {
    right: 20px;
}

/* Responsive styles - global */
@media (max-width: 1024px) {
    .gallery-section {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
    .gallery-section {
        width: 100%;
        padding-right: 0;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
