:root {
    /* Farbpalette aus den Anforderungen */
    --color-dark: #4C2513;
    --color-brown: #4C2513;
    --color-gold: #EED9A2;
    --color-cream: #E5D8C9;
    --color-gray: #D9D9D9;

    /* Typografie - modern und aufgeräumt */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Onest', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background-color: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    color: var(--color-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Typography elements */
span {
    color: var(--color-brown);
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* Etwas transparentes Cream für Glassmorphism-Effekt */
    background-color: rgba(229, 216, 201, 0.75);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(217, 217, 217, 0.4);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(76, 37, 19, 0.08);
    /* Sanfter Schatten beim Scrollen */
    padding: 8px 0;
}

.nav-container-full {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 4rem;
    transition: height 0.3s ease;
    width: 100%;
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
}

.navbar.scrolled .nav-container-full {
    height: 70px;
}

.nav-center-info {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-dark);
}

.time-box {
    background-color: #ffffff;
    padding: 8px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.10);
    /* Schmeichelhafter Schatten um die Box abzuheben */
}

.nav-center-info h6 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: ;
}

.nav-center-info i {
    font-size: 1.4rem;
    color: var(--color-brown);
}

.navbar .logo {
    display: inline-flex;
    align-items: flex-start;
    position: relative;
    height: 80px;
    width: 256px;
}

