/* ======== RESET & GRUNDEINSTELLUNGEN ======== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fonts werden über HTML geladen (wegen DSGVO Consent) */

:root {
    --clr-red: #D90429;
    --clr-yellow: #FFC300;
    --clr-green: #2A9D8F;
    --clr-black: #1E1E1E;
    --clr-white: #FFFFFF;
    --clr-gray: #f9f9f9;;
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font-logo: 'Permanent Marker', cursive;
    --transition-base: 0.3s ease;
    --header-offset: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-white);
    color: var(--clr-black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

a {
    color: var(--clr-red);
    text-decoration: none;
    transition: color var(--transition-base);
}

/* ======== PRELOADER ======== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--clr-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    flex-direction: column;
}

.preloader-logo {
    overflow: hidden;
}

.preloader-logo img {
    width: min(68vw, 520px);
    max-width: 520px;
    display: block;
    transform: translateY(100%);
}

.preloader-balken {
    width: min(60vw, 440px);
    max-width: 440px;
    height: 6px;
    background-color: var(--clr-white);
    transform: scaleX(0);
    transform-origin: left;
    margin-top: 20px;
    border-radius: 4px;
}

/* ======== HEADER / NAV ======== */
header {
    position: fixed;
    top: var(--header-offset);
    left: 0;
    right: 0;
    width: 100%;
    padding: 22px 5%;
    z-index: 100;
    background: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Fill the gap above the header so the page doesn't show the white background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-offset);
    background: var(--clr-black);
    z-index: 99;
    pointer-events: none;
}

header.scrolled,
body:not(.home) header {
    background: var(--clr-black);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

nav .logo {
    display: flex;
    align-items: center;
    padding-left: 18px;
}

nav .logo img {
    height: clamp(84px, 10vh, 180px);
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
}

/* Smaller logo on narrow viewports to avoid layout issues */
@media (max-width: 640px) {
    nav .logo img {
        height: clamp(44px, 7.5vh, 96px);
    }
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
}

.nav-links a {
    text-decoration: none;
    color: var(--clr-white);
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--clr-yellow);
}

.btn-bestellen {
    background-color: var(--clr-red);
    color: var(--clr-white);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-bestellen:hover {
    background-color: var(--clr-yellow);
    color: var(--clr-black);
    transform: scale(1.05);
}

.nav-item {
    opacity: 0;
    transform: translateY(-50px);
}

/* Nav items sofort sichtbar auf Unterseiten */
body:not(.home) .nav-item {
    opacity: 1 !important;
    transform: none !important;
}

/* Make the nav layout identical on all pages (copy from menu.html) */
nav {
    justify-content: center;
    position: relative;
}

.logo {
    position: absolute;
    left: 5%;
}

.btn-bestellen {
    position: absolute;
    right: 5%;
}

.nav-links {
    margin: 0;
}

/* ======== MOBILE NAV ======== */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--clr-white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

header.scrolled .nav-toggle span,
body:not(.home) header .nav-toggle span {
    background: var(--clr-white);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--clr-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.mobile-nav-menu.open {
    transform: translateX(0);
}

.mobile-nav-menu ul {
    list-style: none;
    text-align: center;
    padding: 0;
}

.mobile-nav-menu li {
    margin: 20px 0;
}

.mobile-nav-menu a {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 2.5rem);
    color: var(--clr-white);
    text-decoration: none;
}

.mobile-nav-menu a:hover {
    color: var(--clr-yellow);
}

.btn-bestellen-mobile {
    background-color: var(--clr-red);
    color: var(--clr-white);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 30px;
}

.btn, .btn-bestellen, .btn-bestellen-mobile, .cta-menu {
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: 12px;
}

/* ======== HERO SEKTION ======== */
.hero {
    min-height: 100vh;
    width: 100%;
    background-color: var(--clr-black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 5% 50px 5%;
    overflow: hidden;
    position: relative;
}

.hero-content {
    z-index: 2;
    max-width: 600px;
}

.hero-title {
    font-family: var(--font-logo);
    font-size: clamp(3rem, 10vw, 8rem);
    color: var(--clr-white);
    line-height: 1;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title span {
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--clr-yellow);
    font-weight: 700;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(30px);
}

.btn.hero-btn {
    background-color: var(--clr-yellow);
    color: var(--clr-black);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 30px;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}
.btn.review-btn {
    background-color: var(--clr-red);
    color: var(--clr-black);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 30px;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.btn.hero-btn:hover {
    transform: scale(1.05);
}

.hero-image-container {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    z-index: 1;
    perspective: 1000px;
}

.hero-image {
    width: 100%;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
    opacity: 0;
    transform: translateX(100%);
}

.hero-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
    animation: heroZoom 20s linear infinite;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ======== ALLGEMEINE SEKTIONEN ======== */
.page-section {
    padding: 100px 5%;
    background-color: var(--clr-white);
    position: relative;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
}

.content-wrapper-full {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* ======== LEGAL PAGES (Impressum / Datenschutz) ======== */
.lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    max-width: 900px;
    margin: 0 auto;
}

.legal-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: start;
    max-width: 1200px;
    margin: 24px auto 0;
}

.legal-main {
    background: rgba(255,255,255,0.02);
    padding: 22px;
    border-radius: 12px;
}

.legal-main h2 {
    margin-top: 6px;
    margin-bottom: 12px;
    color: var(--clr-yellow);
}

.legal-section {
    margin-bottom: 18px;
}

.legal-aside {
    position: relative;
}

.contact-card {
    background: rgba(0,0,0,0.28);
    padding: 18px;
    border-radius: 12px;
    color: var(--clr-white);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.contact-card h4 { margin: 0 0 8px 0; }
.contact-card p { margin: 6px 0; color: #eaeaea; }
.contact-card a { color: var(--clr-yellow); font-weight:700; }

.legal-links { display:flex; flex-direction:column; gap:8px; margin-top:12px; }
.legal-links a { color: var(--clr-white); background: rgba(255,255,255,0.03); padding:8px 10px; border-radius:8px; text-decoration:none; display:block; }

@media (max-width: 900px) {
    .legal-layout { grid-template-columns: 1fr; }
    .content-wrapper-full { text-align: left; }
}

/* ======== REVIEWS WIDGET ======== */
.reviews-widget {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.03);
    padding: 28px;
    border-radius: 12px;
    max-width: 1200px;
    margin: 20px auto 0;
}
.reviews-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-bottom: 18px;
}
.rating-large {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--clr-yellow);
}
.rating-sub { font-size: 0.9rem; color: var(--clr-white); font-weight:700; margin-left:6px; }
.rating-meta { color: rgba(255,255,255,0.8); }
.rating-meta a { color: var(--clr-white); font-weight:700; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}
.review-card {
    background: rgba(0,0,0,0.25);
    padding: 16px;
    border-radius: 10px;
    text-align: left;
    color: var(--clr-white);
}
.review-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; }
.review-author { font-weight:700; }
.review-rating { color: var(--clr-yellow); font-size:1rem; }
.review-text { font-size:0.95rem; margin-bottom:10px; color: #eaeaea; }
.review-footer { font-size:0.85rem; color: rgba(255,255,255,0.65); }
.reviews-cta { text-align:center; margin-top:18px; }
.reviews-cta .btn { padding:10px 20px; border-radius:30px; }

@media (max-width: 900px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-summary { flex-direction: column; gap:8px; }
}

.section-tag {
    font-family: var(--font-heading);
    color: var(--clr-red);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 40px;
    text-align: center;
}

/* ======== ÜBER UNS VORSCHAU ======== */
.ueber-preview .content-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.ueber-preview h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--clr-black);
    margin-bottom: 20px;
}

