:root {
    --color-background: #000000;
    --color-text: #ffffff;
    --color-accent: #FF7043;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    overflow-x: hidden;
    background-color: var(--color-background);
    color: var(--color-text);
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    filter: brightness(1);
}

#player {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

/* Pixelated overlay effect */
.pixelated-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(0, 0, 0, 0.15) 3px,
            rgba(0, 0, 0, 0.15) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(0, 0, 0, 0.15) 3px,
            rgba(0, 0, 0, 0.15) 4px
        );
    pointer-events: none;
    z-index: 2;
}

.mute-button {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.mute-button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 112, 67, 0.6);
}

.mute-icon {
    pointer-events: none;
}

.mobile-logo {
    display: none;
}

.content {
    position: relative;
    z-index: 1;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    padding-bottom: 40px;
}

.scroll-indicator {
    display: block;
    width: 60px;
    overflow: hidden;
    height: 100px;
    position: relative;
}

.chevron {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 20px solid white;
    position: absolute;
    left: 0;
    animation: scrollDown 2s infinite linear;
}

.chevron:nth-child(1) {
    animation-delay: 0s;
}

.chevron:nth-child(2) {
    animation-delay: -0.5s;
}

.chevron:nth-child(3) {
    animation-delay: -1s;
}

.chevron:nth-child(4) {
    animation-delay: -1.5s;
}

@keyframes scrollDown {
    0% {
        top: -40px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 140px;
        opacity: 0;
    }
}

.content-section {
    min-height: 50vh;
    padding: 75px 20px;
    background: var(--color-background);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    transition: background-color 0.5s ease;
}

.content-section.active {
    background: rgba(180, 60, 30, 0.05);
}

.content-section.first-section {
    padding-top: 150px;
}

.content-section:last-of-type {
    padding-bottom: 150px;
}

.section-divider {
    height: 100px;
    background: var(--color-background);
    width: 100%;
}

.content-section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--color-text);
    border: 3px solid var(--color-accent);
    border-radius: 20px;
    padding: 30px 50px;
    text-align: center;
    max-width: 800px;
    width: 100%;
    background: var(--color-background);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6),
                0 0 40px rgba(255, 255, 255, 0.4);
}

.content-section p {
    font-size: 1.5rem;
    max-width: 800px;
    text-align: center;
    line-height: 1.8;
    color: var(--color-text);
}

.closed {
    color: var(--color-accent);
}

a {
    color: var(--color-accent);
    text-decoration: underline;
}

a:hover {
    color: var(--color-accent);
    opacity: 0.8;
}


.dj-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 800px;
    flex-wrap: nowrap;
}

.dj-image-container {
    position: relative;
    display: inline-block;
}

.dj-images img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255, 112, 67, 0.6);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.dj-images img:hover {
    box-shadow: 0 0 50px rgba(255, 112, 67, 1);
    transform: scale(1.05);
}

.dj-name {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    color: var(--color-background);
    padding: 12px 16px;
    border-radius: 15px;
    white-space: normal;
    width: 234px;
    font-size: 1.3125rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

.dj-name br {
    display: block;
    content: "";
    margin-top: 8px;
}

.dj-description {
    display: block;
    margin-top: 8px;
    font-size: 1.1625rem;
    font-weight: 400;
    color: #333;
    font-style: italic;
}

.dj-image-container:hover .dj-name {
    opacity: 1;
}

.program-info {
    max-width: 800px;
    text-align: left;
    width: 100%;
    direction: ltr;
}

.program-info h3 {
    color: var(--color-accent);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.program-info h3:first-of-type {
    margin-top: 1rem;
}

.program-info p {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    line-height: 1.6;
    text-align: left;
    margin-left: 1.5rem;
}

.transport-info {
    max-width: 800px;
    text-align: left;
    width: 100%;
    direction: ltr;
}

.transport-info h3 {
    color: var(--color-accent);
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.transport-info h3:first-of-type {
    margin-top: 1rem;
}

.transport-info p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    text-align: left;
}

.transport-info ul {
    margin-left: 1.5rem;
    margin-top: 0.3rem;
    margin-bottom: 0.8rem;
    padding-left: 0;
    list-style-position: outside;
    list-style-type: disc;
}

.transport-info li {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    line-height: 1.5;
    padding-left: 0.3rem;
}

.transport-info strong {
    color: var(--color-accent);
    font-weight: 600;
}

/* Carousel Section */
.carousel-section {
    min-height: 100vh;
    padding: 75px 20px;
    background: var(--color-background);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
}

.carousel-section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--color-text);
    border: 3px solid var(--color-accent);
    border-radius: 20px;
    padding: 30px 50px;
    text-align: center;
    max-width: 800px;
    width: 100%;
    background: var(--color-background);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6),
                0 0 40px rgba(255, 255, 255, 0.4);
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 600px;
    perspective: 1200px;
    margin-top: 50px;
}

.carousel-background {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.carousel-background img {
    position: absolute;
    width: 200px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 112, 67, 0.4);
    transition: all 0.5s ease;
    opacity: 0.6;
}

.carousel-background img.active {
    opacity: 0;
}

.carousel-featured {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 750px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(255, 112, 67, 0.8);
}

.carousel-featured-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(0.7);
    transform: scale(1.2);
}

.carousel-featured img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.5s ease;
}

.carousel-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 20;
}

.carousel-btn {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--color-accent);
    color: var(--color-text);
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 112, 67, 0.6);
}

@media (max-width: 768px) {
    .video-container {
        display: none;
    }

    .mute-button {
        display: none;
    }

    .hero {
        display: none;
    }

    .mobile-logo {
        display: block;
        width: 100%;
        padding: 20px;
        background: var(--color-background);
        text-align: center;
    }

    .mobile-logo img {
        max-width: 300px;
        width: 80%;
        height: auto;
    }

    .content-section {
        opacity: 1 !important;
        padding: 37.5px 20px;
    }

    .content-section.first-section {
        padding-top: 75px;
    }

    .content-section:last-of-type {
        padding-bottom: 75px;
    }

    .section-divider {
        height: 50px;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .content-section p {
        font-size: 1.2rem;
    }

    .dj-images {
        flex-wrap: wrap;
        max-width: 400px;
        gap: 15px;
        justify-content: center;
    }

    .dj-image-container {
        width: calc(50% - 10px);
        margin-bottom: 80px;
    }

    .dj-images img {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    .dj-name {
        width: 200px;
        font-size: 1rem;
    }

    .dj-description {
        font-size: 0.9rem;
    }

    .carousel-section {
        opacity: 1 !important;
        padding: 37.5px 20px;
    }

    .carousel-section h2 {
        font-size: 2rem;
    }

    .carousel-container {
        height: 400px;
        margin-top: 30px;
    }

    .carousel-featured {
        width: 400px;
        height: 300px;
    }

    .carousel-background img {
        width: 120px;
        height: 180px;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
}
