/* ==========================================
   GLOBAL STYLES
========================================== */

body {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    background: #fbfbfc;
    color: #111;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}

h1 {
    margin-top: 80px;
    font-size: 52px;
    font-weight: 600;
    letter-spacing: -1px;
    color: #111;
}

h2 {
    margin-top: -20px;
    margin-bottom: 35px;
    font-weight: 500;
    font-size: 22px;
    color: #666;
}

h3 {
    font-weight: 500;
    font-size: 20px;
    color: #555;
    margin-top: -5px;
}

p {
    max-width: 720px;
    margin: 14px auto;
    padding: 0 20px;
    line-height: 1.7;
    font-size: 18px;
    color: #333;
}

section {
    margin-top: 40px;
    padding: 50px 20px;
}


/* ==========================================
   HOME PAGE
========================================== */

.album {
    max-width: 1150px;
    margin: 0 auto;
    padding: 40px 20px;
    border-radius: 18px;

    background: linear-gradient(135deg, #fff7d6, #ffe6ee);

    box-shadow: 0 10px 30px rgba(0,0,0,.05);

    transition: transform .25s ease,
                box-shadow .25s ease,
                filter .25s ease;

    cursor: pointer;
}

.album:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.08);

    filter: brightness(1.02);
}

.album-title {
    font-size: 36px;
    font-weight: 600;
    color: #222;
}

.album-subtitle {
    font-size: 21px;
    font-weight: 500;
    color: #555;
}

.divider {
    width: 60px;
    height: 2px;
    background: rgba(0,0,0,.1);
    margin: 30px auto;
    border-radius: 2px;
}


/* ==========================================
   SPOTIFY
========================================== */

iframe {
    display: block;
    margin: 24px auto;
    max-width: 720px;
    width: 100%;
}

.button {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 22px;
    background: #111;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    transition: all .2s ease;
}

.button:hover {
    transform: translateY(-2px);
    opacity: .9;
}
.album-cta {

    margin-top: 34px;

    font-size: 24px;
    font-weight: 600;

    color: #155e75;

    transition: transform .25s ease;

}

.album:hover .album-cta {

    transform: translateX(8px);

}
/* ==========================================
   FOOTER
========================================== */

footer {
    margin-top: 60px;
    padding: 30px 20px;
    font-size: 16px;
}

footer a {
    color: #155e75;
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    color: #0c4a6e;
}


/* ==========================================
   LEMONS & ROSES PAGE
========================================== */

.album-intro {
    max-width: 650px;
    margin: 10px auto 70px;
    font-size: 20px;
    color: #666;
}

.song-gallery {

    max-width: 1300px;

    margin: 40px auto;

    padding: 0 40px;

    display: flex;

    flex-wrap: wrap;

    justify-content: flex-start;

    gap: 40px;

}

.song-card {
    position: relative;

    width: 380px;
    height: 380px;

    overflow: hidden;
    border-radius: 18px;

    text-decoration: none;

    box-shadow: 0 12px 35px rgba(0,0,0,.12);

    transition: transform .3s ease,
                box-shadow .3s ease;
}

.song-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,.18);
}

.song-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform .5s ease;
}

.song-card:hover img {
    transform: scale(1.06);
}

.song-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 28px;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.65),
        rgba(0,0,0,.15),
        transparent
    );
}

.song-title {
    margin: 0;
    color: white;
    font-size: 34px;
    font-weight: 600;
}

.song-vibe {
    margin: 6px 0 0;
    padding: 0;

    color: rgba(255,255,255,.9);

    font-size: 16px;

    max-width: none;
}


/* ==========================================
   SONG PROFILE PAGE
========================================== */

.song-cover {
    width: 340px;
    max-width: 90%;

    display: block;
    margin: 35px auto;

    border-radius: 18px;

    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.song-profile {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 25px;

    display: flex;
    flex-direction: column;
    gap: 38px;
}

.profile-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 48px;

    align-items: stretch;

}

.profile-card,
.background-card {
    background: white;

    border-radius: 18px;

    padding: 40px;

    text-align: left;

    box-shadow: 0 8px 30px rgba(0,0,0,.05);
}

.process-card {

    background: white;

    border-radius: 18px;

    padding: 18px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    box-shadow: 0 8px 30px rgba(0,0,0,.05);

}

.process-card a {

    display: block;

}

.process-card img {

    max-width: 100%;

    max-height: 360px;

    width: auto;

    height: auto;

    display: block;

    border-radius: 12px;

    transition: transform .25s ease;

}

.process-card img:hover {

    transform: scale(1.02);

    cursor: zoom-in;

}

.image-caption {

    margin-top: 14px;

    font-size: 15px;

    color: #666;

    text-align: center;

    font-style: italic;

}
/* ==========================================
   CALI PAGE
========================================== */

.listen-section {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 30px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.spotify-player iframe {
    width: 100%;
    height: 352px;
    border-radius: 16px;
}

.lyrics-box {
    background: white;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,.05);

    padding: 28px;

    height: 352px;

    overflow-y: auto;

    text-align: left;
}

.lyrics-box h3{
    margin-top:0;
    margin-bottom:18px;
}

.lyrics{
    white-space: pre-wrap;
    line-height:1.9;
    color:#333;
    font-size:16px;
}

.profile-card{

    max-width:none;

    margin:0;

}

.background-card{

    max-width:900px;
    margin:20px auto;

    background:white;
    border-radius:18px;

    padding:40px;

    text-align:left;

    box-shadow:0 8px 30px rgba(0,0,0,.05);
}

.background-card h3{
    margin-top:0;
}

.background-card p{
    max-width:none;
    padding:0;
}

@media (max-width:850px){

    .listen-section{

        grid-template-columns:1fr;

    }

    .profile-grid{

        grid-template-columns:1fr;

    }

    .lyrics-box{

        height:450px;

    }

}
