body {
    margin: 0;
    background: #fff0f5;
    font-family: sans-serif;
    overflow-x: hidden;
}

section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* HERO */
.hero {
    position: relative;
}

.hero-text {
    font-size: 5rem;
    position: absolute;
    color: white
}

/* BOUQUET */
.bouquet {
    display: flex;
    gap: 20px;
}

.memory {
    width: 100px;
    height: 100px;
    background: pink;
    background-image: url(letters.png);
    background-size: cover;
    cursor: pointer;
}

/* POPUP */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
}

.popup img {
    width: 300px;
}

/* LANGUAGES */
.languages {
    overflow: hidden;
}

.lang-track {
    display: flex;
    gap: 100px;
    color: red;
    font-family: romantic;
}

/* PROPOSAL */
.proposal {
    flex-direction: column;
}

.yes {
    background: red;
    color: white;
    padding: 10px 20px;
}

.no {
    background: rgb(255, 90, 178);
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
}

.popup img {
    width: 700px;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.hearts-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.heart {
    position: absolute;
    color: rgba(255, 105, 180, 0.6);
    font-size: 20px;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    from {
        transform: translateY(100vh) scale(0.8);
        opacity: 0;
    }

    to {
        transform: translateY(-10vh) scale(1.2);
        opacity: 1;
    }
}

body {
    background: radial-gradient(circle at top, #ffe4ec, #fff0f5);
}

.cursor-glow {
    position: fixed;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.4), transparent);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.hero::before,
.bouquet-section::before,
.languages::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 182, 193, 0.2);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

.final-text {
    font-size: 3rem;
    color: #ff69b4;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.8);
    animation: pulse 2s infinite;
    font-family: romantic;
}

.section-title {
    font-size: 2.5rem;
    color: #ff69b4;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(255, 105, 180, 0.6);
    text-align: center;
    font-family: romantic;
}

/* MOBILE RESPONSIVE STYLES */
@media (max-width: 768px) {
    section {
        min-height: 100vh;
        padding: 40px 20px;
    }

    .hero-text {
        font-size: 3rem;
    }

    /* Stack memories vertically on mobile */
    .bouquet {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .memory {
        width: 100px;
        height: 100px;
    }

    /* Stack languages vertically on mobile */
    .lang-track {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .lang-track h2 {
        font-size: 1.2rem;
        margin: 10px 0;
        white-space: normal;
    }

    .final-text {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}

.hoi {
    align-items: center;
}

#music-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 105, 180, 0.8);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    color: white;
    cursor: pointer;
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}