body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Limelight', cursive; /* Art Deco Font */
    overflow-x: hidden;
    background-color: transparent; /* Allow fixed bg to show */
    color: #f0e6d2; /* Light text color */
}

.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/bg-poster.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0; /* Ensure it's visible */
    transform: translateZ(0); /* Hardware acceleration */
}

main {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: translateY(50px);
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-wrapper {
    max-width: 1200px;
    width: 90%;
    text-align: center;
    display: flex; /* Enable flexbox for centering content */
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.lazy-image {
    max-width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.lazy-image.loaded {
    opacity: 1;
    background-color: transparent; /* Remove placeholder background */
    min-height: auto; /* Reset placeholder dimensions */
    min-width: auto;
    max-height: 700px;
    margin-top: -40px !important;
}

.placeholder {
    background-color: rgba(255, 255, 255, 0.1);
    min-height: 200px;
    min-width: 200px;
    display: block;
}

/* Sticky Section Layout */
#sticky-wrapper {
    position: relative;
    width: 100%;
}

.sticky-djs {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    pointer-events: none; /* Allow clicks to pass through */
    z-index: 1;
    overflow: hidden;
}

.dj-left {
    position: absolute;
    bottom: 0;
    left: -20px;
    max-height: 85vh;
    width: auto;
    z-index: 1;
}

.dj-right {
    position: absolute;
    bottom: 0;
    right: 0;
    max-height: 85vh;
    width: auto;
    z-index: 1;
}

.scroll-content {
    position: relative;
    z-index: 2;
    margin-top: -100vh; /* Pull content up to overlap sticky container */
}

#section-logos, #section-cta {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.artist-logos {
    max-width: 40%;
    height: auto;
    padding-top: 120px;
}

/* Section 3 Styling - Art Deco */
.cta-box {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 60px;
    border: 4px double #c5a059; /* Double border for Art Deco feel */
    outline: 2px solid #c5a059; /* Extra outline for complexity */
    outline-offset: 10px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
}

.cta-box h2 {
    font-family: 'Limelight', cursive;
    font-size: 4rem;
    margin-bottom: 10px;
    color: #c5a059;
    text-transform: uppercase;
    letter-spacing: 5px;
    border-bottom: 2px solid #c5a059;
    display: inline-block;
    padding-bottom: 10px;
}

.cta-box p {
    font-family: 'Courier New', Courier, monospace; /* Contrast font for body text */
    font-size: 2rem;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(45deg, #c5a059, #e0b86c, #c5a059);
    color: #1a1a1a;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid #f0e6d2;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    font-family: 'Limelight', cursive;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.4);
    background: linear-gradient(45deg, #e0b86c, #f0e6d2, #e0b86c);
}

@media (max-width: 768px) {
    #section-1 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 5;
        min-height: auto;
        padding-top: 20px; /* Moved up significantly */
        padding-bottom: 0;
        align-items: flex-start;
        pointer-events: none; /* Allow clicks to pass through if needed */
    }

    section {
    margin-top: 50px;
    }

    .dj-left, .dj-right {
        top: auto; /* Reset top */
        bottom: 0; /* Stick to bottom */
        max-height: 50vh; 
        opacity: 1; 
        width: auto;
        max-width: 45%; 
    }
    
    #section-logos {
        align-items: flex-start; 
        padding-top: 40vh; /* Position logos in the middle/upper-middle */
        min-height: 100vh;
    }

    .artist-logos {
        max-width: 60%; 
        margin-bottom: 0; 
    }
    
    .cta-box {
        padding: 30px;
        width: 80%;
    }
}