/* Grund-Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Open Sans - Regular (400) */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open_sans/open-sans-v44-latin-regular.woff2') format('woff2');
    font-display: swap; /* Sorgt für schnelleres Rendering, während die Schrift lädt */
}

/* Open Sans - Semi-Bold (600) */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/open_sans/open-sans-v44-latin-600.woff2') format('woff2');
    font-display: swap;
}

/* Playfair Display - Bold (700) */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/playfair_display/playfair-display-v40-latin-700.woff2') format('woff2');
    font-display: swap;
}


/* Grund-Reset (Rest der Datei bleibt gleich) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #8B0000;
    --color-secondary: #FFD700;
    --color-text: #333;
    --color-bg-light: #f8f8f8;
    --color-dark-bg: #222;
    /* Font-Deklaration bleibt gleich, da sie jetzt auf die lokal definierten Namen verweist */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
}


:root {
    --color-primary: #8B0000; /* Dunkles Rot/Bordeaux (Feuer) */
    --color-secondary: #FFD700; /* Gold (Flamme/Akzent) */
    --color-text: #333; /* Dunkler Text */
    --color-bg-light: #f8f8f8; /* Sehr heller Hintergrund für Sektionen */
    --color-dark-bg: #222; /* Dunkler Hintergrund */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text);
    background-color: white;
}

/* Allgemeine Sektionen */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background-color: var(--color-bg-light);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: #1a1a1a;
    margin-bottom: 20px;
}

h3 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 10px auto 0;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--color-secondary);
}


/* --- 1. Header und Navigation --- */
.main-header {
    background-color: var(--color-dark-bg); /* Dunkler Header */
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5em;
    font-weight: 700;
    margin-left: 20px;
}

.logo .fire { color: #fff; }
.logo .and { color: #888; font-size: 0.7em; }
.logo .flamme { color: var(--color-primary); }

.main-header nav ul {
    list-style: none;
    display: flex;
    margin-right: 20px;
}

.main-header nav ul li {
    margin-left: 25px;
}

.main-header nav ul li a {
    color: #fff; /* Weiße Schrift im dunklen Header */
    text-transform: uppercase;
    font-size: 0.9em;
    padding: 5px 0;
    display: block;
}

.main-header nav ul li a:hover {
    color: var(--color-secondary); /* Gold-Akzent beim Hover */
}


/* --- 2. Hero-Sektion (Großes Bild) --- */
.hero {
    height: 100vh; 
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 70px; /* Platz für den fixen Header */
    overflow: hidden;
}

/* Hintergrundbild Container */
.hero-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../images/hero-chef.jpg'); 
    background-size: cover;
    background-position: center 30%; /* Bild etwas höher setzen */
}

/* Inhalt über dem Bild */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 50px 0;
}

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 10px;
    line-height: 1.1;
    color: #fff;
    max-width: 900px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.7);
}

.hero-content .quote-author {
    font-size: 1.4em;
    font-style: italic;
    color: var(--color-secondary);
    margin-bottom: 40px;
    display: block;
}

.hero-tagline {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(139, 0, 0, 0.8); /* Dunkelrote Box */
    color: #fff;
    padding: 25px 40px;
    border-radius: 5px;
    border-left: 5px solid var(--color-secondary);
}

.hero-tagline h2 {
    font-size: 2em;
    color: #fff;
    margin-bottom: 5px;
}
.hero-tagline p {
    font-size: 1.1em;
    font-weight: 400;
}


/* --- 3. Über mich / Philosophie Sektion (Split-Layout) --- */
.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.about-content .text-block {
    flex: 2;
}

.about-content .image-block {
    flex: 1;
    text-align: center;
}

.chef-portrait {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.usp-list {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff;
    border-left: 3px solid var(--color-primary);
}

.usp-list h4 {
    text-align: left;
    color: var(--color-primary);
    font-size: 1.4em;
    margin-bottom: 15px;
}

.usp-list ul {
    list-style: none;
}

.usp-list ul li {
    padding: 5px 0;
    font-size: 1em;
    display: flex;
    align-items: center;
}

.usp-list .icon {
    font-size: 1.2em;
    margin-right: 10px;
    color: var(--color-primary);
}


/* --- 4. Leistungen Sektion (Karten mit Bildern) --- */
.services-section {
    background-color: var(--color-dark-bg); /* Dunkler Hintergrund für die Karten */
}


.services-section h3::after {
    background-color: var(--color-secondary);
}

.service-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap; 
}

.card-image {
    position: relative;
    flex: 1 1 300px; 
    height: 400px;
    border-radius: 5px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.card-image:hover {
    transform: scale(1.03);
}

/* Bild-Platzhalter */
.dining-card {
    background-image: url('../images/dining-bg.jpg');
}
.catering-card {
    background-image: url('../images/catering-bg.jpg');
}
.relief-card {
    background-image: url('../images/relief-bg.jpg');
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    transition: background 0.5s;
}

.card-image:hover .card-overlay {
     background: linear-gradient(to top, rgba(139, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.card-overlay h4 {
    color: var(--color-secondary);
    font-size: 2em;
    margin-bottom: 10px;
    line-height: 1.1;
}

.card-overlay p {
    margin-bottom: 15px;
}

.btn-more {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--color-secondary);
    color: var(--color-dark-bg);
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 3px;
    align-self: flex-start;
    transition: background-color 0.3s;
}

.btn-more:hover {
    background-color: #fff;
}


/* --- 5. Kontakt & Vertrauen Sektion (Unverändert, nur Farben angepasst) --- */
.contact-trust-section {
    background-color: var(--color-primary);
    color: #fff;
    padding: 100px 0;
}
/* ... (Rest der Kontakt-Sektion-Styles ist gleich) */
.contact-trust-section h3 {
    color: var(--color-secondary);
    text-align: left;
    margin-bottom: 30px;
}

.contact-trust-section h3::after {
    background-color: var(--color-secondary);
    margin: 10px 0 0;
}

.contact-box a {
    color: #fff;
    text-decoration: underline;
}

.contact-box a:hover {
    color: var(--color-secondary);
}


/* --- Footer --- */
footer {
    background-color: #1a1a1a;
    color: #aaa;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

footer a {
    color: #aaa;
    margin: 0 10px;
}

footer a:hover {
    color: var(--color-secondary);
}

/* --- Responsivität (Mobile Anpassungen) --- */
@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-content .image-block {
        order: -1; /* Bild kommt oben hin */
        margin-bottom: 30px;
    }

    .chef-portrait {
        max-width: 80%;
    }

    .usp-list {
        border-left: none;
        border-top: 3px solid var(--color-primary);
        text-align: center;
    }

    .usp-list h4 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        text-align: center;
        position: static;
    }

    .main-header nav ul {
        padding: 10px 0;
        justify-content: center;
    }

    .hero {
        height: 70vh;
        padding-top: 20px;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }
    
    .hero-tagline h2 {
        font-size: 1.5em;
    }

    .service-cards {
        flex-direction: column;
    }
    
    .contact-trust-section .container {
        flex-direction: column;
    }
    
    .trust-box, .contact-box {
        min-width: unset;
    }

    h3 {
        font-size: 2em;
    }
}