* {
    margin: 0;
    padding: 0;
}

body {
    background: #FFFFFF;
    color: #000000;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.white_space {
    width: 100%;
    height: 120px;
    background-color: #ffffff;
}

 .hero {
            height: 100vh;
            width: 100%;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            /* Replace with your actual image path */
            background: url('https://cdn.Fransig.com/web/benthos-bistro/hero.jpg') no-repeat center center;
            background-size: cover;
        }

        /* The Gradient Overlay for the smooth transition */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom, 
                rgba(0, 0, 0, 0.4) 0%,       /* Subtle dark top */
                rgba(255, 255, 255, 0) 60%,  /* Clear middle to show the photo */
                rgba(255, 255, 255, 1) 100%  /* Solid white transition at bottom */
            );
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 0 20px;
        }

        .welcome-text {
            letter-spacing: 4px;
            font-weight: 300;
            font-size: 1.1rem;
            margin-bottom: 0;
            text-transform: uppercase;
        }
        
        .hero-logo {
            font-family: 'Great Vibes', cursive;
            font-size: clamp(80px, 15vw, 130px); /* Responsive sizing */
            margin: 10px 0;
            line-height: 0.9;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
        }

        .tagline {
            font-size: clamp(1.2rem, 4vw, 1.8rem);
            margin-bottom: 40px;
            font-weight: 400;
        }

        /* --- Buttons --- */
        .btn-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-hero {
            padding: 14px 34px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .btn-filled {
            background-color: #8B2323; /* Deep Red */
            color: white;
            border: 1px solid #8B2323;
        }

        .btn-filled:hover {
            background-color: #6d1b1b;
            transform: translateY(-2px);
        }

        .btn-outline {
            background-color: rgba(255,255,255,0.15);
            color: white;
            border: 1px solid rgba(255,255,255,0.6);
            backdrop-filter: blur(8px); /* Frosted glass effect */
        }

        .btn-outline:hover {
            background-color: rgba(255,255,255,0.3);
            transform: translateY(-2px);
        }

        /* --- Section below to demonstrate the fade --- */
        .content-spacer {
            height: 500px;
            background: white;
            display: flex;
            justify-content: center;
            padding-top: 50px;
        }


#benthos-custom-section {
    --bt-primary-red: #7D151E;
    --bt-accent-green: #8da15e;
    --bt-text-gray: #555555;
    --bt-bg-white: #ffffff;
    --bt-font-serif: 'Playfair Display', serif;
    --bt-font-sans: 'Lato', sans-serif;

    box-sizing: border-box;
    font-family: var(--bt-font-sans);
    background-color: var(--bt-bg-white);
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 20px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Reset internal elements to avoid theme conflicts */
#benthos-custom-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --- Left Column: Text ID --- */
#benthos-text-col {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
}

#benthos-eyebrow {
    color: var(--bt-accent-green);
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 10px;
    display: block;
}

#benthos-heading {
    font-family: var(--bt-font-serif);
    color: var(--bt-primary-red);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 500;
}

#benthos-separator {
    width: 60px;
    height: 3px;
    background-color: var(--bt-accent-green);
    margin-bottom: 25px;
    border-radius: 2px;
}

/* Targeting paragraphs specifically within the text col ID */
#benthos-text-col p {
    color: var(--bt-text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

#benthos-cta-link {
    display: inline-flex;
    align-items: center;
    color: var(--bt-primary-red);
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: opacity 0.3s ease;
}

#benthos-cta-link:hover {
    opacity: 0.8;
}

#benthos-cta-link span {
    margin-left: 8px;
    font-size: 1.2rem;
}

/* --- Right Column: Image ID --- */
#benthos-image-col {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}

#benthos-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

#benthos-outline-deco {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--bt-accent-green);
    border-radius: 10px;
    z-index: 0;
    transform: rotate(-2deg);
}

#benthos-main-photo {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 10px;
    z-index: 1;
    transform: rotate(3deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

/* --- Responsive via ID --- */
@media (max-width: 768px) {
    #benthos-custom-section {
        flex-direction: column;
    }

    #benthos-text-col {
        padding-right: 0;
        margin-bottom: 40px;
    }

    #benthos-heading {
        font-size: 2.2rem;
    }

    #benthos-outline-deco {
        top: 10px;
        left: -10px;
    }
}

#klassiker-section {
    /* Lokale Variablen für diesen Abschnitt */
    --kl-primary-red: #7a2e2e;
    /* Dunkelrot */
    --kl-accent-green: #8da15e;
    /* Olivgrün */
    --kl-text-gray: #555555;
    --kl-bg-white: #ffffff;
    --kl-font-serif: 'Playfair Display', serif;
    --kl-font-sans: 'Lato', sans-serif;

    box-sizing: border-box;
    font-family: var(--kl-font-sans);
    background-color: var(--kl-bg-white);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

