@charset "UTF-8";

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

body {
    font-family: 'Montserrat', sans-serif;
    color: #444749;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Layout --- */
.container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* =========================================
   LINKER BEREICH
========================================= */
.left-panel-wrapper {
    flex: 1;
    display: flex;
    height: 100vh;
    position: sticky;
    top: 0;
    overflow: hidden;
}

.white-stripe-container {
    width: 150px;
    background-color: #ffffff;
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    padding: 0;
    overflow: hidden;
}

.stripe-column {
    width: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stripe-column:nth-child(1),
.stripe-column:nth-child(3) {
    margin-top: -70px;
}

.logo-item-wrapper {
    width: 50px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.logo-vertical-img {
    width: 130px;
    height: auto;
    transform: rotate(-90deg);
}

.beige-main-container {
    flex: 1;
    background-color: #DFDAD2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
}

.logo-center-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.main-logo-svg {
    width: 80%;
    max-width: 500px;
    height: auto;
}

/* Footer Links Container (Socials + Impressum Link) */
.left-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    z-index: 5;
}

.social-icons-row {
    display: flex;
    gap: 20px;
}

.social-link {
    display: inline-block;
    text-decoration: none;
}

.social-svg {
    width: 32px;
    height: 32px;
    fill: #2A261B;
    transition: fill 0.3s ease;
}

.social-link:hover .social-svg {
    fill: #B45C29;
}

.impressum-link {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2A261B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum-link:hover {
    color: #B45C29;
}

/* =========================================
   RECHTER BEREICH
========================================= */
.right-side {
    background-color: #ffffff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    z-index: 10;
}

/* --- Typografie --- */
h1, h2 {
    font-family: 'Playfair Display', serif;
    color: #B45C29;
    text-transform: uppercase;
    line-height: 1.1;
}

h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    letter-spacing:3px;
}

.subline {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #3C011B;
    line-height: 1.3;
    margin-bottom: 15px;
    text-transform: uppercase;
	font-weight:700;
    letter-spacing:1px;
}

.intro-text {
    margin-bottom: 60px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing:2px;
}

section, .menu-section {
    margin-bottom: 60px;
}

p, li, address {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

a {
    text-decoration: none;
    color: #000000;
    transition: color 0.3s ease;
}

a:hover {
    color: #B45C29;
}

ul {
    list-style: none;
}

address {
    font-style: normal;
    line-height: 1.8;
}

/* --- BUTTON STYLE --- */
.btn-menu {
    display: inline-block;
    background-color: #2b261b;
    color: #ffffff !important;
    padding: 16px 38px;
    border: 2px solid #2b261b;
    box-shadow: -3px 3px 0 #ffffff, -6px 6px 0 #2b261b;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    margin-bottom: 15px;
}

.btn-menu:hover {
    background-color: #B45C29;
    border-color: #B45C29;
    box-shadow: -3px 3px 0 #ffffff, -6px 6px 0 #B45C29;
    color: #ffffff !important;
}

.togo-text {
    font-size: 1.1rem;
    color: #444749;
    margin-top: 5px;
}

/* --- Mobile Anpassung --- */
.mobile-header {
    display: none;
}

.mobile-footer {
    display: none;
}

@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }

    .left-panel-wrapper {
        display: none;
    }

    .right-side {
        padding: 40px 30px;
    }

    h1 {
        font-size: 2.8rem;
    }

    .subline {
        font-size: 1.5rem;
    }

    section, .menu-section, .intro-text {
        margin-bottom: 40px;
    }

    .mobile-header {
        display: block;
        background-color: #DFDAD2;
        padding: 40px 20px;
        text-align: center;
        margin: -40px -30px 40px -30px;
    }

    .mobile-logo {
        width: 200px;
        height: auto;
    }

    /* Footer Bereich Mobile */
    .mobile-footer {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }

    .mobile-socials {
        display: flex;
        gap: 20px;
    }
}