*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#111;
    color:white;
}

.hero{
    min-height:100vh;
    background:
        linear-gradient(rgba(0,0,0,.16),rgba(0,0,0,.34)),
        url("../images/hero-sunrise-cove.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    flex-direction:column;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:32px 70px;
}

.logo{
    font-size:2.1rem;
    font-weight:700;
    color:white;
    letter-spacing:2px;
    text-shadow:0 2px 6px rgba(0,0,0,.55);
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:bold;
    text-shadow:0 2px 6px rgba(0,0,0,.55);
}

.nav-links a:hover{
    color:#f4bb63;
}

.hero-content{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding-left:70px;
    max-width:780px;
    text-shadow:0 2px 8px rgba(0,0,0,.7);
}

.eyebrow{
    color:#f4bb63;
    text-transform:uppercase;
    letter-spacing:6px;
    margin-bottom:20px;
    font-weight:bold;
}

.hero h1{
    font-size:6rem;
    line-height:.9;
    margin-bottom:25px;
}

.hero h2{
    font-size:3rem;
    margin-bottom:30px;
}

.intro{
    font-size:1.35rem;
    line-height:1.8;
    margin-bottom:40px;
}

.buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.buttons a{
    background:white;
    color:#111;
    text-decoration:none;
    padding:17px 32px;
    border-radius:40px;
    font-weight:bold;
}

.buttons a:hover{
    background:#f4bb63;
}

.music{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:70px;
    align-items:center;
    padding:110px 80px;
    background:#181212;
}

.album-cover img{
    width:100%;
    max-width:420px;
    border-radius:18px;
    box-shadow:0 30px 80px rgba(0,0,0,.55);
}

.music h2,
.player-section h2,
.about h2,
.contact h2{
    font-size:3rem;
    margin-bottom:25px;
}

.music p,
.about p,
.contact p,
.section-intro{
    font-size:1.2rem;
    line-height:1.8;
    color:#ddd;
}

.player-section{
    padding:110px 80px;
    background:#221818;
    text-align:center;
}

.section-intro{
    max-width:760px;
    margin:0 auto 45px;
}

.music-player{
    max-width:980px;
    margin:0 auto;
    background:#111;
    padding:38px;
    border-radius:22px;
    box-shadow:0 25px 70px rgba(0,0,0,.45);
}

.music-player h3{
    font-size:1.8rem;
    margin-bottom:22px;
    color:#f4bb63;
}

.music-player audio{
    width:100%;
    margin-bottom:30px;
}

.track-list{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:12px;
}

.track-list button{
    padding:15px 18px;
    border:none;
    border-radius:40px;
    background:white;
    color:#111;
    font-weight:bold;
    cursor:pointer;
    font-size:.95rem;
}

.track-list button:hover{
    background:#f4bb63;
}

.about{
    padding:110px 80px;
    background:#181212;
}

.about p{
    max-width:900px;
}

.gallery{
    padding:110px 80px;
    background:#111;
}

.gallery h2{
    margin-bottom:50px;
    font-size:3rem;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.gallery-grid img{
    width:100%;
    border-radius:16px;
    box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.contact{
    padding:110px 80px;
    background:#181212;
    text-align:center;
}

.contact p{
    max-width:760px;
    margin:0 auto 35px;
}

.contact-form{
    max-width:650px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px 20px;
    border:none;
    border-radius:14px;
    font-size:1rem;
    font-family:Arial, Helvetica, sans-serif;
}

.contact-form button{
    background:white;
    color:#111;
    border:none;
    padding:18px 34px;
    border-radius:40px;
    font-weight:bold;
    font-size:1rem;
    cursor:pointer;
}

.contact-form button:hover{
    background:#f4bb63;
}

footer{
    padding:45px;
    text-align:center;
    background:black;
    color:#999;
}

/* Premium Song Page Layout */

.song-hero{
    min-height:100vh;
    background:#181212;
}

.song-header{
    text-align:center;
    padding:70px 40px 40px;
}

.song-header h1{
    font-size:4.8rem;
    margin-bottom:25px;
}

.song-header .song-quote{
    max-width:850px;
    margin:0 auto;
    font-size:1.45rem;
    line-height:1.8;
    color:#ddd;
}

.song-feature{
    display:grid;
    grid-template-columns:340px 1fr;
    gap:60px;
    align-items:center;
    max-width:1150px;
    margin:0 auto;
    padding:40px 60px 110px;
}

.song-feature .song-art img{
    width:100%;
    max-width:340px;
    border-radius:20px;
    box-shadow:0 30px 80px rgba(0,0,0,.55);
}

.song-panel{
    background:#111;
    padding:45px;
    border-radius:24px;
    box-shadow:0 25px 70px rgba(0,0,0,.45);
}

.song-panel h2{
    font-size:2.6rem;
    margin-bottom:25px;
}

.song-panel audio{
    width:100%;
    margin:10px 0 30px;
}

.song-panel p{
    font-size:1.15rem;
    line-height:1.8;
    color:#ddd;
    margin-bottom:30px;
}

.song-buttons{
    margin-top:10px;
}

.song-story,
.lyrics{
    padding:110px 80px;
    background:#221818;
}

.lyrics{
    background:#111;
}

.song-story h2,
.lyrics h2{
    font-size:3rem;
    margin-bottom:25px;
}

.song-story p{
    max-width:900px;
    font-size:1.25rem;
    line-height:1.9;
    color:#ddd;
}

.lyrics-box{
    max-width:800px;
    background:#181212;
    padding:40px;
    border-radius:20px;
    box-shadow:0 25px 70px rgba(0,0,0,.35);
}

.lyrics-box p{
    white-space:pre-line;
    font-size:1.15rem;
    line-height:1.9;
    color:#eee;
}

.song-nav{
    padding:50px 80px;
    background:#181212;
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.song-nav a{
    background:white;
    color:#111;
    text-decoration:none;
    padding:16px 30px;
    border-radius:40px;
    font-weight:bold;
}

.song-nav a:hover{
    background:#f4bb63;
}

@media(max-width:1000px){
    .nav{
        flex-direction:column;
        gap:20px;
        padding:30px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .hero-content{
        padding:40px;
    }

    .hero h1{
        font-size:4rem;
    }

    .hero h2{
        font-size:2.3rem;
    }

    .music{
        grid-template-columns:1fr;
        padding:80px 35px;
        text-align:center;
    }

    .album-cover{
        margin:0 auto;
    }

    .player-section,
    .about,
    .gallery,
    .contact,
    .song-story,
    .lyrics{
        padding:80px 35px;
    }

    .track-list{
        grid-template-columns:1fr;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .song-header h1{
        font-size:3.2rem;
    }

    .song-feature{
        grid-template-columns:1fr;
        padding:35px 35px 80px;
        text-align:center;
    }

    .song-feature .song-art{
        margin:0 auto;
    }

    .song-panel{
        padding:32px;
    }
}
/* Album Two */
.album-two{background:#101419}.album-two-player{background:#151b22}.album-two .music-text em{color:#fff}
