*{
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    background-color: #181818;
}

/* MUSIC BUTTON */
#musicBtn {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 9999;
    background: #ff4da6;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 0 10px #ff4da6;
    font-family: "Pacifico", cursive;
}

/* FLOATING HEARTS */
.floating-hearts {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.heart {
    position: absolute;
    width: 25px;
    height: 25px;
    background-image: url("hearts.png");
    background-size: cover;
    animation: floatUp linear infinite;
    opacity: 0.7;
}

@keyframes floatUp {
    from {
        transform: translateY(100vh) scale(1);
        opacity: 1;
    }
    to {
        transform: translateY(-10vh) scale(1.4);
        opacity: 0;
    }
}

#hero{
    display: flex;
}

#hero img{
    width: 40%;
    border-radius: 45px;
    padding: 20px;
}

#msg{
    text-align: center;
    align-content: center;
    color: white;
    font-size: 35px;
    font-family: "Pacifico", cursive;
}

/* Hearts Decor */
#hearts img{
    width: 200px;
}

#hr1{
    width: 100px;
    position: absolute;
    top: 280px;
    left: -10px;
}

#hr2{
    width: 100px;
    position: absolute;
    top: 280px;
    left: 530px;
}

/* Section 1 */
#s1{
    display: flex;
    justify-content: space-between;
}

#s1 img{
    width: 500px;
}

#msg1{
    color: white;
    font-size: 45px;
    font-family: "Pacifico", cursive;
    padding-left: 50px;
    align-content: center;
}

/* Section 2 */
#s2{
    position: relative;
    display: flex;
    gap: 20px;
    padding: 50px;
}

#c1{
    width: 51%;

}
#c2{
    width: 48%;
}

#i1, #i2, #i3{
    width: 100%;
    border-radius: 25px;
    padding-bottom: 10px;
}

#hr3{
    width: 200px;
    position: absolute;
    top: 280px;
    left: 43%;
}

/* Section 3 */
#s3{
    padding: 50px;
}

#s31{
    display: flex;
    gap: 20px;
}

#s3 img{
    width: 50%;
    border-radius: 25px;
}

#msg2{
    color: white;
    font-size: 35px;
    font-family: "Pacifico", cursive;
    padding-left: 50px;
}



/* FADE-IN + STAGGER ANIMATION */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

#spotify {
    padding: 40px;
    text-align: center;
    color: white;
    font-family: "Pacifico", cursive;
    font-size: 35px;
}

#spotify iframe {
    margin-top: 20px;
    width: 80%;
    height: 380px;
    border-radius: 25px;
    box-shadow: 0 0 20px #ff4da6;
}

/* ---------------- MOBILE FIXES ---------------- */
@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    #hero {
        flex-direction: column;
        text-align: center;
    }

    #hero img {
        width: 80%;
        margin: 0 auto;
        padding: 10px;
    }

    #msg {
        font-size: 26px;
        padding: 20px;
    }

    /* hearts decor fix */
    #hr1, #hr2 {
        display: none; /* hide on mobile, they overlap */
    }

    /* Section 1 */
    #s1 {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    #s1 img {
        width: 80%;
        margin: 0 auto;
    }

    #msg1 {
        font-size: 30px;
        padding: 10px;
    }

    /* Section 2 */
    #s2 {
        flex-direction: column;
        padding: 20px;
    }

    #c1, #c2 {
        width: 100%;
    }

    #i1, #i2, #i3 {
        width: 100%;
    }

    #hr3 {
        display: none;
    }

    /* Section 3 */
    #s3 {
        padding: 20px;
    }

    #s31 {
        flex-direction: column;
    }

    #s3 img {
        width: 100%;
    }

    #msg2 {
        font-size: 28px;
        padding: 10px;
    }

    /* Spotify */
    #spotify {
        font-size: 28px;
        padding: 20px;
    }

    #spotify iframe {
        width: 100%;
        height: 300px;
    }

    /* Floating hearts smaller */
    .heart {
        width: 18px;
        height: 18px;
    }
}


