/* ============================================
   CSS Variables & Base Styles
   ============================================ */
:root {
    --green-primary: #2b6b35;
    --green-dark: #19581f;
    --light-green: rgb(103, 144, 61);
    --beige: #f4ece0;
    --light-gray: #f9f9f9;
    --orange-accent: #ce9457;
    --white: #ffffff;
    --text-dark: #333333;
    --text-medium: #666666;
    --border-radius: 8px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--green-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--orange-accent);
    cursor: pointer;
}

/* ============================================
   Header & Navigation
   ============================================ */
.site-header {
    background: linear-gradient(var(--green-dark) 60%, var(--light-green));
    color: var(--white);
    padding: 1.5rem 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}
.logo-section {
    display: flex;
}

.logo__wrapper {
    display: flex;
    justify-content: flex-end;
}

.logo {
    width: 100%;
    max-width: 180px;
}

.logo-section__text-wrapper {
    text-shadow: 0 0.5px black;
    display: flex;
    align-items: center;
    width: 100%;
}

.logo-section__text-wrapper--mobile {
    display: none;
}

@media screen and (min-width: 1100px) {
    .logo__wrapper {
        position: absolute;
        right: 2rem;
        top: 0;
    }
}

.logo-section h1 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

.burger-menu {
    display: none;
}

.main-navigation {
    margin-top: 1rem;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nav-item a {
    display: block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.nav-item a:hover,
.nav-item.active a {
    background: var(--orange-accent);
    transform: translateY(-2px);
}

/* ============================================
   Content Layout
   ============================================ */
.content-wrapper {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

/* ============================================
   Sidebar
   ============================================ */
.sidebar {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    height: fit-content;
    position: sticky;
    top: 153px;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section--mobile {
    display: none;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h2 {
    color: var(--green-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--green-primary);
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    margin-bottom: 0.5rem;
}

.sidebar-list a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--text-dark);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.sidebar-list a:hover {
    background: var(--white);
    color: var(--green-primary);
    padding-left: 1rem;
}

.contact-section--mobile {
    display: none;
}

.contact-info {
    font-style: normal;
    line-height: 1.8;
}

.contact-info strong {
    color: var(--green-primary);
    display: block;
    margin-bottom: 0.25rem;
}

.opening-hours {
    line-height: 1.8;
}

/* ============================================
   Main Content
   ============================================ */
.main-content {
    background: var(--white);
}

.content-block {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.content-block:hover {
    box-shadow: var(--shadow-md);
}

.content-block h1 {
    color: var(--green-primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--beige);
}

.content-with-image {
    display: flow-root;
}

.content-image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.content-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.content-image.left {
    float: left;
    margin: 0 1.5rem 1rem 0;
}

.content-image.right {
    float: right;
    margin: 0 0 1rem 1.5rem;
}

.content-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-text p:last-child {
    margin-bottom: 0;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: linear-gradient(var(--light-green) 60%, var(--green-dark));
    color: var(--white);
    margin-top: 4rem;
    padding: 2rem 0;
}

.footer-links,
.footer-text {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-links {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links a {
    color: var(--white);
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--orange-accent);
}

.footer-text {
    padding-top: 1.5rem;
    text-align: center;
    line-height: 1.8;
    opacity: 0.9;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablets */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .sidebar-section {
        margin-bottom: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .header-container {
        padding: 0 1rem;
    }

    .logo-section h1 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .main-navigation {
        margin-top: 0;
    }

    .site-header {
        padding: 15px 0;
        height: 152px;
    }

    .header-container {
        height: 100%;

        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .burger-menu {
        display: block;
        position: relative;
    }

    /* Checkbox unsichtbar */
    .burger-toggle {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    /* SVG Wrapper */
    .svg-wrapper {
        width: 60px;
        max-width: 60px;
        cursor: pointer;
        display: inline-flex;
    }

    /* Menü */
    .burger-menu .list-wrapper {
        position: absolute;
        z-index: -1;
        left: -1rem;
        top: calc(152px - 15px);

        background: linear-gradient(var(--light-green), var(--green-dark), var(--light-green));

        padding: 15px 30px;
        width: 360px;
        border-bottom-right-radius: var(--border-radius);

        overflow: hidden;

        max-height: 0;
        opacity: 0;

        transition:
            max-height 0.45s ease,
            opacity 0.3s ease,
            transform 0.45s ease;
    }

    /* OPEN */
    .burger-toggle:checked ~ .list-wrapper {
        max-height: 500px;
        opacity: 1;
        z-index: 6;
    }

    .logo-section__text-wrapper {
        display: none;
    }

    .logo-section__text-wrapper--mobile {
        display: block;
    }
    .logo-section__text-wrapper--mobile h2 {
        margin-left: 12px;
    }

    /*.END  */
    .nav-list {
        display: none;
        flex-direction: column;
    }

    .nav-list--open {
        flex-direction: column;
        overflow: hidden;
    }

    .nav-item {
        margin-bottom: 15px;
    }

    .nav-item a {
        text-align: center;
    }

    .content-wrapper {
        margin: 1rem auto;
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .sidebar {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .sidebar-section {
        display: none;
    }

    .sidebar-list {
        display: grid;
        transition: grid-template-rows 0.5s ease-out;
    }

    .sidebar-section--mobile {
        display: block;
    }

    .contact-section--mobile {
        display: block;
    }

    .contact-section:not(.contact-section--mobile) {
        display: none;
    }

    .accordion-title {
        color: var(--green-primary);
        font-size: 1.3rem;
        font-weight: bold;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--green-primary);
    }

    .content-block {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .content-block h1 {
        font-size: 1.4rem;
    }

    .content-image.left,
    .content-image.right {
        float: none;
        margin: 0 0 1rem 0;
        width: 100%;
    }

    .footer-links,
    .footer-text {
        padding: 1rem;
    }

    .footer-links {
        font-size: 0.9rem;
    }

    .footer-text {
        font-size: 0.85rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .content-block {
        padding: 1rem;
    }

    .nav-item a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .site-header,
    .sidebar,
    .site-footer {
        display: none;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        margin: 0;
        padding: 0;
    }

    .content-block {
        box-shadow: none;
        page-break-inside: avoid;
    }
}
