
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom, #ff758c, #ff7eb3);
    color: white;
    text-align: center;

    /* FIX */
    min-height: 100vh;
    overflow-y: auto;
}

.container {
    margin-top: 15%;
}

.rose-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.rose {
    position: absolute;
    top: -50px;
    font-size: 24px;
    animation-name: fall;
    animation-timing-function: linear;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0.7;
    }
}


h1 {
    font-size: 3em;
}

h2 {
    font-weight: 300;
}

button {
    padding: 12px 25px;
    border: none;
    background: #fff;
    color: #ff4b6e;
    font-size: 1em;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    transform: scale(1.1);
}

.hidden {
    display: none;
}

#loveMessage {
    margin-top: 20px;
    font-size: 1.2em;
}

/* Rose petals animation */
.petals::before {
    content: "🌹 🌸 🌹 🌸 🌹";
    position: absolute;
    animation: fall 10s linear infinite;
}

@keyframes fall {
    0% { top: -10%; }
    100% { top: 110%; }
}
.photo-frame {
    margin: 30px auto;
    width: 280px;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.4);
    border: 3px solid rgba(255,255,255,0.6);
    animation: fadeIn 2s ease-in-out;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
.proposal {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.proposal h1 {
    font-size: 2.8em;
    margin-bottom: 40px;
}

.proposal-buttons {
    display: flex;
    gap: 30px;
}

.yes-btn {
    background: white;
    color: #ff4b6e;
    font-size: 1.2em;
    padding: 15px 35px;
    border-radius: 30px;
}

.no-btn {
    background: #ff4b6e;
    color: white;
    font-size: 1.2em;
    padding: 15px 35px;
    border-radius: 30px;
    position: relative;
}
#mainContent {
    position: relative;
    z-index: 2;
}

.container {
    position: relative;
    z-index: 2;
}
