body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(180deg, #ffd1dc, #ffe6f0);
    color: #333;
    text-align: center;
    overflow-x: hidden;
}

.hearts {
    pointer-events: none;
}


.hero {
    padding: 80px 20px 60px;
}

h1 {
    font-size: 3em;
    color: #d63384;
}

.subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.button {
    display: inline-block;
    background: #d63384;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    transition: transform 0.2s, background 0.2s;
}

.button:hover {
    transform: scale(1.05);
    background: #bf2a72;
}

.section {
    max-width: 700px;
    margin: auto;
    padding: 20px;
}

.section h2 {
    color: #d63384;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
}

.gallery img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

footer {
    margin: 40px 0;
    color: #d63384;
}

/* Herzchen */
.hearts span {
    position: fixed;
    bottom: -20px;
    font-size: 18px;
    animation: float 6s linear infinite;
    opacity: 0.8;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-110vh); }
}

/* Handy */
@media (max-width: 600px) {
    h1 {
        font-size: 2.2em;
    }
}
