/* In css/style.css */
/* Ganz oben in css/style.css einfügen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Cuprum', Tahoma, Arial, sans-serif;
    -webkit-font-smoothing: antialiased; /* Macht die Schrift auf Macs/iPhones schärfer */
    color: #3d2b1f;
}

/* Edle Überschriften (h1, h2, h3) */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.5px;

}
.slide-text-box h3 {
    font-family: 'Cuprum', sans-serif;
    font-weight: 700;
    font-size: 3.5rem; /* Cuprum ist schmal, daher darf sie ruhig groß sein */
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 10px 0;
}
:root {
    --site-width: 1200px;
    --nav-bg: #3d2b1f; /* Dunkelbraun */
    --accent-gold: #d4b483; /* Gold/Beige */
    --active-yellow: #ebc05d; /* Gelber Hintergrund für Aktuelles */
    --logo-maroon: #634242; /* Bräunlich-Rot für das Logo-Feld */
}

.navbar {
    margin-top: 0; /* Stellt sicher, dass kein Platz oben ist */
    background: url('../img/bg_header.png') center bottom repeat-x;
    background-color: #3d2b1f;
    height: 60px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    /* ... restliches CSS ... */
}

.nav-<strong>container</strong> {
    width: var(--site-width);
    display: flex;
    justify-content: flex-end; /* Menü nach rechts schieben */
    align-items: center;
    height: 100%;
    position: relative;
}

/* Das überstehende Logo */
/* In css/style.css */

.logo-box {
    position: absolute;
  left: 20px;
  top: 0;
  background-color: #f8b358;
  padding: 5px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-logo {
    width: 100%;       /* Nutzt die volle Breite der Box */
    height: auto;      /* Behält das Seitenverhältnis bei */
    display: block;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.2)); /* Optional: Leichter Schatten für das Logo selbst */
}

.logo-subtext {
    color: var(--accent-gold);
    font-size: 10px;
    margin: 0;
    letter-spacing: 1px;
}

.logo-text {
    color: var(--accent-gold);
    font-size: 32px;
    margin: 5px 0 0 0;
    font-family: 'Arial Black', sans-serif;
    letter-spacing: -1px;
}