/* Reset für interne Elemente */
#klassiker-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --- Header Bereich --- */
#klassiker-header {
    margin-bottom: 50px;
}

#klassiker-eyebrow {
    display: block;
    color: var(--kl-accent-green);
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 400;
}

#klassiker-title {
    font-family: var(--kl-font-serif);
    color: var(--kl-primary-red);
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.2;
}

#klassiker-subtitle {
    color: var(--kl-text-gray);
    font-size: 1rem;
    font-weight: 300;
}

/* --- Bilder Grid --- */
#klassiker-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    /* Wichtig für Mobile */
    margin-bottom: 50px;
}

/* Styles für die einzelnen Bild-Wrapper */
#klassiker-item-1,
#klassiker-item-2,
#klassiker-item-3 {
    flex: 1;
    min-width: 280px;
    /* Mindestbreite bevor Umbruch */
    max-width: 350px;
}

/* Das eigentliche Bild Styling */
#klassiker-img-1,
#klassiker-img-2,
#klassiker-img-3 {
    width: 100%;
    height: 300px;
    /* Feste Höhe für Einheitlichkeit */
    object-fit: cover;
    /* Schneidet Bilder sauber zu */
    border-radius: 15px;
    /* Abgerundete Ecken wie im Bild */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: block;
    transition: transform 0.3s ease;
}

/* Leichter Zoom effekt beim Hovern (optional) */
#klassiker-img-1:hover,
#klassiker-img-2:hover,
#klassiker-img-3:hover {
    transform: scale(1.02);
}

/* --- Button Bereich --- */
#klassiker-footer {
    margin-top: 20px;
}

#klassiker-btn {
    display: inline-block;
    background-color: var(--kl-primary-red);
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 400;
    transition: background-color 0.3s ease;
}

#klassiker-btn:hover {
    background-color: #5e2323;
    /* Etwas dunkler beim Hover */
    cursor: pointer;
}

/* --- Mobile Anpassungen --- */
@media (max-width: 768px) {
    #klassiker-title {
        font-size: 2.2rem;
    }

    #klassiker-grid {
        flex-direction: column;
        align-items: center;
    }

    #klassiker-item-1,
    #klassiker-item-2,
    #klassiker-item-3 {
        width: 100%;
        max-width: 100%;
    }
}

#lokal-section-gallery {
    --lk-red: #7a2e2e;
    --lk-font-serif: 'Playfair Display', serif;
    --lk-font-sans: 'Lato', sans-serif;

    font-family: var(--lk-font-sans);
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

#lokal-section-gallery * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#lokal-gallery-heading {
    font-family: var(--lk-font-serif);
    color: var(--lk-red);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 30px;
}

/* --- Grid Layout für die Bilder --- */
#lokal-grid-container {
    display: grid;
    /* Definiert 3 Spalten und 2 feste Zeilenhöhen */
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 20px;
    margin-bottom: 40px;
}

/* Gemeinsames Styling für alle Bilder im Grid */
#lokal-grid-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Sorgt dafür, dass Bilder den Raum füllen ohne zu verzerren */
    border-radius: 10px;
    display: block;
    background-color: #f0f0f0;
    /* Fallback Farbe */
}

/* Spezifische Positionierung der Bilder per ID */

/* Das hohe Bild ganz links */
#img-lokal-tall {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}

/* Das breite Bild oben rechts */
#img-lokal-wide {
    grid-row: 1 / 2;
    grid-column: 2 / 4;
}

/* Kleines Bild unten Mitte */
#img-lokal-small-1 {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
}

/* Kleines Bild unten rechts */
#img-lokal-small-2 {
    grid-row: 2 / 3;
    grid-column: 3 / 4;
}

/* --- Button --- */
#lokal-btn-wrapper {
    text-align: center;
}

#lokal-action-btn {
    display: inline-block;
    background-color: var(--lk-red);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 6px;
    font-size: 1rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

#lokal-action-btn:hover {
    background-color: #5e2323;
    transform: translateY(-2px);
}

/* --- Mobile Optimierung --- */
@media (max-width: 850px) {
    #lokal-grid-container {
        grid-template-columns: 1fr 1fr;
        /* 2 Spalten auf Tablets */
        grid-template-rows: auto;
        height: auto;
    }

    #img-lokal-tall,
    #img-lokal-wide,
    #img-lokal-small-1,
    #img-lokal-small-2 {
        grid-row: auto;
        grid-column: auto;
        height: 250px;
        /* Einheitliche Höhe auf kleineren Screens */
    }
}

@media (max-width: 550px) {
    #lokal-grid-container {
        grid-template-columns: 1fr;
        /* 1 Spalte auf Handys */
    }

    #lokal-gallery-heading {
        text-align: center;
        font-size: 2rem;
    }
}

#faq-section-benthos {
    --faq-red: #7a2e2e;
    --faq-green: #8da15e;
    --faq-bg-light: #f4f4f4;
    --faq-font-serif: 'Playfair Display', serif;
    --faq-font-sans: 'Lato', sans-serif;

    font-family: var(--faq-font-sans);
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

