/* =========================================
   0. GOOGLE FONTS IMPORT
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* =========================================
   1. GLOBALE VARIABLEN
   ========================================= */
:root {
    --balkan-black: #000000;
    --balkan-white: #ffffff;
    --bg-card: #151515;
    --grill-red: #cf2e2e;
    --grill-orange: #ff6900;
    --grill-amber: #fcb900;
    --text-muted: #abb8c3;
    
    /* Neue Schriftarten */
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

/* =========================================
   2. BASIS-RESET
   ========================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--balkan-black);
    color: var(--balkan-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

html {
    scroll-behavior: smooth;
}

/* =========================================
   3. HEADER & NAVIGATION
   ========================================= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(0, 0, 0, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #222;
}

/* Sorgt für die exakte Zentrierung der Mitte */
header > .logo, 
header > .header-right {
    flex: 1; 
}

header > nav {
    flex: 2;
    display: flex;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px; 
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* --- RAUCH & KOHLEN EFFEKT --- */
.logo a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.logo-effects {
    position: absolute;
    bottom: -5px; 
    left: 50%;
    transform: translateX(-50%);
    width: 120px; 
    height: 100%;
    z-index: -1; 
    pointer-events: none; 
}

.charcoal-base {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 15px; 
    background: linear-gradient(to right, #0a0a0a, #2a2a2a, #111, #333, #050505);
    clip-path: polygon(0% 100%, 8% 60%, 18% 85%, 30% 40%, 45% 75%, 58% 30%, 72% 80%, 85% 45%, 95% 70%, 100% 100%);
    z-index: 2;
}

.charcoal-base::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(150,150,150,0.3) 1px, transparent 2px),
                radial-gradient(circle at 70% 60%, rgba(120,120,120,0.4) 2px, transparent 3px);
}

.charcoal-glow {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 15px;
    background: radial-gradient(ellipse at center, rgba(255, 69, 0, 0.9) 0%, rgba(207, 46, 46, 0.5) 45%, transparent 75%);
    background-size: 200% 100%; 
    filter: blur(5px);
    z-index: 1;
    animation: smoothWanderGlow 8s ease-in-out infinite; 
    mix-blend-mode: screen;
}

@keyframes smoothWanderGlow {
    0%   { background-position: 0% 50%; opacity: 0.6; transform: translateX(-50%) scale(0.95); }
    33%  { background-position: 100% 50%; opacity: 1; transform: translateX(-50%) scale(1.05); }
    66%  { background-position: 40% 50%; opacity: 0.7; transform: translateX(-50%) scale(0.98); }
    100% { background-position: 0% 50%; opacity: 0.6; transform: translateX(-50%) scale(0.95); }
}

.smoke-particle {
    position: absolute;
    bottom: 8px;
    background: rgba(255, 255, 255, 0.25); 
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0;
    animation: rise 4s infinite ease-out;
}

.s1 { left: 10%; animation-duration: 3.5s; animation-delay: 0s; width: 25px; height: 25px; }
.s2 { left: 35%; animation-duration: 5s; animation-delay: 1.2s; width: 40px; height: 40px; }
.s3 { left: 20%; animation-duration: 4.5s; animation-delay: 2.5s; width: 30px; height: 30px; }
.s4 { left: 55%; animation-duration: 5.5s; animation-delay: 0.5s; width: 35px; height: 35px; }
.s5 { left: 75%; animation-duration: 4s; animation-delay: 1.8s; width: 25px; height: 25px; }
.s6 { left: 45%; animation-duration: 6s; animation-delay: 3.2s; width: 45px; height: 45px; }

@keyframes rise {
    0% { transform: translateY(0) scale(1) translateX(0); opacity: 0; }
    15% { opacity: 0.5; }
    50% { opacity: 0.25; transform: translateY(-40px) scale(1.8) translateX(15px); }
    100% { transform: translateY(-85px) scale(2.5) translateX(-25px); opacity: 0; }
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--balkan-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--grill-amber);
}

.call-btn {
    background-color: var(--balkan-black);
    color: var(--balkan-white);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-family: var(--font-main);
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.call-btn:hover {
    background-color: var(--grill-orange);
    transform: scale(1.02);
}

/* =========================================
   FADE-IN ANIMATIONEN
   ========================================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.5s; }
.delay-4 { transition-delay: 0.7s; }
.delay-5 { transition-delay: 0.9s; }
.delay-6 { transition-delay: 1.1s; }
.delay-7 { transition-delay: 1.3s; }

.header-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    transition: transform 0.3s ease, filter 0.3s ease;
    text-decoration: none;
}

.header-socials svg {
    width: 16px;
    height: 16px;
    fill: white; 
}

.header-socials .fb { background-color: #1877F2; } 
.header-socials .ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); } 
.header-socials .tt { background-color: #000000; border: 1px solid #333; } 

.header-socials a:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.phone-container {
    display: flex;
    gap: 10px; 
    flex-wrap: wrap; 
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .phone-container {
        justify-content: center; 
        width: 100%;
    }
}

.language-switch {
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--text-muted);
    padding-right: 5px;
}

.lang-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.lang-link:hover {
    color: var(--grill-amber);
}

.lang-link.active {
    color: var(--balkan-white);
    border-bottom: 1px solid var(--grill-red);
}

.lang-separator {
    margin: 0 5px;
    color: #444;
}

/* =========================================
   4. HERO SEKTION
   ========================================= */
.hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    background-color: var(--balkan-black); 
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 15s infinite alternate ease-in-out;
}