/* Das Menü */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.nav-menu li {
    border-left: 1px solid rgba(255,255,255,0.1);
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-menu li:last-child {
    border-right: 1px solid rgba(255,255,255,0.1);
}

.nav-menu a {
    color: var(--accent-gold);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: 0.2s;
}
.nav-menu li a {
    font-family: 'Cuprum', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Aktiver Link & Hover */
.nav-menu li.active {
    background-color: #f8b358;
}

.nav-menu li.active a {
    color: #8b0000; /* Dunkelroter Text bei aktivem Feld */
}

.nav-menu li:hover:not(.active) {
    background-color: rgba(255,255,255,0.05);
}
/* In css/style.css */
/* In css/style.css */
.navbar, .hero-banner { 
    /* Wir nutzen den Pfad ../gfx/ da die CSS-Datei in einem Unterordner liegt */
    background: url('../img/bg_header.png') center bottom repeat-x;
    
  z-index: 100;
  width: 100%;
  height: 68px;
    
    /* Falls das Bild dunkel ist, setzen wir eine passende Hintergrundfarbe als Fallback */
    background-color: #6c5244; 
}
.banner-item { flex: 1; display: flex; align-items: flex-end; padding: 15px; color: white; border-right: 1px solid #fff; }

/* Grid System */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tile { background: white; border: 1px solid #eee; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.tile-image { height: 200px; background: #f0f0f0; position: relative; }
.badge {
    font-family: 'Cuprum', sans-serif;
    font-weight: 700;
  
    padding: 4px 12px;
    letter-spacing: 1px;
}
.tile-info { padding: 15px; text-align: center; }

footer { background: #222; color: #888; text-align: center; padding: 40px; margin-top: 50px; }
footer a { color: #bbb; text-decoration: none; }
/* In css/style.css */
.hero-banner {
    background-image: url('../img/dein-banner-bild.jpg'); 
    background-size: cover;
    background-position: center;
}
.product-slider {
    position: relative;
    width: 100%;
    height: 450px; /* Höhe des Sliders */
    overflow: hidden;
    background: #3d2b1f;
}

.product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: flex-end; /* Text unten platzieren */
    padding: 40px;
}

.product-slide.active {
    opacity: 1;
    z-index: 10;
}

.product-slide-content {
    width: var(--site-width);
    margin: 0 auto;
    color: white;
}

.product-badge {
    background: #ebc05d;
    color: #3d2b1f;
    padding: 5px 15px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 3px;
}

.product-text h3 {
    font-size: 2.5rem;
    margin: 10px 0 5px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.product-text p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}
.text-box h3 {
    font-size: 2.5rem;
    color: #ffffff;
    margin: 10px 0;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6); /* Damit man weiß auf weiß lesen kann */
}

.text-box .badge {
    background-color: #d4b483;
    color: #3d2b1f;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    /* Das Schild insgesamt verkleinern */
    .logo-box {
        width: 100px;           /* Vorher ca. 200px */
        min-height: 70px;       /* Deutlich kürzer */
        padding: 10px;          /* Weniger Innenabstand */
        left: 15px;             /* Etwas näher an den Rand */
        box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* Dezenterer Schatten */
    }

    /* Das eigentliche Logo-Bild im Schild */
    .logo-box img {
        max-width: 100%;
        height: auto;
    }

    /* Damit der Slider-Text nicht vom Logo verdeckt wird */
    .text-box {
        margin-top: 40px;      /* Schiebt den Text im Slider etwas runter */
    }
}
/* --- BURGER MENÜ STYLING --- */

/* Versteckt den Button auf dem Desktop */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1002;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #d4b483;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Mobile Ansicht (unter 768px) */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    .nav-menu {
        position: fixed;
    left: -100%;
    top: 0px;
    flex-direction: column;
    background-color: #3d2b1f;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    z-index: 1001;
    height: 40%;
    }

    .nav-menu.active {
        left: 0; /* Menü fährt rein */
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-menu a {
     padding: 0px;
    width: 100%;
    display: block;
    height: 10px;
  }

    .logo-box {
        width: 140px;
        min-height: 90px;
        left: 20px;
        transform: none;
    }
}
/* Willkommens-Bereich */
.welcome-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #fdfaf7; /* Ganz helles Beige */
}

.welcome-section h2 {
    font-size: 3rem;
    color: #3d2b1f;
    margin: 20px 0;
    text-transform: uppercase;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #5d4037;
    line-height: 1.8;
}

/* Feature Grid */
.features-section {
    padding: 40px 20px 80px;
}

.feature-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    flex: 1;
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.5rem;
    color: #d4b483; /* Dein Goldton */
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .feature-grid {
        flex-direction: column;
    }
    
    .welcome-section h2 {
        font-size: 2rem;
    }
}
.icon-box i {
    color: #d4b483; /* Dein Gold-Braun */
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}
.wheat-divider {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.wheat-icon {
    font-size: 2.5rem;
    display: inline-block;
    /* Verleiht dem Emoji einen edlen Gold-Look */
    filter: sepia(1) saturate(2) hue-rotate(10deg) brightness(1.1);
    transition: transform 0.5s ease;
}

.wheat-divider:hover .wheat-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Optionale Linien links und rechts */
.wheat-divider::before, .wheat-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 80px;
    height: 1px;
    background: #d4b483;
}

.wheat-divider::before { right: calc(50% + 40px); }
.wheat-divider::after { left: calc(50% + 40px); }
/* Container für das Icon */
.icon-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Das SVG selbst stylen */
.wheat-icon-svg {
    width: 60px;  /* Größe des Icons */
    height: 60px;
    
    /* WICHTIG: Hier definierst du die Farbe des Icons */
    stroke: #d4b483; /* Dein Gold-Braun-Ton */
    
    transition: transform 0.4s ease, stroke 0.3s ease;
}

/* Hover-Effekt für die ganze Box */
.feature-box.regional:hover .wheat-icon-svg {
    transform: scale(1.1) rotate(-5deg); /* Leicht vergrößern und drehen */
    stroke: #3d2b1f; /* Auf Dunkelbraun wechseln beim Hover */
}

/* Titel und Text in der Box (passend zu Cuprum) */
.feature-box h4 {
    font-family: 'Cuprum', sans-serif;
    font-size: 1.6rem;
    color: #3d2b1f;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.feature-box p {
    font-family: 'Cuprum', sans-serif;
    font-size: 1.1rem;
    color: #8d6e63;
    line-height: 1.5;
    max-width: 300px;
    margin: 0 auto;
}
/* Styling für das Zeit-Icon */
.time-icon-svg {
    width: 60px;
    height: 60px;
    stroke: #d4b483; /* Dein Gold-Ton */
    transition: all 0.4s ease;
}

/* Hover-Effekt: Die Uhr scheint leicht zu "ticken" */
.feature-box.time-rest:hover .time-icon-svg {
    transform: scale(1.1) rotate(10deg);
    stroke: #3d2b1f; /* Wechselt zu Dunkelbraun */
}

/* Falls du die Boxen nebeneinander haben willst (Flexbox) */
.features-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
}
/* Styling für das Frische-Icon */
.fresh-icon-svg {
    width: 60px;
    height: 60px;
    stroke: #d4b483; /* Dein Gold-Ton */
    transition: all 0.4s ease;
}

