body {
    margin: 0;
    padding: 0;
    background-color: #1a1a1a; /* Dark fallback */
    font-family: Arial, sans-serif;
    color: #fff;
    height: 100vh; /* Full height */
    overflow: hidden; /* No scrolling */
}

.container {
    position: relative;
    height: 100vh; /* Full viewport height */
    width: 100vw; /* Full viewport width */
    display: flex;
    justify-content: flex-end; /* Push info to right */
}

.press {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    object-fit: cover; /* Scales to fill screen */
    object-position: center center; /* Centers image */
    z-index: 1; /* Behind content */
    animation: zoomIn 1s ease-out 0s 1 normal forwards; /* Zoom animation */
}

/* Zoom animation for press image */
@keyframes zoomIn {
    0% { transform: scale(1.5); }
    100% { transform: scale(1); }
}

/* Fade effect on sides */
.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.9), transparent 20%, transparent 80%, rgba(26, 26, 26, 0.9));
    z-index: 2; /* Over image, under banners */
}

.info-section {
    position: relative;
    width: 300px; /* Fixed width */
    background-color: rgba(42, 42, 42, 0); /* Original semi-transparent gray */
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 4; /* Above banners */
}

.logo-container {
    display: flex;
    flex-direction: column; /* Stack logos vertically */
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    display: block;
}

.personal-logo {
    max-width: 150px; /* Personal logo size */
    animation: logoZoom 1s ease-out 0s 1 normal forwards; /* Zoom animation */
}

.records-logo {
    max-width: 200px; /* Records logo size */
    margin-top: 15px; /* Space between logos */
    animation: logoZoom 1s ease-out 0.3s 1 normal forwards; /* Zoom with delay */
}

/* Zoom animation for logos */
@keyframes logoZoom {
    0% { transform: scale(1.2); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-logo {
    width: 40px; /* Default social logo size */
    height: auto;
    margin: 15px 0;
    filter: brightness(0) invert(1); /* White */
    transition: filter 0.3s ease;
    opacity: 0; /* Start hidden */
}

/* Resize SoundCloud and Instagram logos */
#soundcloud {
    width: 50px; /* Larger SoundCloud */
    animation: popUp 0.5s ease-out 0.7s forwards;
}

#instagram {
    width: 50px; /* Larger Instagram */
    animation: popUp 0.5s ease-out 0.9s forwards;
}

/* Ensure Spotify and others have animations */
#spotify {
    animation: popUp 0.5s ease-out 0.5s forwards;
}

#tiktok {
    animation: popUp 0.5s ease-out 1.1s forwards;
}

#email {
    animation: popUp 0.5s ease-out 1.3s forwards;
}

/* Hover effect */
.social-logo:hover {
    filter: brightness(0) invert(0.8); /* Gray on hover */
}

/* Pop-up animation for social logos */
@keyframes popUp {
    0% { opacity: 0; transform: scale(0.5); }
    100% { opacity: 1; transform: scale(1); }
}

/* Footer Text */
.footer-text {
    font-size: 12px; /* Small but readable */
    color: #fff; /* White to match theme */
    margin-top: 20px; /* Space below last icon */
    text-align: center;
}

/* Spotify Banners - Desktop */
.spotify-banner {
    position: absolute;
    left: 10%;
    width: 60%;
    height: 352px; /* Slightly taller for desktop */
    opacity: 0.6; /* Semi-transparent */
    z-index: 3; /* Above press and fade, below info-section */
    border-radius: 20px; /* Rounded corners */
}

/* Artist Banner (first) */
.artist-banner {
    top: 120px; /* Below playlist banner, ~10px gap */
}


/* Playlist Banner (second) */
.playlist-banner {
    top: 550px; /* Adjusted for new look */
}



/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        justify-content: flex-end; /* Push to bottom */
        align-items: flex-end; /* Align to right */
    }
    .press {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        object-position: center center;
        animation: zoomIn 1s ease-out 0s 1 normal forwards;
    }
    .info-section {
        width: 100px;
        height: 100%;
        padding: 20px;
        background-color: rgba(42, 42, 42, 0.9); /* Slightly more opaque on mobile */
        margin-left: auto;
        margin-right: 0;
        margin-bottom: 5px; /* Moves up from bottom */
    }
    .personal-logo {
        margin-top: 30px; /* Adjusted spacing on mobile */
        max-width: 100px; /* Smaller on mobile */
    }
    .records-logo {
        max-width: 150px; /* Smaller on mobile */
        margin-top: 10px; /* Adjusted spacing on mobile */
    }
    .social-logo {
        width: 35px; /* Default mobile size */
        margin: 10px 0;
    }
    #soundcloud {
        width: 45px; /* Larger SoundCloud on mobile */
    }
    #instagram {
        width: 45px; /* Larger Instagram on mobile */
    }
    .footer-text {
        font-size: 10px; /* Slightly smaller on mobile */
        margin-top: 15px; /* Adjusted spacing */
    }
    /* Hide Spotify Banners on Mobile */
    .spotify-banner {
        display: none; /* Completely hide banners on mobile */
    }
}