#faq-section-benthos * {
    box-sizing: border-box;
}

#faq-eyebrow {
    color: var(--faq-green);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

#faq-title {
    font-family: var(--faq-font-serif);
    color: var(--faq-red);
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 500;
}

/* --- Accordion Style --- */
.faq-item {
    margin-bottom: 15px;
    text-align: left;
}

#faq-section-benthos details {
    background: var(--faq-bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

#faq-section-benthos summary {
    padding: 20px 25px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    font-size: 1.1rem;
    color: #333;
}

#faq-section-benthos summary::-webkit-details-marker {
    display: none;
}

/* --- Das Plus-Icon --- */
.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--faq-green);
    color: white;
    border-radius: 6px;
    font-size: 1.4rem;
    font-weight: bold;
    /* Wichtig: Transition nur für das Icon */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
    flex-shrink: 0;
    /* Verhindert Verformung */
}

/* Nur das Icon dreht sich, wenn das übergeordnete details-Element 'open' ist */
#faq-section-benthos details[open] .faq-icon {
    transform: rotate(45deg);
    /* Dreht das Plus zum 'X' */
    background-color: var(--faq-red);
}

.faq-content {
    padding: 0 25px 20px 25px;
    line-height: 1.6;
    color: #555;
}

/* Text-Stil bei offenem Zustand */
#faq-section-benthos details[open] summary {
    font-weight: 600;
}

 #bt-footer-main {
        --footer-bg: #1a1714; /* Sehr dunkles Braun/Schwarz */
        --footer-red: #7D151E; /* Akzentrot für Logo/Icons */
        --footer-text: #d1d1d1;
        --footer-white: #ffffff;
        --footer-font-sans: 'Lato', sans-serif;
        --footer-font-serif: 'Playfair Display', serif;
        --footer-font-logo: 'Great Vibes';

        background-color: var(--footer-bg);
        color: var(--footer-text);
        padding: 60px 20px 20px 20px;
        font-family: var(--footer-font-sans);
        line-height: 1.6;
    }

    #bt-footer-main * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    /* --- Spalten Layout --- */
    #bt-footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
    }

    .bt-footer-col {
        flex: 1;
        min-width: 200px;
    }

    /* --- Spalte 1: Logo & Über uns --- */
    #bt-footer-logo-title {
        font-family: var(--footer-font-logo);
        color: var(--footer-red);
        font-size: 2.5rem;
        display: block;
        line-height: 1;
    }

    #bt-footer-logo-sub {
        font-family: var(--footer-font-sans);
        color: var(--footer-white);
        font-weight: 700;
        letter-spacing: 2px;
        font-size: 1.1rem;
        margin-bottom: 20px;
        display: block;
    }

    #bt-footer-about-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
        max-width: 280px;
    }

    #bt-footer-socials {
        display: flex;
        gap: 15px;
    }

    .bt-footer-social-icon {
        color: var(--footer-white);
        font-size: 1.2rem;
        text-decoration: none;
        transition: color 0.3s;
    }

    .bt-footer-social-icon:hover {
        color: var(--footer-red);
    }

    /* --- Spalte 2: Links --- */
    .bt-footer-h3 {
        font-family: var(--footer-font-serif);
        color: var(--footer-white);
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    #bt-footer-links-list {
        list-style: none;
    }

    #bt-footer-links-list li {
        margin-bottom: 10px;
    }

    #bt-footer-links-list a {
        color: var(--footer-text);
        text-decoration: none;
        transition: color 0.3s;
    }

    #bt-footer-links-list a:hover {
        color: var(--footer-white);
    }

    /* --- Spalte 3: Kontakt --- */
    .bt-footer-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 15px;
    }

    .bt-footer-icon {
        width: 18px;
        height: 18px;
        fill: var(--footer-red);
        margin-top: 4px;
        flex-shrink: 0;
    }

    /* --- Spalte 4: Öffnungszeiten --- */
    #bt-footer-hours-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    #bt-footer-hours-note {
        font-size: 0.85rem;
        font-style: italic;
        color: #888;
        border-top: 1px solid #333;
        padding-top: 15px;
    }

    /* --- Bottom Bar --- */
    #bt-footer-bottom {
        border-top: 1px solid #333;
        margin-top: 50px;
        padding-top: 20px;
        text-align: center;
        font-size: 0.8rem;
        color: #666;
    }

    /* --- Responsive --- */
    @media (max-width: 768px) {
        #bt-footer-container {
            flex-direction: column;
            text-align: center;
        }

        .bt-footer-col {
            align-items: center;
            display: flex;
            flex-direction: column;
        }

        #bt-footer-about-text {
            max-width: 100%;
        }

        .bt-footer-contact-item {
            justify-content: center;
        }
    }