.ueber-preview p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.ueber-preview .image-content img {
    border-radius: 10px;
}

/* ======== BUTTONS ======== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn:focus {
    outline: 3px solid rgba(217, 4, 41, 0.12);
    outline-offset: 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.menu-preview.light-theme .btn {
    background-color: var(--clr-red);
    color: var(--clr-white);
    padding: 14px 32px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(217, 4, 41, 0.18);
}

.menu-preview.light-theme .btn:hover {
    background-color: var(--clr-yellow);
    color: var(--clr-black);
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.cta-menu {
    background: linear-gradient(90deg, #d90429 0%, #e63946 100%);
    color: var(--clr-white);
    padding: 14px 34px;
    border-radius: 14px;
    font-size: 1.05rem;
    box-shadow: 0 10px 30px rgba(217, 4, 41, 0.18);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.cta-menu:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(217, 4, 41, 0.22);
}

.cta-menu:active {
    transform: translateY(-2px) scale(0.995);
}

.cta-menu:focus {
    outline: 3px solid rgba(230, 57, 70, 0.18);
    outline-offset: 4px;
}

/* ======== MENÜ HIGHLIGHTS (HOMEPAGE) ======== */
.menu-preview.light-theme {
    background-color: var(--clr-gray);
    padding: 100px 5%;
}