/* Hover-Effekt: Die Sonne scheint zu strahlen */
.feature-box.daily-fresh:hover .fresh-icon-svg {
    transform: scale(1.1) translateY(-5px);
    stroke: #3d2b1f; /* Wechselt zu Dunkelbraun */
}
.features-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.feature-box {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 20px;
}
.products-section {
    padding: 60px 0px;
    background-color: #f9f6f2; /* Heller Hintergrund wie auf dem Bild */
    text-align: center;
}

.section-subtitle {
    font-family: 'Cuprum', sans-serif;
    color: #d4b483;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

/* Kategorie Gitter */
.category-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.category-card {
    flex: 1;
    max-width: 350px;
    background: #ffffff; /* Weißer Hintergrund für den Rahmen */
    padding: 15px;       /* Abstand vom Bild zum Rand */
    border-radius: 8px;  /* Leicht abgerundete Ecken für Modernität */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Sehr dezenter Schatten */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;    /* Textausrichtung nach links wie im Bild */
}
.category-card:hover {
    transform: translateY(-5px); /* Karte bewegt sich leicht nach oben */
    box-shadow: 0 8px 25px rgba(0,0,0,0.1); /* Schatten wird stärker */
}
.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px; /* Auch das Bild leicht abrunden */
    margin-bottom: 10px; /* Abstand zum Titel */
}

.category-card h4 {
    font-family: 'Cuprum', sans-serif;
    color: #d4b483;      /* Dein Gold-Ton */
    font-size: 1.5rem;
    margin: 0;
    font-weight: 400;    /* Cuprum wirkt oft normalgewichtiger edler */
}

/* Trennlinie */
.section-divider {
    border: 0;
    height: 1px;
    background: #e0e0e0;
    margin: 40px 0;
}

.section-title {
    font-family: 'Cuprum', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: #3d2b1f;
    margin-bottom: 40px;
}

/* Produkt-Regal (Kleingebäck) */
.product-shelf {
    display: flex;
    justify-content: center;
    gap: 15px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.product-item {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 15px;
    flex: 1;
}

.product-item img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.product-item:hover img {
    transform: scale(1.1);
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .category-grid, .product-shelf {
        flex-direction: column;
        align-items: center;
    }
}
.product-shelf-clean {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    padding: 5px;
    background: #ffffff;
    border-radius: 15px;
    /* Ein sehr weicher, großer Schatten für die ganze Box */
    box-shadow: 0 15px 50px rgba(0,0,0,0.04);
}

.product-pure {
    aspect-ratio: 1 / 1; /* Macht die Boxen quadratisch */
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fdfdfd;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f2f2f2;
}

.product-pure img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain; /* Verhindert Verzerrungen */
    /* Ein kleiner Schatten direkt unter dem Gebäck für Realismus */
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.1));
}

