/* Grundlegendes Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333;
    margin: 0;
    padding: 0; /* Padding entfernt, damit Bilder oben ganz anliegen */
    line-height: 1.6;
    font-size: 1.1rem; /* Grundschriftart etwas größer */
}

/* Galerie-Styling: Geht nun über die volle Breite */
.gallery {
    display: flex;
    justify-content: center;
    gap: 0; /* Lücken entfernt für nahtlosen Übergang von links nach rechts */
    width: 100%; /* Volle Breite */
    margin-bottom: 40px;
}

.gallery-item {
    flex: 1;
    overflow: hidden;
    /* border-radius entfernt für den "Edge-to-Edge" Look oben */
}

.gallery-item img {
    width: 100%;
    height: 300px; /* Bilder sind nun deutlich größer/höher */
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item img:hover {
    transform: scale(1.08);
}

/* Hero-Bereich (Textkasten) */
.hero-section {
    background-color: #f4f4f9;
    border-radius: 15px;
    padding: 60px 30px; /* Mehr Platz im Kasten */
    text-align: center;
    max-width: 1000px; /* Kasten breiter gemacht */
    margin: 0 auto 50px auto;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.hero-section h2 {
    font-size: 2.8rem; /* Überschrift deutlich vergrößert */
    color: #2c3e50;
    margin-bottom: 25px;
}

.hero-section p {
    font-size: 1.3rem; /* Beschreibungstext vergrößert */
    margin-bottom: 15px;
}

/* Buttons */
.button-container {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    background-color: #ed1c24;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 35px; /* Buttons größer */
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: #c8161d;
    transform: translateY(-3px);
}