body {
    background-color: black;
    color: white;
    font-family: "Quicksand", sans-serif;
    margin: 0;
    padding: 0;
}

#gallerySection {
    padding: 100px 20px;
    text-align: center;
}

.main-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    max-width: 1000px;
}

.main-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.4);
}

.thumbnails-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

.thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 1000px;
}

.thumbnails::-webkit-scrollbar {
    display: none;
}

.thumb {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

#prevBtn,
#nextBtn {
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s;
}

#prevBtn:hover,
#nextBtn:hover {
    color: orange;
}

#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#lightbox.hidden {
    display: none;
}

#closeLightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: orange;
    cursor: pointer;
}

.lightbox-content img {
    max-height: 80vh;
    max-width: 90vw;
    border-radius: 10px;
    margin-bottom: 20px;
}

.lightbox-thumbnails-container {
    display: flex;
    overflow-x: auto;
    max-width: 95vw;
    padding: 10px;
}

.lightbox-thumbnails {
    display: flex;
    gap: 10px;
}

.lightbox-thumbnails img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.lightbox-thumbnails img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}
