/* Reset and fonts */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #111 url('images/background.webp') center/cover no-repeat fixed;
    color: #000;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

/* The main content box */
.content-box {
    position: relative;
    background: rgb(255, 255, 255);
    width: 80%;
    max-width: 900px;
    height: 100vh;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    box-shadow: 0 0 40px rgb(0, 0, 0);
    transition: all 0.3s ease;
}

/* Social icons */
.socials {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 1rem;
}

.socials a {
    color: #aaa;
    font-size: 1.3rem;
    transition: color 0.3s;
}

.socials a:hover {
    color: #fff;
}

.overlay {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Artist banner */
.artist-banner {
    margin-top: 2rem;
    text-align: center;
}

.banner-bg {
    display: inline-block;
    padding: 5rem 10rem;
    border: 1px solid #c7c7c7;
    border-radius: 20px;
    background: #111 url('images/background.webp') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.banner-bg h1 {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ff00dd;
}

/* Navigation container */
.nav-box {
    margin: 2rem auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    background: #7d4eff;
    padding: 0.4rem 1.5rem;
    border-radius: 100px;
    border: 1px solid #5333aa;
    flex-wrap: nowrap;
    overflow-x: fixed;
}

/* Navigation buttons */
.nav-btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 0.6rem 0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-btn:hover {
    color: #ff0000;
    border-color: #000000;
}

/* Page content */
.page-content {
    margin-top: 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ---------- RESPONSIVE BREAKPOINTS ---------- */

/* Small screens */
@media (max-width: 768px) {
    body {
        background: #111;
    }

    .content-box {
        width: 100%;
        height: 100%;
        padding: 1rem;
        box-shadow: none;
        border-radius: 0;
    }

    .banner-bg {
        padding: 5rem;
    }

    .banner-bg h1 {
        font-size: 2.5rem;
    }

    .nav-box {
        gap: 0.8rem;
        background: #7d4eff;
        border: 1px solid #5333aa;
        padding: 0.6rem 0.01rem;
        justify-content: space-between;
    }

    .nav-btn {
        min-width: 90px;
        padding: 0.5rem 0;
        font-size: 0.95rem;
    }
}

/* Medium-to-large screens (tablets to desktops) */
@media (min-width: 1024px) {
    .content-box {
        width: 75%;
        max-width: 1100px;
        padding: 3rem;
    }

    .banner-bg {
        padding: 6rem 12rem;
    }

    .banner-bg h1 {
        font-size: 3rem;
    }
}

/* Extra large screens (wide monitors) */
@media (min-width: 1440px) {
    .content-box {
        width: 70%;
        max-width: 1300px;
        padding: 3.5rem;
    }

    .banner-bg {
        padding: 7rem 14rem;
    }

    .banner-bg h1 {
        font-size: 3.5rem;
    }
}
