:root {
    --accent: #C76632;
    --text: #3D1F0F;
    --bg: #F7F3E9;
    --shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

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

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 3rem 0;
}

.gallery-section h1 {
    text-align: center;
    color: var(--accent);
    font-size: 2rem;
}

.gallery-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gallery-item picture,
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    transition: transform .25s;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 92%;
    max-height: 85vh;
}

.lb-prev, .lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    cursor: pointer;
    padding: 15px;
}

.lb-prev { left: 25px; }
.lb-next { right: 25px; }

/* MOBILE */
@media (max-width: 600px) {
    .gallery-item img {
        height: 180px;
    }
}


/* ===== Global ===== */

:root {
    --accent: #C76632;
    --text: #3D1F0F;
    --bg: #F7F3E9;
    --shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

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

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

/* ===== NAVIGATION ===== */
.navbar {
    background: #F9F7E9;
    padding: .7rem 0;
    border-bottom: 1px solid #E0D4C5;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-block {
    text-align: center;
}

.logo {
    height: 75px;
}

.logo-text {
    font-family: Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
}

.logo-sub {
    font-size: 0.8rem;
    letter-spacing: .12em;
    color: #7a5a43;
}

.desktop-menu {
    display: flex;
    gap: 1.3rem;
    list-style: none;
}

.desktop-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
}
.desktop-menu a.active {
    color: var(--accent);
}

.mobile-menu-btn {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

/* ===== Offcanvas ===== */
.offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fffcee;
    padding: 2rem 1.5rem;
    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;
}


.close-btn {
    font-size: 2.4rem;
    cursor: pointer;
    color: var(--accent);
    margin-left: auto;
}

.offcanvas a {
    text-decoration: none;
    font-weight: 600;
    color: var(--text);
}

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

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

/* ===== Gallery ===== */
.gallery-section {
    padding: 3rem 0;
}

.gallery-section h1 {
    text-align: center;
    color: var(--accent);
}

.gallery-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: .25s;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
}

.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    cursor: pointer;
    padding: 15px;
    user-select: none;
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* 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;
    }
}

/* ===== Mobile ===== */
@media (max-width: 900px) {
    .desktop-menu { display: none; }
    .mobile-menu-btn { display: block; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; }
}
