.album-out-now {
    color: #b0b0b0;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2px;
    letter-spacing: 1px;
}
.album-promotion-desktop {
    display: flex;
}
.album-promotion-mobile,
.album-section-mobile {
    display: none;
}
/* Hero section styles for Anne Band Website */

.hero-section {
    background-image: url('/assets/graphics/index_photo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 20px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5; /* ensure hero content sits above following sections */
    max-width: 600px;
    margin-left: 5%;
    margin-top: -6vh; /* reduced negative offset to prevent overlap */
    color: #ffffff;
    text-align: left;
}

.hero-title-up {
    margin-top: 10px;
    margin-bottom: 60px;
    color: #ffffff !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

#dynamic-text {
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    display: inline-block;
    min-width: 200px;
    animation: textCarousel 0.1s ease-in-out;
}

@keyframes textCarousel {
    0% {
        transform: translateY(-10px);
        opacity: 0;
    }
    50% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}


/* Album promotion section */
.album-promotion {
    margin-top: 60px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}



.album-cover {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.album-cover:hover {
    transform: scale(1.05);
}

.album-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 120px;
}

.album-title {
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
    padding: 0;
    line-height: 1.2;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.album-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.spotify-button {
    background-color: #1db954;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    text-decoration: none;
    font-family: 'Rubik', Arial, Helvetica, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

.spotify-button:hover {
    background-color: #1ed760;
    transform: translateY(-2px);
}

/* Hero background now handled in HTML with <picture> for GitHub Pages compatibility */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}
.hero-bg img, .hero-bg source {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}


/* Responsive design for hero section */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        padding: 20px 15px;
    }
    
    .hero-content {
        margin-left: 3%;
        margin-top: -5vh;
        max-width: 90%;
    }
    
    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        font-weight: 300;
        margin-bottom: 30px;
    }
    
    .album-promotion {
        margin-top: 25px;
        gap: 20px;
    }
    
    .album-cover {
        width: 100px;
        height: 100px;
    }
    
    .album-title {
        font-size: 1.2rem;
        line-height: 1.1;
        margin-bottom: 4px;
    }
    
    .album-out-now {
        font-size: 0.7rem;
        margin-bottom: 2px;
    }
    
    .album-info {
        height: 100px;
        gap: 6px;
    }
    
    .album-buttons {
        gap: 6px;
        flex-direction: column;
        width: 100%;
    }
    
    .spotify-button {
        padding: 6px 10px;
        font-size: 0.75rem;
        width: 100%;
        min-width: 0;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .hero-section {
        min-height: 70vh;
        text-align: center;
        padding: 0;
    }
    .hero-content {
        margin-left: 0;
        margin-top: 0;
        max-width: 100vw;
        width: 100vw;
        text-align: center;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }
    .hero-content h1 {
        font-size: 2.5rem;
        width: 100vw;
        text-align: center;
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 70vh;
        text-align: center;
        padding: 0;
    }
    .hero-content {
        margin-left: 0;
        margin-top: 0;
        max-width: 100vw;
        width: 100vw;
        text-align: center;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }
    .hero-content h1 {
        font-size: 2.1rem;
        width: 100vw;
        text-align: center;
        margin-left: 0;
    }
    .album-promotion-desktop {
        display: none !important;
    }
    .album-section-mobile {
        display: block !important;
        width: 100%;
        background: #0f0606;
        padding: 24px 0 24px 0;
    }
    .album-promotion-mobile {
        display: flex;
        flex-direction: row;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
    }
    .album-cover {
        width: 123px;
        height: 123px;
    }
    .album-info {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .album-title {
        font-size: 1.8rem;
        padding-bottom: -25px;
    }
    .album-buttons {
        flex-direction: column;
        width: 100%;
    }
    .spotify-button {
        padding: 8px 16px;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Ensure about section doesn't float above hero */
.about-section {
    position: relative;
    z-index: 1;
}
