body {
    padding-top: 150px;
    padding-bottom: 0;
    font-family: 'Sintony', sans-serif;
    background-color: #000;
}

.navbar-fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

#gallery-wrapper {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

#gallery-container {
    column-count: 5;
    column-gap: 40px;
    padding: 80px 40px;
    max-width: 2000px;
    margin: auto;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 15px;
    display: inline-block;
    width: 100%;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

@media (max-width: 1200px) {
    #gallery-container {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    #gallery-container {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    #gallery-container {
        column-count: 1;
    }
}

.copyright-text {
    text-align: center;
    margin-top: 20px;
    padding: 0 20px;
    color: #f3e3e3;
}

.fancybox-custom .fancybox-skin {
    box-shadow: 0 0 50px #222;
}

.fancybox-close {
    top: 0;
    right: 0;
}