body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #FF69B4, #FFD1DC);
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
}

#heart-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#floating-btn {
    background-color: #ff69b4;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.menu-options {
    display: none;
    margin-bottom: 10px;
}

.menu-item {
    background-color: white;
    color: #ff69b4;
    border: 1px solid #ff69b4;
    border-radius: 5px;
    padding: 10px;
    margin: 5px 0;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.menu-item:hover {
    background-color: #ff69b4;
    color: white;
}

.menu-options.show {
    display: flex;
    flex-direction: column;
}

.heart {
    position: absolute;
    top: -5%; /* Start außerhalb des Bildschirms */
    animation: fall linear, spin infinite linear;
    opacity: 0;
    transform-origin: center;
}

.hidden {
    display: none;
}

#flower-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

#flower-image img {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
}

#flower-image p {
    margin-top: 10px;
    font-size: 1.5rem;
    color: #ff69b4;
}

@keyframes fall {
    0% {
        transform: translateY(-50px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}#intro-section {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     height: 100vh;
     animation: fadeIn 1s ease-out;
 }

#big-heart {
    font-size: 6rem;
    animation: pulse 2s infinite;
}

.animated-heart-container {
    position: relative;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.animated-heart {
    font-size: 4rem;
    animation: heart-beat 1.5s infinite ease-in-out;
}

@keyframes heart-beat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

p {
    font-size: 1.2rem;
    color: #ffe4e1;
    margin-bottom: 20px;
}

.start-button {
    margin-top: 20px;
    background: linear-gradient(90deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.start-button:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}#question-popup,
 #meme-popup {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     background: rgba(255, 255, 255, 0.95); /* Heller Hintergrund */
     color: #333; /* Dunkler Text für besseren Kontrast */
     text-align: center;
     padding: 30px;
     border-radius: 15px;
     box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
     z-index: 100;
     width: 90%;
     max-width: 400px;
 }

#question-popup h2,
#meme-popup img {
    max-width: 90%;
    max-height: 60vh;
    border-radius: 10px;
    margin-bottom: 20px;
}


.question-btn {
    background: #ff69b4;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.question-btn:hover {
    background: #ff1493;
}
#save-date-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    width: 90%;
    max-width: 400px;
}

#save-date-popup h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ff69b4;
}

#save-date-popup p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #555;
}

.question-btn {
    background: #ff69b4;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.question-btn:hover {
    background: #ff1493;
}
#countdown-popup {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     background: rgba(255, 255, 255, 0.95);
     color: #333;
     text-align: center;
     padding: 30px;
     border-radius: 15px;
     box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
     z-index: 100;
     width: 90%;
     max-width: 400px;
 }

#countdown-timer {
    font-size: 2rem;
    font-weight: bold;
    color: #ff69b4;
    margin: 10px 0;
}
/* Navigation Styles */
#love-app-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 105, 180, 0.9); /* Rosa mit Transparenz */
    color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

#love-app-nav ul {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    margin: 0;
    list-style: none;
}

#love-app-nav li {
    display: inline-block;
}

#love-app-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 5px 10px;
    transition: background 0.3s, color 0.3s;
}

#love-app-nav a:hover {
    background: white;
    color: #ff69b4;
    border-radius: 10px;
}