/* Der Hover-Effekt: Das Produkt kommt dem Kunden entgegen */
.product-pure:hover {
    transform: scale(1.05);
    background: #ffffff;
    border-color: #d4b483; /* Dein Goldton als Akzent beim Hover */
    box-shadow: 0 10px 30px rgba(212, 180, 131, 0.15);
}
.product-shelf {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.product-item {
    padding: 20px;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 5px 15px rgba(212, 180, 131, 0.2); /* Goldener Schatten */
    border-color: #d4b483;
}

.product-item img {
    max-width: 100%;
    height: 150px;
    object-fit: contain; /* Damit die freigestellten Brötchen nicht verzerrt werden */
}

.product-name {
    display: none;
    margin-top: 15px;
    font-family: 'Cuprum', sans-serif;
    color: #3d2b1f;
    font-size: 1.2rem;
    text-transform: uppercase;
}
.product-pure a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in; /* Zeigt eine Lupe als Mauszeiger */
}

.product-pure:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Styling für das Lightbox-Overlay (Hintergrund wenn Bild offen) */
.lum-lightbox {
    background: rgba(0, 0, 0, 0.85); /* Dunkler Hintergrund für Fokus */
}

.lum-img {
    background: #fff;
    padding: 10px;
    border-radius: 4px;
}
/* Das schwarze Overlay klickbar machen */
.lum-lightbox {
    z-index: 9999;
    cursor: pointer; /* Zeigt, dass man hier klicken kann zum Schließen */
}

/* Das Schließen-X erzwingen */
.lum-close-button {
    z-index: 10000 !important;
    display: block !important;
    position: fixed !important;
    top: 30px !important;
    right: 30px !important;
    width: 50px !important;
    height: 50px !important;
    background-color: #d4b483 !important; /* Dein Gold-Ton */
    border-radius: 50%;
    opacity: 1 !important;
}

/* Das weisse Kreuz im Button */
.lum-close-button::after, .lum-close-button::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: white;
    top: 50%;
    left: 50%;
}
.lum-close-button::before { transform: translate(-50%, -50%) rotate(45deg); }
.lum-close-button::after { transform: translate(-50%, -50%) rotate(-45deg); }
/* --- Globaler Container --- */
.container {
    max-width: 55%;
    margin: 0 auto;
    padding: 0 20px;
    
}

/* --- Header & Navigation --- */
header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cuprum', sans-serif;
    font-size: 1.8rem;
    color: #3d2b1f;
    font-weight: 700;
    text-transform: uppercase;
}

.logo span {
    display: block;
    font-size: 0.9rem;
    color: #d4b483; /* Dein Gold-Ton */
    letter-spacing: 2px;
    font-weight: 400;
}

header ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

header ul li a {
    text-decoration: none;
    color: #3d2b1f;
    font-family: 'Cuprum', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

header ul li a:hover {
    color: #d4b483;
}

/* --- Footer Styling --- */
footer {
    background-color: #3d2b1f; /* Dunkles Brot-Braun */
    color: #f9f6f2;
    padding: 60px 0 20px;
    margin-top: 80px;
    font-family: 'Cuprum', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

footer h4 {
    color: #d4b483;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

footer p {
    line-height: 1.6;
    font-size: 1.1rem;
    opacity: 0.9;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    header ul {
        gap: 15px;
    }
}
/* --- Unternehmen Seite --- */
.company-page {
    background-color: #fcfaf7;
}

.company-hero {
    background: #8F4646 ;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    

}

.company-hero h1 {
    font-family: 'Cuprum', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 10px;
}
.textpic-text  {
  clear: left;
  float: left;
  width: 350px;
  margin-top: 20px;
  padding: 10px 15px 15px;
  background: #f0e7dc;
  background: rgba(240,231,220,0.9);
  color: #7f2f2f;
}
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 50px 50px;
}

.story-text h2 {
    font-family: 'Cuprum', sans-serif;
    font-size: 2.5rem;
    color: #3d2b1f;
    margin: 15px 0;
}

.story-text p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.styled-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Werte-Grid */
.company-values {
    background-color: #3d2b1f;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.values-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 20px;
}

.value-item .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.value-item h3 {
    font-family: 'Cuprum', sans-serif;
    color: #d4b483;
    margin-bottom: 10px;
}

/* Mobile */
@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
    .company-hero h1 { font-size: 2.5rem; }
}
.company-team {
    padding: 80px 0;
    text-align: center;
}

.team-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 200px;
    padding: 20px;
}