.menu-preview.light-theme .section-title {
    color: var(--clr-black);
}

.highlight-grid.light {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.highlight-grid.light .highlight-item {
    background-color: var(--clr-white);
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.highlight-grid.light .highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.highlight-grid.light .highlight-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px solid var(--clr-red);
}

.highlight-grid.light .highlight-item h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--clr-black);
    padding: 20px;
}

/* ======== FEEDBACK/REZENSIONEN ======== */
.feedback-preview {
    background-color: var(--clr-gray);
    text-align: center;
}

.review-carousel-container {
    position: relative;
    max-width: 90%;
    margin: 0 auto;
    overflow: hidden;
}

.review-carousel-track {
    display: flex;
}

.review-card {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 10px;
    background: var(--clr-gray);
    color: var(--clr-black);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-left: 5px solid var(--clr-white);
    min-height: 180px;
}

.review-stars {
    color: #ffb400;
    font-size: 1.6em;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
    text-align: left;
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--clr-black);
    font-size: 1.1rem;
    margin-top: 10px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--clr-white);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 1.8rem;
    z-index: 10;
    color: var(--clr-black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.carousel-btn:hover {
    background: var(--clr-gray);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Map iframe helper */
.map-iframe {
    width: 100%;
    max-width: 100%;
    height: 310px;
    border: 0;
    display: block;
}

/* ======== FOOTER ======== */
footer {
    background-color: var(--clr-black);
    color: var(--clr-white);
    padding: 80px 5%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-logo img {
    width: 120px;
    margin-bottom: 20px;
}

.footer-logo p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.7;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-yellow);
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact p,
.footer-contact a {
    color: var(--clr-white);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--clr-yellow);
}

.footer-contact p {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* ======== UNTERSEITEN HERO ======== */
.subpage-hero {
    background-color: var(--clr-gray);
    color: var(--clr-black);
    padding: 150px 5% 80px 5%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.subpage-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--clr-black);
    opacity: 0;
    transform: translateY(30px);
}

.subpage-hero p {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-red);
    opacity: 0;
    transform: translateY(30px);
}

body:not(.home) main {
    padding-top: 80px;
}

/* ======== MENÜ-SEITE (OPTIMIERT: Desktop Groß / Mobile 2-Spaltig) ======== */
.menu-kategorien {
    padding-top: 40px;
}

.menu-kategorie {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    padding: 0 5%;
}

.kategorie-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--clr-red);
    border-bottom: 3px solid var(--clr-yellow);
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 30px;
}

/* DESKTOP STANDARD: Große Karten (ausgebauter Look) */
.menu-grid {
    display: grid;
    /* Hier wieder min. 280px, damit die Karten auf Desktop groß sind (ca. 3 pro Zeile) */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 30px; /* Größerer Abstand für Desktop */
}

.menu-card {
    background-color: var(--clr-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column; /* Damit Footer/Preis unten bündig sind */
    height: 100%;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.menu-card img {
    width: 100%;
    height: 220px; /* Höhere Bilder auf Desktop für bessere Optik */
    object-fit: cover;
}

.menu-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-card-content h3 {
    font-size: 1.5rem; /* Größere Schrift auf Desktop */
    color: var(--clr-black);
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.1;
}

.menu-card-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0.8;
}

/* Leere Paragraphen ausblenden */
.menu-card-content p:empty {
    display: none;
    margin: 0;
}

.menu-card-content .price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-red);
    font-weight: 400; 
    margin-top: auto; /* Schiebt Preis nach ganz unten */
    display: block;
}

.menu-card-content.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Wichtigkeits-Hinweis */
.important-note {
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
    color: var(--clr-red);
    font-weight: bold;
    font-style: italic;
}

/* Badge */
.new-badge {
    color: var(--clr-red);
    display: block;
    width: 100%;
    margin-top: 5px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.2;
    letter-spacing: normal;
}

.icon-phone {
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
    width: 18px;
    height: 18px;
}

/* ======== ÜBER UNS SEITE ======== */
.ueber-layout {
    grid-template-columns: 1.5fr 1fr;
    align-items: flex-start;
}

