:root {
    --accent: #C76632;
    --text: #3D1F0F;
    --bg: #F7F3E9;
    --light: #ffffff;
}

/* GLOBAL */
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, sans-serif;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 1.2rem;
}

/* TOPBAR */
.topbar {
    background: #EFE3D4;
    padding: .4rem 0;
    font-size: .9rem;
}
.topbar-inner {
    display: flex;
    justify-content: flex-end;
    gap: 1.2rem;
}
.topbar a { color: var(--text); text-decoration: none; }

/* NAVBAR */
.navbar {
    background: #F9F7E9;
    border-bottom: 1px solid #E0D4C5;
    padding: .6rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { height: 80px; }
.logo-text {
    font-family: Georgia, serif;
    color: var(--accent);
    font-size: 1.6rem;
    text-align: center;
}
.logo-sub { text-align: center; }

/* Desktop Menu */
.desktop-menu {
    list-style: none;
    display: flex;
    gap: 1.4rem;
}
.desktop-menu a {
    text-decoration: none;
    font-weight: 600;
    color: var(--text);
}
.desktop-menu a.active { color: var(--accent); }

.mobile-menu-btn {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
}


/* OFFCANVAS – Einheitlich & korrekt */
.offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;              /* responsive Breite */
    max-width: 320px;        /* nie größer als 320px */
    height: 100vh;
    background: #fffcee;
    padding: 2rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    transition: right .35s ease;
    z-index: 3000;
    box-shadow: -4px 0 15px rgba(0,0,0,0.25);
}

.offcanvas.show {
    right: 0;                /* sichtbar */
}

/* Schließen-Button */
.close-btn {
    font-size: 2.4rem;
    background: none;
    border: none;
    color: var(--accent);
    margin-left: auto;
    cursor: pointer;
}

/* Offcanvas Links */
.offcanvas a {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    padding: .75rem 0;
    color: #3D1F0F;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.offcanvas a:last-child {
    border-bottom: none;
}

/* Overlay */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    pointer-events: none;
    transition: .35s ease;
    z-index: 2500;
}

.overlay.show {
    opacity: 1;
    pointer-events: all;
}


/* CONTACT SECTION */
.kontakt-section { padding: 3rem 0; }
.kontakt-section h1 {
    text-align: center;
    color: var(--accent);
}
.kontakt-intro {
    text-align: center;
    color: #5c4634;
    margin-bottom: 2rem;
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.whatsapp {
    background: #25D366;
    color: white;
    padding: .8rem 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    margin-top: .5rem;
}

/* Map */
.kontakt-map iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 12px;
}

/* FOOTER */
.footer {
    background: #2E1B11;
    color: #EFE3D4;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2.5rem;
}

.footer-col h3 {
    color: #F4D5B2;
    margin: 0 0 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: .4rem;
}

.footer-copy {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer a {
    color: #F4D5B2;
    text-decoration: none;
}

.footer a:hover {
    color: #ffffff;
}

.orte-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.orte-footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.orte-footer-grid li {
    font-size: .95rem;
    line-height: 1.4;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) 
    {.desktop-menu { display: none; }
    .mobile-menu-btn { display: block; }

    .topbar-inner {
        justify-content: center;
        flex-wrap: wrap;
        gap: .4rem;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .orte-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .desktop-menu { display: none; }
    .mobile-menu-btn { display: block; }
    .kontakt-grid { grid-template-columns: 1fr; }
    .logo { height: 65px; }
}
