* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "League Spartan", sans-serif;
    font-optical-sizing: auto
}
body {
    background-color: #0a0a0a;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
.flex {
    display: flex;
}

nav {
    padding: 1rem 2rem;
    color: #fff;
    max-width: 75rem;
    margin: 0 auto;
}
nav .nav-contents {
    justify-content: space-between;
    border: 0.25rem solid #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 5rem;
    align-items: center;
}
nav .logo img {
    width: 6rem;
}
nav .socials-burger {
    align-items: center;
    gap: 2rem;
}
nav .social-links, .social-links-out {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
nav .social-links img {
    width: 1.5rem;
    transition: 0.3s ease-in-out;
}
nav .social-links img:hover {
    opacity: 0.5;
}
nav .burger {
    background-color: #fff;
    flex-direction: column;
    align-items: end;
    gap: 0.35rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
nav .burger:hover {
    box-shadow: 0 0 20px #fff;
}
nav .burger span {
    background-color: #0a0a0a;
    height: 0.25rem;
    border-radius: 1rem;
}
nav .burger span#b100 {
    width: 1.75rem;
    
}
nav .burger span#b75 {
    width: 1.35rem;
    
}
nav .burger span#b50 {
    width: 1.15rem;

}
@media(max-width: 600px) {
    nav .social-links {
        display: none;
    }
    nav {
        padding-inline: 0.5rem;
    }
}
@media(max-width:500px) {
    nav .nav-contents {
        padding-block: 0.35rem;
        padding-inline: 1rem;
    }
    nav .logo img {
        width: 6rem;
    }
    nav .burger {
        gap: 0.25rem;
        padding: 0.45rem;
    }
    nav .burger span {
        height: 0.15rem;
    }
    nav .burger span#b100 {
        width: 1.25rem;
    }
    nav .burger span#b75 {
        width: 1rem;
    }
    nav .burger span#b50 {
        width: 0.75rem;
    }
}








.dropdown {
    transform: translateY(-100%);
    transition: 0.8s ease-in-out;
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 2rem 1rem;
    z-index: 99;
}
.dropdown.active {
    transform: translateY(0);
}
.dropdown .logo-ex {
    justify-content: space-between;
    padding-inline: 1.5rem;
}
.dropdown .dropdown-logo img{
    width: 6rem;
}

.ex {
    position: relative; 
    width: 2rem;       
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#one, #two {
    position: absolute;
    width: 100%;        
    height: 4px;        
    background-color: #0a0a0a;
    border-radius: 2px;
}

#one {
    transform: rotate(45deg);
}

#two {
    transform: rotate(-45deg);
}

.dropdown-links {
    flex-direction: column;
    width: fit-content;
    margin: 0 auto;
    gap: 2rem;
    opacity: 0;
    transition: 2s ease-in-out;
}
.dropdown .text-links {
    flex-direction: column;
    color: #0a0a0a;
    gap: 1.5rem;
}
.dropdown .text-links a {
    color: #0a0a0a;
    font-weight: 200;
    text-decoration: none;
    font-size: 5rem;
    border-bottom: 1px solid #0a0a0a;
    padding-block: 0 0.5rem;
    transition: 0.3s ease-in-out;
}
.dropdown-socials {
    gap: 3rem;
}
.dropdown-socials img {
    width: 2.25rem;
    transition: 0.3s ease-in-out;
    
}
.dropdown .text-links a:hover, .dropdown-socials img:hover {
    opacity: 0.5;
}


@media(max-width:800px) {
    .dropdown .logo-ex {
        padding-inline: 0;
    }
    .dropdown .text-links a {
        font-size: 3.5rem;
    }
    .dropdown-socials img {
        width: 1.5rem;
    }
    .dropdown-socials {
        gap: 2rem;
    }
}
@media(max-width:600px) {

    .dropdown .text-links a {
        font-size: 2.5rem;
    }
    .dropdown-socials img {
        width: 1.25rem;
    }
    .dropdown-socials {
        gap: 1.5rem;
    }
}
@media(max-width:400px) {
    .dropdown .text-links a {
        font-size: 2rem;
    }
    /* .dropdown-socials img {
        width: 1.25rem;
    } */
    .dropdown-socials {
        gap: 1rem;
    }
}



.hero-container {
    flex-direction: column;
    gap: 4rem;
    justify-content: center;
    padding-block: 5rem 1rem;
}


.headline {
    padding-inline: 1rem;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    
    /* position: relative; */
    
}
/* .headline-container {
    background-color: red;
} */
.headline .white {
    color: #fff;

}
.headline .white h1{
    font-size: 9rem;
}
.headline .white p{
    text-indent: 3px;
    font-size: 2rem;
    font-weight: 500;

}
.headline .blue {
    color: #438fde;
    max-width: min-content;
    text-align: center;
    font-size: 2rem;
    line-height: 4.25rem;

    /* position: absolute; */
    /* top: 0; */
}

/* Base state for both child divs */
.headline > div {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out forwards;
}

/* The first section starts after 2 seconds */
.headline .white {
    animation-delay: 0.8s;
}

/* The second section starts shortly after the first (2.3 seconds) */
.headline .blue {
    animation-delay: 1.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}













.slogan {
    max-width: 48rem;
    margin: 0 auto;
    padding-inline: 1rem;

    opacity: 0;
    animation: fadeIn 1s 1.5s ease-in forwards;
}
.slogan h2 {
    line-height: 1.5;
    text-align: center;
    color: #fff;
    font-size: 1.75rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px); /* Optional: adds a slight slide up */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width:1000px) {
    .headline .white h1 {
        font-size: 8rem;
    }
    .headline .white p {
        font-size: 1.5rem;
    }
    .headline .blue {
        line-height: 3.75rem;
    }
    .headline .blue, .slogan h2 {
        font-size: 1.5rem;
    }
    
}

