/* Grundlegendes Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0c571; //#FDFCF3;
    color: #333;
    text-align: center;
    padding: 20px;
}

/* Header (Bild + Motto) */
.hero-container {
    position: relative;
    margin-bottom: 40px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6vw;
    font-weight: bold;
    color: #F4D35E;
    text-shadow: 5px 5px 15px rgba(0, 0, 0, 5);
}
/* Media Query für kleinere Bildschirme (wie Smartphones) */
@media only screen and (min-width: 1000px) {
    .hero-text {
        font-size: 6em; /* Festlegen einer maximalen Größe für große Bildschirme */
    }
}
/* Kontaktinformationen */
.info-section p {
    font-size: 1.2em;
    margin: 20px 0;
}

.contact-info {
    margin: 20px 0;
}

.contact-info p {
    font-size: 1.1em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info img {
    margin-right: 10px;
	width: 20px;
	height: auto;
}

.contact-button {
    background-color: #509e4f;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #8FCB81;
}

/* Footer */
footer {
    margin-top: 40px;
    font-size: 1em;
    color: #509e4f;
}

/* Animationen */
.hero-container {
    animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.contact-info p img {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
