/* ROMANTİK ARKA PLAN */
.romantic-bg {
    min-height: 100vh;
    background: linear-gradient(135deg, #ff4e8d, #ff0000);
    overflow: hidden;
    position: relative;
}

/* KALP KATMANI */
#hearts-container {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

/* KALP */
.heart {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    from {
        transform: translateY(100vh);
        opacity: 1;
    }

    to {
        transform: translateY(-10vh);
        opacity: 0;
    }
}

/* İÇERİK ÜSTTE KALSIN */
.content-layer {
    position: relative;
    z-index: 2;
    color: white;
    padding-top: 40px;
}

/* ÇİÇEKLER İÇİN WRAPPER */
.flower-wrapper {
    position: relative;
    height: 700px; /* Daha büyük alan */
    text-align: center;
    z-index: 1;
    margin-top: 50px;
}

/* ÇİÇEK KONTAINER */
#flower-container {
    position: relative;
    width: 1200px; /* Elips yatay genişliği büyük */
    height: 500px; /* Elips dikey yüksekliği daha kısa */
    margin: 0 auto;
}

/* BÜTÜN ÇİÇEKLER */
.flower {
    position: absolute;
    width: 120px;
    opacity: 0;
    animation: fadeIn 1s forwards;
    transform: translate(-50%, -50%);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* YAZILAR */
.status-text {
    font-size: 24px;
    margin-top: 40px;
    color: #ffb3c1;
    transition: opacity 0.5s;
}

.love-message {
    font-size: 28px;
    color: white;
    opacity: 0;
    margin-top: 30px;
    transition: opacity 1s;
}

/* 5 GÜLÜ MERKEZE KAYDIRMA */
.move-to-center {
    animation: moveCenter 1.5s forwards;
}

@keyframes moveCenter {
    to {
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) scale(0.6);
    }
}

/* ORTADAKİ BÜYÜK ÇİÇEK */
.final-flower {
    position: absolute;
    width: 250px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    animation: finalAppear 1.5s forwards;
}

@keyframes finalAppear {
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}
