/* Allgemeine Styles */
body, h1, h2, p {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    text-align: center;
    color: #555; /* Edles dunkles Grau */
}

body {
    background-color: #f5f5f5; /* Helles Grau */
}

/* Hintergrundbild */
#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
    z-index: -1;
}

/* Header */
header {
    padding: 5px 5px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(2px);
}

/* Container */
.container {
    max-width: 700px;
    margin: 70px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 7px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

/* Galerie */
.gallery img {
    width: 47%;
    margin: 1%;
    border-radius: 5px;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    background: #ffccaa; /* Pfirsich-Orange */
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    background: #ffbb99;
}

/* 🟠 Fixe WhatsApp-Schaltfläche */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffccaa, #ffddbb); /* Pfirsich-Orange Verlauf */
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #ffbb99, #ffcc88);
    transform: scale(1.1);
}

/* Kleinere Schrift für Mobile */
@media (max-width: 600px) {
    .whatsapp-float {
        font-size: 14px;
        padding: 10px 15px;
    }
}