.hero-image-wrapper::after {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 60%; 
    background: linear-gradient(to right, rgba(0,0,0,0) 0%, var(--balkan-black) 100%);
    z-index: 2;
}

.hero-image-wrapper::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.2);
    z-index: 3;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-content {
    position: relative;
    z-index: 4; 
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    text-align: left; 
    padding-left: 35%; 
}

.hero h1 {
    font-size: 4rem;
    color: var(--balkan-white);
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 0 5px 15px rgba(0,0,0,0.8);
}

.hero p {
    font-size: 1.3rem;
    color: var(--grill-amber);
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.btn-subtle {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background-color: transparent;
    color: var(--balkan-white);
    border: 1px solid var(--text-muted);
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.btn-subtle:hover {
    border-color: var(--grill-amber);
    color: var(--grill-amber);
    background-color: rgba(255, 255, 255, 0.05);
}

/* =========================================
   5. BELIEBTESTE GERICHTE (Scroll Arc)
   ========================================= */
.popular-dishes-section {
    background-color: var(--balkan-black);
    width: 100%;
}

.scroll-timeline {
    height: 800vh; 
    position: relative;
    width: 100%;
}

.sticky-wrapper {
    position: sticky;
    top: 15vh; 
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center; 
}

.section-title {
    color: var(--grill-amber); 
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-top: 200px; 
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.8);
}

.sticky-stage {
    position: relative;
    width: 1000px;
    max-width: 100%;
    height: 400px;
    margin: 0 auto;
}

.fliegendes-bild {
    width: 250px;
    height: 180px;
    border-radius: 15px;
    position: absolute;
    left: 0;
    top: 0;
    
    offset-path: path("M 0,350 Q 500,100 1000,350");
    offset-distance: 0%;
    opacity: 0;
    transform: scale(0.8);
    
    box-shadow: 0 15px 30px rgba(0,0,0,0.8);
    border: 2px solid #222;
    
    transition: offset-distance 0.1s ease-out, opacity 0.2s ease-out, transform 0.2s ease-out;
    will-change: offset-distance, opacity, transform;
    
    margin-top: -90px; 
    margin-left: -125px;
}

#bild-0 { background: url('bild1.png') center/cover; }
#bild-1 { background: url('sarma.png') center/cover; }
#bild-2 { background: url('bild3.png') center/cover; }
#bild-3 { background: url('semb.png') center/cover; }
#bild-4 { background: url('bild2.png') center/cover; }

/* =========================================
   6. STACKING EFFEKT & KARTEN
   ========================================= */
.stack-section {
    padding-bottom: 7vh; 
}

.header-spacer {
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.header-spacer h2 {
    font-size: 2.5rem;
    color: var(--grill-red);
}

.stack-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.card {
    position: sticky;
    top: 120px; 
    background: var(--balkan-black); 
    height: 450px;
    margin-bottom: 100px; 
    display: flex;
    flex-direction: row;
    gap: 40px; 
    transition: transform 0.3s ease;
}

.card-content {
    flex: 1;
    padding: 0; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h2 {
    color: var(--balkan-white);
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.spec-label {
    background: var(--balkan-black);
    color: var(--grill-amber);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    align-self: flex-start;
    border: 1px solid #333;
}

.card-image {
    flex: 1;
    background-color: transparent;
    overflow: hidden; 
    border-radius: 12px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px; 
    transition: transform 0.3s ease-in-out; 
}

.card:hover .card-image img {
    transform: scale(1.05);
}

/* =========================================
   7. EVENTS & CATERING (Parallax)
   ========================================= */
.parallax-section {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1600&q=80');
    border-top: 2px solid var(--grill-red);
    border-bottom: 2px solid var(--grill-red);
    margin: 80px 0; 
}

.parallax-content {
    max-width: 800px;
    padding: 20px;
}

.parallax-content h2 {
    color: var(--grill-amber);
    font-size: 3rem;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.8);
}

.parallax-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--balkan-white);
}

/* =========================================
   8. STANDORTE & MAPS
   ========================================= */
.locations-section {
    padding-bottom: 100px;
    background-color: var(--balkan-black);
}

.locations-grid {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.location-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border-top: 4px solid var(--grill-red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-card h3 {
    color: var(--balkan-white);
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.location-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.map-container iframe {
    display: block; 
}

/* =========================================
   9. FOOTER
   ========================================= */
footer {
    background-color: var(--balkan-black);
    color: var(--text-muted);
    border-top: 1px solid #222;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    color: var(--balkan-white);
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p {
    line-height: 1.6;
}

.hours-box {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--grill-red);
}

.hours-box h3 {
    margin-top: 0;
}

.hours-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-box li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    border-bottom: 1px solid #222;
    padding-bottom: 5px;
    font-size: 0.95rem;
}

.hours-box li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

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

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: var(--bg-card);
    color: var(--balkan-white);
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--grill-red);
    transform: translateY(-3px);
}

.social-icons svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-icons a.fb-icon {
    background-color: #1877F2; 
}

.social-icons a.fb-icon:hover {
    background-color: #166fe5; 
}

.social-icons a.ig-icon {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icons a.ig-icon:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    filter: brightness(1.15); 
}

.social-icons a.tt-icon {
    background-color: #000000;
    border: 1px solid #333; 
}

.social-icons a.tt-icon:hover {
    background-color: #111111;
    border-color: transparent;
    box-shadow: -2px 2px 0px #25F4EE, 2px -2px 0px #FE2C55; 
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--grill-amber);
}