.member-image-placeholder {
    width: 150px;
    height: 150px;
    background-color: #eee;
    border: 2px dashed #ccc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: #888;
}

.team-member h3 {
    font-family: 'Cuprum', sans-serif;
    color: #3d2b1f;
    margin-bottom: 5px;
}

.team-member p {
    color: #777;
    font-size: 0.9rem;
}
.image-placeholder {
    width: 100%;
    height: 300px; /* Passen Sie die Höhe an */
    background-color: #eee;
    border: 2px dashed #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
    font-size: 1.2rem;
    border-radius: 15px;
}
/* Grafik-Ersatz für das fehlende Foto */
.handwerk-grafik {
    width: 100%;
    height: 550px;
    background-color: #3d2b1f; /* Dein Dunkelbraun */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 20px 20px 0 #d4b483; /* Der goldene Schatten-Effekt */
}

/* Ein Muster im Hintergrund, damit es nicht leer aussieht */
.handwerk-grafik::before {
    content: "   ";
    position: absolute;
    font-size: 5rem;
    opacity: 0.1;
    color: white;
    white-space: nowrap;
    transform: rotate(-10deg);
}

.grafik-content {
    text-align: center;
    color: #fcfaf7;
    z-index: 1;
}

.grafik-icon {
    font-size: 5rem;
    display: block;
    margin-bottom: 10px;
}

.grafik-content h3 {
    font-family: 'Cuprum', sans-serif;
    color: #d4b483;
    font-size: 2rem;
    text-transform: uppercase;
}

.grafik-content p {
    font-size: 1.2rem;
    letter-spacing: 2px;
}
.hero-section {
        background: var(--dark);
        color: white;
        padding: 60px 5%;
        text-align: center;
    }

    .contact-wrapper {
        max-width: 1200px;
        margin: -40px auto 60px;
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 30px;
        padding: 0 20px;
    }

    .card {
        background: white;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .info-card {
        background: var(--primary);
       
    }

    h2 { margin-top: 0; color: var(--dark); }
    .info-card h2 { }

    .form-group { margin-bottom: 20px; }
    label { display: block; margin-bottom: 8px; font-weight: 600; }
    
    input, textarea {
        width: 100%;
        padding: 12px;
        border: 2px solid #eee;
        border-radius: 8px;
        font-size: 16px;
        transition: border-color 0.3s;
        box-sizing: border-box;
    }

    input:focus, textarea:focus {
        border-color: var(--primary);
        outline: none;
        
    }

    .btn-submit {
        background: #703E3E;
        color: #fff;
        border: none;
        padding: 15px 30px;
        border-radius: 8px;
        font-weight: bold;
        cursor: pointer;
        width: 100%;
        font-size: 18px;
        transition: transform 0.2s;
    }

    .btn-submit:hover { transform: translateY(-2px); background: #e67e22; }

    .map-box {
        margin-top: 30px;
        height: 300px;
        border-radius: 10px;
        overflow: hidden;
    }

    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .contact-item i {
        font-size: 24px;
        margin-right: 15px;
    }

    @media (max-width: 900px) {
        .contact-wrapper { grid-template-columns: 1fr; margin-top: 20px; }
    }
    
 /* --- Spezifische Styles für Unterseiten --- */

.subpage-hero {
    background: linear-gradient(rgba(61, 43, 31, 0.25), rgba(61, 43, 31, 0.06)), url('../img/pozadina.png');
    background-position-x: 0%, 0%;
    background-position-y: 0%, 0%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Erzeugt einen leichten Parallax-Scroll-Effekt */
    padding: 120px 0;
    color: #ffffff;
    text-align: center;
    border-bottom: 5px solid var(--accent-gold);
}
.text-content {
    padding-right: 40px;
}

.text-content h2 {
    font-size: 2.8rem;
    color: var(--nav-bg);
    margin: 20px 0;
}
.subpage-hero h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.subpage-hero p {
    font-size: 1.4rem;
    font-family: 'Cuprum', sans-serif;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}
.info-section {
    padding: 10px 0;
    /* Ein ganz dezentes Muster oder helles Beige */
    background-color: #fdfaf7;
    
}
.image-content {
    position: relative;
    z-index: 1;
}
/* Der goldene Rahmen hinter dem Bild */
.image-content::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-gold);
    border-radius: 15px;
    z-index: -1;
}

