/* Allgemeine Styles */
body, h1, h2, p, a {
    margin: 0;
    padding: 0;
    font-family: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Verdana", sans-serif;
    text-align: center;
    color: #333; /* Edles dunkles Grau */
}

ul, li {
	text-align: left;
	margin-bottom: 10px;
}

body {
    background-color: #626262; /* Sattes Grau */
}

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

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

header img {
    width: min(95vw, 600px); /* Nimmt entweder 95% der Bildschirmbreite ODER maximal 600px */
    height: auto; /* Behält das Seitenverhältnis */
    display: block; /* Entfernt eventuelle Abstände */
    margin: 0 auto; /* Zentriert das Bild */
}

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

/* Galerie */
.gallery img {
    width: 30%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
    margin: 1%;
    border-radius: 7px;
	transition: transform 1s ease-in-out;
}

.gallery img:hover {
	aspect-ratio: auto;
	object-fit: contain;
    transform: scale(1.75); /* Bild um 50% vergrößern */
    transform-origin: center; /* Skalierung von der Mitte aus */
}

.gallery img.wide:hover {
    transform: scale(2.77); /* Bild um 50% vergrößern */
}

.videos video {
	width: 47%;
	border-radius: 7px;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    background: #82c8fa; /* Custom-Blau */
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    background: #626262;
}

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