* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #101014;
    color: #f7f7f7;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================
   HERO / HOMEPAGE
   ========================= */

.hero {
    min-height: 100vh;
    padding: 24px 8%;

    background:
        linear-gradient(
            rgba(10, 10, 15, 0.35),
            rgba(10, 10, 15, 0.95)
        ),
        radial-gradient(
            circle at top right,
            rgba(143, 74, 232, 0.5),
            transparent 45%
        ),
        url("Images/background.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =========================
   NAVIGATION
   ========================= */

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a:hover {
    opacity: 0.7;
}


/* =========================
   HERO CONTENT
   ========================= */

.hero-content {
    display: flex;
    min-height: 80vh;
    max-width: 800px;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    margin-bottom: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
}

h1 {
    margin-bottom: 20px;
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.95;
}

h2 {
    margin-bottom: 32px;
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}


/* =========================
   BUTTONS
   ========================= */

.button {
    display: inline-block;
    width: fit-content;
    margin-top: 28px;
    padding: 14px 24px;
    border: 1px solid #ffffff;
    border-radius: 999px;
    transition: 0.2s ease;
}

.button:hover {
    background: #ffffff;
    color: #101014;
}


/* =========================
   MAIN SECTIONS
   ========================= */

main section {
    padding: 100px 8%;
}


/* =========================
   ALBUM CAROUSEL
   ========================= */

.album-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.album-display {
    text-align: center;
}

.album-display img {
    display: block;
    width: min(450px, 70vw);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
}

.album-display h3 {
    margin-top: 16px;
}

.album-arrow {
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    padding: 15px;
    transition: transform 0.2s ease;
}

.album-arrow:hover {
    transform: scale(1.2);
}


/* =========================
   MUSIC LINKS
   ========================= */

.music-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.music-links a {
    border-bottom: 1px solid #ffffff;
}


/* =========================
   ABOUT
   ========================= */

#about {
    background: #18181f;
}

#about p,
#contact p {
    max-width: 700px;
    font-size: 1.15rem;
}


/* =========================
   FOOTER
   ========================= */

footer {
    padding: 32px 8%;
    border-top: 1px solid #33333c;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 700px) {

    .nav-links {
        gap: 12px;
        font-size: 0.9rem;
    }

    main section {
        padding: 72px 6%;
    }

    .album-carousel {
        gap: 8px;
    }

    .album-display img {
        width: min(300px, 65vw);
    }

    .album-arrow {
        font-size: 2rem;
        padding: 8px;
    }
}