.navbar .logo img {
    height: 256px;
    width: auto;
    position: absolute;
    top: 30px;
    /* Mehr Abstand zum oberen Rand */
    left: 0;
    z-index: 10000;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo img {
    transform: scale(0.65);
    /* Deutlich stärkere Verkleinerung (Schrinkage) beim Scrollen */
    transform-origin: top left;
}

.nav-mobile-header,
.nav-mobile-footer {
    display: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links>a {
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-links>a:hover {
    color: var(--color-brown);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.dropbtn i {
    font-size: 16px;
    margin-left: 2px;
}

.dropbtn:hover {
    color: var(--color-brown);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
    border-radius: 8px;
    overflow: hidden;
    top: 100%;
    left: 0;
    flex-direction: column;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.dropdown-content a {
    color: var(--color-dark);
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-content a i {
    font-size: 18px;
    color: var(--color-gold);
}

.dropdown-content a:hover {
    background-color: var(--color-cream);
    color: var(--color-brown);
}

/* Unterstrich-Animation beim Hover */
.nav-links>a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-brown);
    transition: width 0.3s ease;
}

.nav-links>a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--color-dark);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('assets/img/brotbohne-wallpaper-a-2.png');
    background-color: var(--color-dark);
    /* Fallback */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bottom-element {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scale(0.5);
    transform-origin: bottom center;
    z-index: 2;
    /* über dem Overlay */
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Farbverlauf mit dunklen Tönen, um die helle Schrift lesbar zu machen */
    background: linear-gradient(135deg, rgba(76, 37, 19, 0.7) 0%, rgba(76, 37, 19, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 850px;
    padding-top: 50px;
    /* Offset for navbar */
    animation: fadeInDown 1s ease-out forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    color: #fff;
    font-size: 4.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.subtitle {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    font-weight: 500;
    font-size: 1.05rem;
    border-radius: 50px;
    /* Moderne, runde Buttons */
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-dark);
    box-shadow: 0 4px 15px rgba(238, 217, 162, 0.2);
}

.btn-primary:hover {
    background-color: #f5e4b9;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(238, 217, 162, 0.4);
}

/* ABOUT SECTION */
.about {
    padding: 8rem 0;
    background-color: var(--color-cream);
}

.about-container {
    max-width: 800px;
    text-align: center;
}

.about h2 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
}

.about p {
    font-size: 1.15rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

/* HIGHLIGHTS SECTION */
.highlights {
    padding: 8rem 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: #666;
    font-size: 1.15rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.card {
    background: var(--color-cream);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 1px solid var(--color-gray);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(76, 37, 19, 0.1);
}

.card-img {
    height: 280px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.card:hover .card-img {
    transform: scale(1.05);
    /* Leichter Zoom beim Hover */
}

/* Wraps the image to hide the overflow on zoom */
.card-img-wrapper {
    overflow: hidden;
}

.default-bg {
    /* Ein warmer Farbverlauf für die 3. Kachel ohne Bild */
    background: linear-gradient(135deg, var(--color-brown) 0%, #2a1309 100%);
    position: relative;
}

.default-bg::after {
    content: '☕🥐';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.1;
}

.card-content {
    padding: 2.5rem;
    flex-grow: 1;
    background: #fff;
}

.card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.card-content p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* MENU SECTIONS */
.menu-section {
    padding: 6rem 0;
    background-color: #fff;
}

.bg-cream {
    background-color: var(--color-cream);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.menu-item {
    border-bottom: 1px solid var(--color-gray);
    padding-bottom: 1.5rem;
}

.menu-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    color: var(--color-brown);
}

.menu-item p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.8rem;
}

.menu-item .price {
    font-weight: 600;
    color: var(--color-dark);
}

.subsection-title {
    text-align: center;
    font-size: 2rem;
    margin: 4rem 0 2rem;
}

/* FOOTER */
.footer {
    background-color: var(--color-dark);
    color: var(--color-cream);
    padding: 6rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: block;
}

.footer-logo img {
    height: 128px;
    width: auto;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: ;
    letter-spacing: 1px;
    color: var(--color-cream);
}

.footer-col ul li {
    margin-bottom: 0.2rem;
    color: var(--color-cream);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col p {
    color: var(--color-cream);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    color: var(--color-cream);
    font-size: 0.9rem;
}

.footer-bottom a {
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--color-gold);
}

/* MENU LISTS (Alternative to Grid) */
.menu-list-container {
    max-width: 1000px;
    margin: 0 auto;
}

.menu-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
}

.menu-col {
    display: flex;
    flex-direction: column;
}

.list-subtitle {
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem;
    color: var(--color-brown);
    border-bottom: 2px solid var(--color-gold);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.text-menu-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.text-menu-list li {
    display: flex;
    flex-direction: column;
}

.list-item-header {
    display: flex;
    align-items: baseline;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.3rem;
}

.list-item-header .dots {
    flex-grow: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 1rem;
    position: relative;
    top: -6px;
}

.list-item-desc {
    font-size: 0.95rem;
    color: #555;
    padding-right: 5rem;
}

/* RETAIL SECTION CAROUSEL */
.retail-section {
    background-color: var(--color-dark);
    color: #fff;
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    /* Fading background on the left */
    background-image: linear-gradient(to right, rgba(76, 37, 19, 0) 0%, rgba(76, 37, 19, 0.6) 30%, rgba(76, 37, 19, 1) 60%), url('assets/img/coffee-shelf-bg.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 100%;
}

.retail-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.retail-header h2 {
    color: var(--color-gold);
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

.retail-header p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 100vw;
    display: flex;
    align-items: center;
    padding: 0;
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 2rem;
    padding: 2rem calc(50vw - 400px);
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    cursor: grab;
}

.carousel-container.active {
    cursor: grabbing;
}

.carousel-container.active * {
    pointer-events: none;
    user-select: none;
}

@media (max-width: 1000px) {
    .carousel-container {
        padding: 2rem 5%;
    }
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.retail-card {
    scroll-snap-align: center;
    flex: 0 0 auto;
    background-color: #262626;
    padding: 3rem 2rem;
    border-radius: 16px;
    width: 320px;
    text-align: center;
    border: 1px solid rgba(238, 217, 162, 0.1);
    transition: transform 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.retail-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
}

.retail-icon {
    font-size: 48px;
    color: var(--color-gold);
    margin: 0 auto 1.5rem;
}

.retail-card h4 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.retail-card p {
    font-size: 0.95rem;
    color: #bbb;
    margin-bottom: auto;
}

.retail-card .price {
    display: block;
    font-size: 1.4rem;
    color: var(--color-gold);
    font-weight: 600;
    margin: 2rem 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-gold);
    color: var(--color-dark);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.carousel-btn:hover {
    background-color: #f5e4b9;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: max(2rem, calc(50vw - 480px));
}

.next-btn {
    right: max(2rem, calc(50vw - 480px));
}

@media (max-width: 768px) {

    .prev-btn,
    .next-btn {
        display: none;
        /* Hide buttons on mobile, rely on touch scroll */
    }
}

/* STANDALONE CONTACT FORM */
.contact-section {
    padding: 6rem 0 8rem;
    background-color: var(--color-cream);
    color: var(--color-dark);
}

.contact-container {
    max-width: 700px;
}

.standalone-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.standalone-form input,
.standalone-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fafafa;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.standalone-form input:focus,
.standalone-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(238, 217, 162, 0.3);
    background: #fff;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .nav-center-info {
        display: none;
    }

    .hero-content h1 {
        font-size: 3.8rem;
    }
}

@media (max-width: 768px) {
    .navbar .logo {
        position: static;
        /* Entfernt die relative Box, damit das Bild zum Screen fliegen kann */
    }

    .navbar .logo img {
        height: 128px;
        left: 50vw;
        /* Garantiert: exakt 50% der Bildschirmbreite */
        transform: translateX(-50%);
        transform-origin: top center;
        top: 15px;
    }

    .navbar.scrolled .logo img {
        transform: translateX(-50%) scale(0.65);
        transform-origin: top center;
        /* Verhindert das 'Wandern' nach links beim Schrumpfen */
    }

    .footer-logo {
        display: block;
        height: auto;
        width: 180px;
        position: relative;
    }

    .footer-logo img {
        height: auto;
        width: 100%;
        position: static;
        transform: none;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        /* Etwas breiter für das Logo */
        height: 100dvh;
        /* Dynamic Viewport Height: Verhindert Verschlucken des Footers durch Browser-Bars */
        background-color: var(--color-cream);
        flex-direction: column;
        justify-content: flex-start;
        /* Links oben beginnen */
        align-items: flex-start;
        padding: 40px;
        z-index: 100000;
        transition: right 0.3s ease-in-out;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
        gap: 0;
        /* Wir nutzen margin für exakte Kontrolle */
        overflow-y: auto;
        /* Fallback: Scrollbar falls Inhalt doch mal zu groß wird */
    }

    .nav-mobile-header {
        display: block;
        margin-bottom: 3rem;
        width: 100%;
    }

    .mobile-sidebar-logo {
        height: 100px;
        /* Standardhöhe, kann nun bequem in der CSS angepasst werden */
        width: auto;
        display: block;
    }

    .nav-mobile-footer {
        display: block;
        margin-top: auto;
        /* Ganz nach unten schieben */
        padding-top: 2rem;
        width: 100%;
    }

    .nav-mobile-footer p {
        font-size: 0.8rem;
        color: var(--color-dark);
        opacity: 0.6;
    }

    .nav-links.nav-open {
        right: 0;
    }

    .nav-links>a {
        font-size: 1.3rem;
        /* Etwas kleiner für Eleganz */
        margin-bottom: 1.2rem;
        color: var(--color-dark);
        font-weight: 500;
    }

    /* DROPDOWN-FLATTENING FÜR MOBILE */
    .dropdown {
        display: contents;
    }

    .dropbtn {
        display: none;
    }

    .dropdown-content {
        display: flex !important;
        position: static;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        flex-direction: column;
    }

    .dropdown-content a {
        font-size: 1.3rem;
        padding: 0;
        margin-bottom: 1.2rem;
        color: var(--color-dark);
        font-weight: 500;
    }

    .dropdown-content a i {
        display: none;
        /* Blendet die Icons komplett aus für eine cleane Ansicht */
    }

    .mobile-menu-btn {
        display: flex;
        position: relative;
        z-index: 100001;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about h2,
    .section-title h2 {
        font-size: 2.5rem;
    }

    .nav-container-full {
        padding: 0 1.5rem;
        /* Weniger Abstand lässt die Navbar absolut exakt 100vw Breite halten! */
    }

    .parallax-section {
        overflow-x: hidden;
        /* Beschränkt die dekorativen Bilder rein auf den sichtbaren Bereich */
    }

    .menu-columns {
        grid-template-columns: 1fr;
        /* Hebt das 350px-Grid auf, damit das Menü nicht das Display sprengt */
    }
}

/* STATUS BADGE */
.status-badge {
    position: fixed;
    bottom: 50px;
    right: 50px;
    padding: 8px 25px 8px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    z-index: 2000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.status-badge i {
    font-size: 1.2rem;
}

.status-badge span,
.status-badge i {
    color: inherit;
}

.status-badge.open {
    background-color: #e8f5e9;
    border-color: #4caf50 !important;
    color: #2e7d32 !important;
}

.status-badge.closed {
    background-color: #ffebee;
    border-color: #f44336 !important;
    color: #c62828 !important;
}

@media (max-width: 768px) {
    .status-badge {
        bottom: 20px;
        right: 20px;
    }
}

/* PARALLAX ELEMENTS */
.parallax-section {
    position: relative;
}

.parallax-element {
    position: absolute;
    z-index: 1000;
    pointer-events: none;
    transition: transform 0.1s ease-out;
    /* smooth parallax */
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
    /* nicer floating effect */
}

/* Croissant */
.bakery-p1 {
    top: 0%;
    left: -50px;
    width: 250px;
    transform: rotate(-15deg);
}

/* Baguette */
.bakery-p2 {
    top: 50%;
    right: -80px;
    width: 300px;
    transform: rotate(25deg);
}

/* Brezel */
.bakery-p3 {
    bottom: 15%;
    left: 80px;
    width: 200px;
    transform: rotate(10deg);
}

/* Zimtschnecke */
.bakery-p4 {
    bottom: -40px;
    right: 250px;
    width: 200px;
    transform: rotate(-20deg);
}

/* Brotkranz */
.bakery-p5 {
    top: 15%;
    right: 20%;
    width: 256px;
    transform: rotate(0deg);
}

/* Cappucino */
.coffee-p1 {
    top: -10%;
    left: -40px;
    width: 200px;
    transform: rotate(15deg);
}

/* Latte Machiato */
.coffee-p2 {
    top: 85%;
    right: -50px;
    width: 200px;
    transform: rotate(-15deg);
}

/* Espresso */
.coffee-p3 {
    bottom: 15%;
    left: 100px;
    width: 190px;
    transform: rotate(-25deg);
}

/* Kaffeebohnen */
.coffee-p4 {
    bottom: -50px;
    right: 60px;
    width: 240px;
    transform: rotate(5deg);
}

@media (max-width: 900px) {
    .parallax-element {
        display: none;
        /* Hide on smaller screens to prevent clutter and overflow issues */
    }
}

/* MAP SECTION */
.map-section {
    width: 100%;
    background-color: #4C2513;
    padding: 0;
    line-height: 0;
    /* Verhindert kleine Lücken unten */
}

#map {
    height: 450px;
    width: 100%;
    z-index: 10;
    /* Niedriger als Header und Status-Badge */
    background-color: var(--color-cream);
    border-top: 1px solid rgba(76, 37, 19, 0.1);
    border-bottom: 1px solid rgba(76, 37, 19, 0.1);
}

/* Map Branding - Hochwertiges Mapping auf Brand-Farben via SVG Matrix */
.leaflet-tile-pane {
    filter: url(#map-branding-filter);
}

@media (max-width: 768px) {
    #map {
        height: 450px;
    }
}

/* LEGAL PAGE STYLES */
.legal-page {
    padding-top: 180px; /* Platz für das große Header-Logo auf der Desktop-Ansicht */
    padding-bottom: 5rem;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--color-dark);
}

.legal-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    color: var(--color-brown);
}

.legal-content p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: var(--color-dark);
    opacity: 0.85;
}

.legal-content a {
    color: var(--color-brown);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.legal-content a:hover {
    opacity: 0.7;
}

@media (max-width: 900px) {
    .legal-page {
        padding-top: 120px;
    }
    
    .legal-content h1 {
        font-size: 2.2rem;
    }
}