/* =========================================
   10. COOKIE BANNER
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    max-width: calc(100% - 40px);
    background-color: #1c1c1c; 
    color: var(--text-muted);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.9);
    z-index: 9999;
    border: 1px solid #333;
    border-top: 4px solid var(--grill-red);
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.cookie-banner h4 {
    color: var(--balkan-white);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.cookie-banner p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.cookie-banner a {
    color: var(--grill-amber);
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    gap: 5px;
    margin-top: 10px;
}

.cookie-buttons button {
    width: 70%; 
    padding: 5px;
    font-size: 0.95rem;
    text-align: center;
    justify-content: center;
}

.cookie-buttons .call-btn {
    background-color: #ff4500;
    color: #ffffff;
    border: none;
}

.cookie-buttons .call-btn:hover {
    background-color: #e03e00; 
    transform: scale(1.02);
}

/* =========================================
   360° RUNDGANG
   ========================================= */
.tour-section {
    background-color: var(--balkan-black);
    padding-bottom: 80px;
    text-align: center;
}

.tour-container {
    max-width: 1000px;
    margin: 0 auto; 
    padding: 0 20px;
    width: 100%;
    height: 500px; 
}

.tour-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    border-top: 4px solid var(--grill-red); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .tour-container {
        height: 350px; 
    }
}

/* =========================================
   11. MOBILE OPTIMIERUNG
   ========================================= */
