/* Allgemeine Stile */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f3f3f3;
    color: #333;
}

header {
    background: #4a4a4a;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    margin: 10px 0 0;
    font-size: 1.2rem;
}

.container {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.section {
    margin-bottom: 30px;
}

.section h2 {
    color: #a33a3a;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.section p {
    margin: 10px 0;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.gallery img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn {
    display: block;
    background: #4CAF50;
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    margin: 20px 0;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
}

.btn:hover {
    background: #45a049;
}

.btn_v2 {
    #display: block;
    background: #4CAF50;
    color: #fff;
    text-align: center;
    padding: 5px 7px;
    margin: 10px 0;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
}

.btn_v2:hover {
    background: #45a049;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
}

footer a {
    color: #a33a3a;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    header h1 {
        font-size: 2rem;
    }
    header p {
        font-size: 1rem;
    }
    .gallery {
        justify-content: center;
    }
}
/* Allgemeine Stile */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

/* Carousel */
.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 20px auto;
    max-width: 800px;
    overflow: hidden;
}

.carousel-track-container {
    overflow: hidden;
    width: 780px; /* Zeigt drei Bilder an, jedes 250px */
	height: 260px; 
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-track img {
    width: 250;
    height: 250px;
    object-fit: cover;
    margin-right: 5px;
	margin-left: 5px;
	border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.carousel-button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-track-container {
        width: 260px; /* Zeigt nur ein Bild an */
        height: 260px;
    }

    .carousel-track img {
        width: 250;
		height: 250px;
		object-fit: cover;
		margin-right: 5px;
		margin-left: 5px;
		border-radius: 5px;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
}