.text-fokus {
    max-width: 900px;
}

.text-fokus h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.text-fokus p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
}

.check-list li {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-red);
    margin-bottom: 10px;
}

.image-gallery-ueber img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.call-box {
    background: var(--clr-gray);
    padding: 24px;
    margin-top: 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.call-box b {
    font-size: 1.3em;
}

.call-box-phone {
    color: var(--clr-red);
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 8px;
}

/* ======== KONTAKT SEITE ======== */
.kontakt-layout {
    grid-template-columns: 1fr 1.5fr;
    align-items: flex-start;
}

.kontakt-info h3,
.feedback-form-section h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
}

.kontakt-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.map-placeholder {
    width: 100%;
    height: 310px;
    border-radius: 10px;
    margin-top: 20px;
    overflow: hidden;
}

.map-placeholder iframe {
    border: none;
    width: 100%;
    height: 100%;
}

/* ======== FORMULAR STILE ======== */
.feedback-form-section {
    background-color: var(--clr-white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-body);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ======== RESPONSIVE DESIGN ======== */

/* Tablet (bis 992px) */
@media (max-width: 992px) {
    .nav-links,
    .btn-bestellen {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .ueber-preview .content-wrapper,
    .ueber-layout,
    .kontakt-layout {
        grid-template-columns: 1fr;
    }
    .highlight-grid.light {
        grid-template-columns: repeat(2, 1fr);
    }
    .review-card {
        flex-basis: calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
    .carousel-btn.prev {
        left: 5px;
    }

    .carousel-btn.next {
        right: 5px;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}
/* Mobile (bis 768px) */
@media (max-width: 768px) {
    header {
        padding: 15px 5%;
    }
    nav .logo img {
        height: 80px;
        width: 80px;
    }
    .hero {
        flex-direction: column;
        justify-content: flex-start;
        text-align: center;
        padding: 100px 5% 50px 5%;
        min-height: auto;
    }
    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    .hero-title {
        font-size: clamp(2.5rem, 15vw, 4rem);
    }
    .hero-image-container {
        position: static;
        width: 80%;
        max-width: 400px;
        margin: 20px auto;
        transform: none;
        perspective: none;
        opacity: 1;
    }
    .hero-image {
        transform: none;
        opacity: 1;
    }
    .hero-video {
        opacity: 1;
        transform: none;
        animation: heroZoom 12s linear infinite;
    }
    .page-section {
        padding: 60px 5%;
    }

    .highlight-grid.light {
        grid-template-columns: 1fr;
    }
    .review-carousel-container {
        max-width: 100%;
    }
    .review-card {
        flex-basis: 90%;
        max-width: 90%;
        margin: 0 5%;
        padding: 20px;
        min-height: 150px;
    }
    .review-text {
        font-size: 1em;
    }
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
        background: rgba(255, 255, 255, 0.7);
    }
    .carousel-btn.prev {
        left: 2px;
    }

    .carousel-btn.next {
        right: 2px;
    }

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

    .footer-links ul {
        padding: 0;
        text-align: center;
    }

    .footer-contact p,
    .footer-contact a {
        text-align: center;
    }

    .subpage-hero {
        padding: 120px 5% 50px 5%;
        margin-top: 0;
    }

    body:not(.home) main {
        padding-top: 65px;
    }

    /* ======== MOBILE MENÜ OVERRIDE (2 Spalten Fix) ======== */
    .menu-kategorien {
        padding-top: 40px;
    }

    .menu-grid {
        /* Erzwingt 2 Spalten, egal wie schmal das Handy ist */
        grid-template-columns: 1fr 1fr; 
        gap: 12px; /* Engerer Abstand */
    }

    .menu-card {
        border-radius: 8px;
    }

    .menu-card img {
        /* Bildhöhe angepasst: Nicht zu flach, damit man das Essen erkennt */
        height: 130px; 
    }

    .menu-card-content {
        padding: 12px; /* Weniger Padding für mehr Platz */
    }

    .menu-card-content h3 {
        font-size: 1rem; /* Kompakte Schriftgröße */
        margin-bottom: 4px;
        hyphens: auto; /* Silbentrennung bei langen Wörtern */
    }

    .menu-card-content p {
        font-size: 0.8rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .menu-card-content .price {
        font-size: 1.1rem;
    }

    .kategorie-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .new-badge, .important-note {
        font-size: 0.7rem;
    }
}