@media (max-width: 768px) {
    /* HEADER - Logo Mitte, Nummern außen */
    header {
        position: relative;
        flex-direction: column;
        padding: 15px 10px;
        display: flex;
        align-items: center;
    }

    .logo { margin: 0 auto; z-index: 5; padding-top: 5px; }
    .logo img { height: 50px; }
    .logo-effects { transform: translateX(-50%) scale(0.5); bottom: -8px; }

    .header-right { position: static; width: 100%; }

    .phone-container {
        position: absolute;
        top: 15px;
        left: 0;
        width: 100%;
        padding: 0 10px;
        display: flex;
        justify-content: space-between;
        pointer-events: none;
        z-index: 10;
    }

    .phone-container .call-btn {
        pointer-events: auto;
        font-size: 0.75rem;
        padding: 6px 8px;
        margin: 0;
    }

    .language-switch {
        position: absolute;
        top: 55px;
        right: 15px;
        font-size: 0.7rem;
        z-index: 10;
    }

    nav { width: 100%; margin-top: 10px; }
    nav ul { flex-wrap: wrap; justify-content: center; gap: 12px; font-size: 0.8rem; }

    /* DEINE ORIGINALEN HIGHLIGHTS & FOOTER */
    .card-content { text-align: center; align-items: center; }
    .spec-label { align-self: center; }
    .footer-column { text-align: center; }
    .social-icons { justify-content: center; }
    .hours-box li { justify-content: center; gap: 15px; }

    /* DEINE ORIGINALEN SECTIONS */
    .hero { height: 50vh; min-height: 400px; justify-content: center; }
    .hero-image-wrapper { width: 100%; opacity: 0.90; }
    .hero-image-wrapper::after { width: 100%; }
    .hero-content { padding-left: 20px; padding-right: 20px; text-align: center; }
    .hero h1 { font-size: 2.3rem; }
    .hero p { font-size: 1.1rem; margin-bottom: 20px; }

    .menu-images-container { padding: 0 10px; }
    .menu-page-img { width: 90%; max-width: 350px; margin: 0 auto; }

    /* DEINE PERFEKTEN FLIEGENDEN BILDER (TOP 5) */
    .scroll-timeline { height: 200vh; }
    .sticky-wrapper { top: 200px; height: 80vh; display: flex; flex-direction: column; align-items: center; }
    .section-title { font-size: 1.6rem; margin-top: 20px; margin-bottom: 0; z-index: 10; }
    .sticky-stage { width: 100%; height: 350px; position: center; }
    
    .fliegendes-bild {
        width: 220px;       
        height: 160px;
        left: 50%;
        top: 75%;
        margin-left: -110px; 
        margin-top: -80px;   
        offset-path: path("M -250,80 Q 0,-20 250,80"); 
    }

    .stack-section { padding-bottom: 50px; }
    .card { flex-direction: column; height: auto; top: 20px; margin-bottom: 30px; }
    .card-image { height: 250px; }
    
    .parallax-section { background-attachment: scroll; height: auto; padding: 60px 20px; margin: 0; }
    .parallax-content h2 { font-size: 1.8rem; }
    
    .cookie-banner { flex-direction: column; gap: 15px; text-align: center; padding: 15px 20px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-links { margin-top: 10px; }
    .footer-links a { margin: 0 10px; }

    .tour-container { height: 350px; }
    
    .zigzag-row, .zigzag-row.reverse { flex-direction: column; gap: 30px; text-align: center; }
    .tilt-right, .tilt-left { transform: rotate(2deg); }
}

/* RECHTSTEXTE (Datenschutz & Impressum) */
.legal-section .header-spacer h2 {
    font-size: 1.8rem; 
    word-wrap: break-word; 
    hyphens: auto; 
}

.legal-container {
    padding: 20px; 
}

/* Extra-Anpassung für ganz schmale Handys */
@media (max-width: 380px) {
    .fliegendes-bild {
        width: 180px;
        height: 130px;
        margin-left: -90px;
        margin-top: -65px;
        offset-path: path("M -200,60 Q 0,-10 200,60"); 
    }
}

/* =========================================
   15. SPEISEKARTE & LUPEN-EFFEKT
   ========================================= */
.menu-page-section {
    background-color: var(--balkan-black);
    padding-bottom: 100px;
    text-align: center;
}

.menu-images-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 40px; 
}

.zoom-wrap {
    overflow: hidden;
    border-radius: 12px;
    border-top: 4px solid var(--grill-red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    cursor: zoom-in;
    position: relative;
    background-color: var(--balkan-black);
    margin: 0 auto; 
    width: 100%; 
    max-width: 800px; 
}

/* =========================================
   16. ÜBER UNS SEITE (ZIGZAG LAYOUT)
   ========================================= */
.about-page-section {
    background-color: var(--balkan-black);
    padding-bottom: 100px;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 80px; 
}

.zigzag-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.zigzag-row.reverse {
    flex-direction: row-reverse;
}

.zigzag-text {
    flex: 1;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--balkan-white);
}

.zigzag-text p {
    margin-bottom: 20px;
}

.zigzag-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.zigzag-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    border: 3px solid #333;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.tilt-right { transform: rotate(4deg); }
.tilt-left { transform: rotate(-4deg); }

.zigzag-image img:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(207, 46, 46, 0.4);
    border-color: var(--grill-red);
    z-index: 10;
}

@media (max-width: 768px) {
    .zigzag-row, .zigzag-row.reverse {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .tilt-right, .tilt-left {
        transform: rotate(2deg); 
    }
}

/* =========================================
   17. KONTAKT SEITE
   ========================================= */
.contact-page-section {
    background-color: var(--balkan-black);
    padding-bottom: 100px;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border-top: 4px solid var(--grill-red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.contact-info h3, .contact-form h3 {
    color: var(--grill-amber);
    margin-bottom: 25px;
    font-size: 1.6rem;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #0a0a0a;
    border: 1px solid #333;
    color: var(--balkan-white);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--grill-amber);
    box-shadow: 0 0 10px rgba(252, 185, 0, 0.2);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    font-size: 1.1rem;
    padding: 15px;
    justify-content: center;
}

/* =========================================
   18. RECHTSTEXTE (Impressum & Datenschutz)
   ========================================= */
.legal-section {
    background-color: var(--balkan-black);
    padding-bottom: 100px;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 12px;
    border-top: 4px solid var(--grill-red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.legal-container h3 {
    color: var(--grill-amber);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.legal-container p, .legal-container ul {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.legal-container ul {
    padding-left: 20px;
}

.legal-container a {
    color: var(--balkan-white);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-container a:hover {
    color: var(--grill-amber);
}