* {
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Luckiest Guy", cursive;
    background-color: #d0f5ea;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    margin: 0 auto;
    width: 1000px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #C4FEFE;
}

.logo {
    max-width: 80px;
    max-height: 80px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    font-family: 'Luckiest Guy', cursive;
    font-size: 24px;
    color: #80C9DA;
}

.hero img {
    width: 1000px;
    height: 300px;
    object-fit: cover;
}

.hero h1 {
    font-size: 24px;
    font-family: 'Luckiest Guy', cursive;
    color: #2D5687;
    margin-top: 10px;
    margin-bottom: 5px;
}

.hero p {
    font-size: 18px;
    color: #5D87B8;
    width: 750px;
    margin: 5px auto;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.5;
}

.album {
    background-color: #26423D;
    color: white;
    padding: 40px;
    margin-top: 20px;
}

.album h2 {
    font-size: 40px;
    font-weight: bold;
    color: #8A7D8B;
    text-shadow: 0 0 5px lightblue;
    letter-spacing: 5px;
    margin-top: -10px;
    font-family: 'Bangers', cursive;
}


.album p {
    font-size: 16px;
    width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
}

.streaming-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spotify-button {
    width: 150px;
    height: 50px;
    object-fit: contain;
    margin: 10px;
}

.apple-music-button {
    width: 150px;
    height: 50px;
    object-fit: contain;
    margin: 10px;
}

.youtube-embed {
    display: block;
    width: 760px;
    height: 315px;
    margin: 20px auto;
    border: none;
}

.discography {
    background-color: #D0C3D1;
    padding: 40px;
}

.discography h2 {
    font-size: 24px;
    font-weight: normal;
    color: #8A7D8B;
    margin-bottom: 30px;
    font-family: 'Libre Caslon Text', serif;
    text-transform: none;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(4, 200px);
    justify-content: center;
    gap: 20px;
}

.album-item {
    text-align: center;
}

.album-item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
}

.album-caption {
    font-size: 18px;
    color: #333;
    margin-top: 0;
}

footer {
    background-color: #C4FEFE;
    color: #333;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
}






/*----------responsive----------*/







body {
    width: 100%;
    max-width: 1000px;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
}

.hero .hero-paragraph {
    width: 90%;
    max-width: 750px;
}

.album p {
    width: 90%;
    max-width: 800px;
}

.youtube-embed {
    width: 100%;
    max-width: 760px;
    height: auto;
    aspect-ratio: 16 / 9;
}

.album-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    padding: 0 10px;
}

.album-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}



@media only screen and (max-width: 992px) {
    nav a {
        font-size: 20px;
    }

    header {
        padding: 10px 15px;
    }

    .logo {
        max-width: 70px;
        max-height: 70px;
    }


    .hero h1 {
        font-size: 22px;
    }

    .hero .hero-paragraph {
        font-size: 17px;
    }

    .album h2 {
        font-size: 36px;
    }
}


@media only screen and (max-width: 768px) {
    header {
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        gap: 15px;
    }

    .logo {
        max-width: 65px;
        max-height: 65px;
        flex-shrink: 0;
    }

    nav {
        flex-grow: 1;
        min-width: 0;
        display: flex;
        justify-content: flex-end;
    }

    nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        width: auto;
    }

    nav a {
        font-size: 17px;
        padding: 6px 8px;
        white-space: nowrap;
    }

    .hero h1 {
        font-size: 20px;
    }

    .hero .hero-paragraph {
        font-size: 16px;
        width: 95%;
    }

    .album h2 {
        font-size: 32px;
    }

    .album p {
        font-size: 15px;
        width: 95%;
        text-align: center;
    }

    .album-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 15px;
    }

    .album-caption {
        font-size: 16px;
    }

    .streaming-links {
        justify-content: center;
    }
}

@media only screen and (max-width: 480px) {
    header {
        padding: 10px 10px;
        gap: 10px;
    }

    .logo {
        max-width: 55px;
        max-height: 55px;
    }

    nav ul {
        gap: 8px;
        justify-content: flex-end;
    }

    nav a {
        font-size: 15px;
        padding: 5px 6px;
    }

    .hero h1 {
        font-size: 18px;
    }

    .hero .hero-paragraph {
        font-size: 14px;
    }

    .album h2 {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .album p {
        font-size: 14px;
    }

    .streaming-links {
        gap: 10px;
    }

    .spotify-button,
    .apple-music-button {
        width: 120px;
        height: auto;
    }

    .youtube-embed {
        margin-left: 0;
        margin-right: 0;
    }

    .album-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 10px;
    }

    .album-caption {
        font-size: 14px;
    }

    footer {
        background-color: #C4FEFE;
        color: #333;
        padding: 15px 10px;
        text-align: center;
        font-family: 'DM Sans', sans-serif;
    }

    footer p {
        font-size: 12px;
    }
}