/* Grunddesign & Hintergrund-Kachelung im Bilder-Ordner */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fffdcc;
    color: #333;
    /*background: url('bilder/hintergrund.png') repeat;*/
    background-attachment: fixed;
    background-size: auto;
}


/* ==========================================
   NEUER ABSCHNITT: TOP-BANNER DESIGN
   ========================================== */
.top-banner {
    width: 100%;       /* Container füllt die volle Breite */
    overflow: hidden;   /* Verhindert Ränder, falls das Bild größer ist */
    line-height: 0;     /* Fix für kleine weiße Ränder unter Bildern */
}

.top-banner-img {
    width: 100%;       /* Bild dehnt sich auf 100% Breite des Containers */
    height: auto;      /* Höhe passt sich automatisch an, um Seitenverhältnis zu wahren */
    display: block;     /* Verhindert Ränder und Whitespace-Probleme */
}
/* ÄNDERUNG: Aus position: fixed wird position: sticky */

.sticky-logo {
    /* ÄNDERUNG: Von sticky auf fixed wechseln */
    position: fixed;
    
    /* Positionierung in der oberen rechten Ecke des Bildschirms */
    top: 50px;         /* Abstand zum oberen Rand des Browserfensters */
    right: 20px;       /* Abstand zum rechten Rand des Browserfensters */
    
    /* Breite des Logos */
    width: 20vw;
    max-width: 220px;
    min-width: 80px;
    height: auto;
    
    /* WICHTIG: Hoher z-index, damit das Logo über allen Inhalten (und dem Footer) bleibt */
    z-index: 9999;    
    
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
}

.sticky-logo:hover {
    transform: scale(1.05);
}

/* Hero Bereich */
/* WICHTIG: Der Hero-Bereich braucht eine relative Positionierung, 
   damit das zentrierte Layout mit dem Logo darin stimmig aussieht */
.hero {
    position: relative;
    /*background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('bilder/hintergrund.png') no-repeat center center/cover;*/
    background-color: #fffdcc;
    height: 50vh; /* Etwas erhöht, damit Logo und Text bequem Platz haben */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color:brown;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-top: 0;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Philosophie / Die Formel */
.about {
    text-align: center;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.85);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 5px solid #ab2238;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 25px;
}

.about h2 {
    color: #ab2238;
    font-size: 2.2rem;
    margin-top: 0;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Sorten Galerie */
.gallery-title {
    text-align: center;
    color: #ab2238;
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

/* Tabellen-Ersatz-Layout */
.grid {
    display: block;
    width: 100%;
    text-align: center;
}

.card {
    display: inline-block;
    width: 260px;
    margin: 15px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    vertical-align: top;
    text-align: left;
    border-bottom: 3px solid #ab2238;
}

/* Bild-Container für die Eissorten */
.card-img-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.card-img-file {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin-top: 0;
    color: #ab2238;
}

/* ==========================================
   NEUER ABSCHNITT: BUCHUNG 
   ========================================== */
.booking-section {
    max-width: 1200px;
    margin: 40px auto 60px auto;
    padding: 0 20px;
}

.booking-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 5px solid #ab2238; /* Passend zum "About"-Bereich */
}

.booking-container h2 {
    color: #ab2238;
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 20px;
}

.booking-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 25px auto;
    color: #333;
}

.booking-cta p {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Stilvoller Buchungs-Button */
.booking-btn {
    display: inline-block;
    background-color: #ab2238;
    color: #f9f6f0;
    text-decoration: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(171, 34, 56, 0.3);
    transition: all 0.3s ease;
}

.booking-btn:hover {
    background-color: #8a1b2d;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(171, 34, 56, 0.4);
}

/* Footer */
footer {
    background-color: #ab2238;
    color: #f9f6f0;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
}

footer h3 {
    margin-bottom: 20px;
    margin-top: 0;
}

footer p {
    margin: 5px 0;
    font-size: 1.1rem;
}

footer .copyright {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}