@media(max-width:800px) {
    .headline .white h1 {
        font-size: 6rem;
    }
    .headline .white p {
        font-size: 1.25rem;
    }
    .headline .blue {
        line-height: 2.75rem;
    }
    .headline .blue, .slogan h2 {
        font-size: 1.25rem;
    }
    
}

@media(max-width:600px) {
    .headline .white h1 {
        font-size: 4rem;
    }
    .headline .white p {
        font-size: 1rem;
    }
    .headline .blue {
        line-height: 1.75rem;
    }
    .headline .blue {
        font-size: 1rem;
    }

}






/* Mobile styles (Default) */
.pad-break {
    padding-block: 1.5rem;
}

/* Desktop styles (Screens wider than 1024px) */
@media (min-width: 1024px) {
    .pad-break {
        padding-block: 5rem;
    }
}





.client-login {
    max-width: fit-content;
    margin: 0 auto;
}
.client-login a {
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    border-radius: 5rem;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    transition: 0.3s ease-in-out;
}
.client-login a:hover {
    text-align: center;
    text-decoration: none;
    color: #0a0a0a;
    background-color: #fff;
    border-radius: 5rem;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    box-shadow: 0 0 10px #fff;
}
.client-login {
    /* Hidden initially */
    opacity: 0;
    transform: translateY(-10px); /* Slides down slightly from the top */
    
    /* Animation: name | duration | delay | timing | fill-mode */
    animation: slideInDown 0.6s 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}







.slider-text {
    color: #fff;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
}

.slider-track {
    display: inline-flex;
    will-change: transform; /* Optimization for smoother JS animation */
}

.slider-content {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-right: 40px;
}
.slider-content p {
    font-size: 4rem;
    font-weight: 800;
}
.slider-content img {
    width: 2.5rem;
}
@media(max-width:800px) {
    .slider-content p {
        font-size: 3rem;
    }
}




/* image carousel  */
.image-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0a0a0a; /* Optional: gives a clean backdrop */
}

.image-carousel-track {
    display: flex;
    gap: 5px; 
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-drag: none;
}

.image-slide-item {
    position: relative;
    flex: 0 0 100%;
    aspect-ratio: 3 /4; /* Mobile Landscape */
    overflow: hidden;
}

/* The Gradient Overlay */
.image-slide-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%; /* Covers the bottom half of the image */
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,   /* Darkest at the very bottom */
        rgba(0, 0, 0, 0.3) 50%,  /* Fading out */
        transparent 100%         /* Completely clear at the top */
    );
    z-index: 2; /* Sits above the image but below the text (z-index 4) */
    pointer-events: none; /* Ensures clicks still go through to the links */
}

.image-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Default for mobile */
    display: block;
    pointer-events: none;
    border-radius: 0;
}

/* Desktop Portrait Mode */
@media (min-width: 768px) {
    .image-slide-item {
        flex: 0 0 calc(33.333% - 4px); 
        aspect-ratio: 3 / 4;
    }
    .image-slide-item img {
        object-position: top; /* Focus on the top of the image */
    }
}

/* --- New CSS for In-Image Text --- */

/* The main container for the text, positioned absolutely */
.image-slide-content {
    position: absolute;
    /* Move it up slightly higher than the 'Listen' button */
    bottom: 70px;
    left: 20px;
    /* top: 20px; */
    right: 20px; /* Provides padding on the right side */
    z-index: 4; /* Sits behind the 'Listen' label (z-index 5) but above image */
    color: #fff;
    font-family: sans-serif;
    pointer-events: none; /* Allows clicks/swipes to pass through to the track/link */
}

/* Optional: Adding a soft text shadow improves readability on bright images */
.image-slide-content h3,
.image-slide-content p {
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.artist-name {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px; /* Space between title and subtitle */
}

.artist-genre {
    font-size: 0.9rem;
    font-weight: normal;
    opacity: 0.9; /* Slightly faded compared to name */
}

/* --- Optional: Adjust positioning for Desktop --- */
@media (min-width: 768px) {
    .image-slide-content {
        bottom: 80px; /* Slightly more space on desktop */
    }
    .artist-name {
        font-size: 1.8rem; /* Larger text on desktop */
    }
}

/* Clickable Text Link */
.image-slide-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    /* text-transform: uppercase; */
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 18px;
    z-index: 5;
    transition: background 0.3s ease;

    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}
.image-slide-label img {
    width: 1.5rem;
}

.image-slide-label:hover {
    background: #fff;
    color: #0a0a0a;
}

/* Buttons with Visibility Padding */
.image-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 15px 22px; /* High visibility padding */
    cursor: pointer;
    z-index: 20;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.image-prev { left: 10px; }
.image-next { right: 10px; }

.image-nav-button:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}







/* footer  */
footer {
    background-color: #fff;
    padding: 4rem;
}
.footer-content {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}
.text-container {
    flex-direction: column;
    gap: 2rem;
}
.logo-socials {
    flex-direction: column;
    gap: 1rem;
}
.footer-logo img {
    width: 7rem;
}
.footer-socials img {
    width: 1.5rem;
    transition: 0.3s ease-in-out;
}
.footer-socials img:hover {
    opacity: 0.5;
}
.footer-socials {
    gap: 1rem;

}
.safe-links {
    flex-direction: column;
    gap: 0.5rem;
}
.safe-links a {
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    color: #0a0a0a;
}
.safe-links a:hover {
    text-decoration: underline;
}