/* Mobil-Optimierung */
@media (max-width: 768px) {
    .subpage-hero h1 { font-size: 2.5rem; }
    .grid-2 { gap: 50px; }
    .text-content { padding-right: 0; text-align: center; }
    .check-list li { justify-content: center; }
    .image-content::after { display: none; } /* Rahmen am Handy ausblenden */
}
/* Die Checkliste verschönern */
.check-list {
    list-style: none;
    margin-top: 30px;
}

.check-list li {
    font-family: 'Cuprum', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #5d4037;
}

.check-list li i {
    color: var(--accent-gold);
    background: var(--nav-bg);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 0.9rem;
}
/* Mobil-Anpassung */
@media (max-width: 768px) {
    .subpage-hero h1 {
        font-size: 2.2rem;
    }
    
    .grid-2 {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
}   
/* --- Basis Mobile Layout (bis 768px) --- */
@media (max-width: 768px) {
    
    /* 1. Slider Optimierung */
    .product-slider {
        height: 60vh; /* Etwas niedriger auf Mobile */
    }
    
    .textpic-text {
        padding: 20px;
        text-align: center;
        width: 100% !important;
    }
    
    .textpic-text h1 {
        font-size: 1.8rem; /* Kleinere Schrift für kleine Screens */
        margin: 10px 0;
    }

    .textpic-text p {
        font-size: 1rem;
        line-height: 1.4;
    }

    /* 2. Willkommens-Sektion */
    .welcome-section {
        padding: 40px 20px;
        text-align: center;
    }

    /* 3. Features (Regionale Rohstoffe etc.) */
    .feature-grid {
        display: grid;
        grid-template-columns: 1fr; /* Alles untereinander */
        gap: 20px;
        padding: 20px;
    }

    .feature-box {
        padding: 25px;
        margin-bottom: 10px;
    }

    /* 4. Kategorien (Backwaren, Patisserie) */
    .category-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 Spalten nebeneinander */
        gap: 15px;
        padding: 10px;
    }

    .category-card img {
        height: 150px; /* Einheitliche Höhe auf Mobile */
        object-fit: cover;
    }

    /* 5. Kleingebäck Regal (Die Bildergalerie) */
    .product-shelf-clean {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); /* Automatische Spalten */
        gap: 10px;
        padding: 10px;
    }

    .product-pure img {
        border-radius: 8px;
        transition: transform 0.3s ease;
    }
    
    /* Zoom-Klick Bereich auf Mobile vergrößern */
    .product-pure a {
        display: block;
        padding: 5px;
    }
}

/* --- Extra kleine Geräte (Phones unter 480px) --- */
@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr; /* Kategorien untereinander bei sehr schmalen Handys */
    }
    
    .section-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
}
/* Grundzustand: Overlay ist unsichtbar */
.css-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 20000;
    display: none; /* Versteckt */
    align-items: center;
    justify-content: center;
}

/* Wenn die ID im Link aufgerufen wird (#img0), zeige das Overlay */
.css-lightbox:target {
    display: flex;
}

/* Der Bereich um das Bild herum (Klick zum Schließen) */
.lightbox-close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: default;
}

/* Das eigentliche Bild-Container */
.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
    z-index: 20001;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    border: 5px solid white;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

/* Das Schließen-X oben rechts */
.close-x {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    text-decoration: none;
    font-weight: bold;
}

.close-x:hover {
    color: #d4b483;
}
