/* ===============================================
   FONTS - Batavia Sans (Headlines) & Gotham Narrow (Body)
   =============================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Fonts from local OTF files */
@font-face {
    font-family: 'Batavia Sans';
    src: url('fonts/BataviaSansClean.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Narrow';
    src: url('fonts/Gotham Narrow Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ===============================================
   GENERAL STYLES & RESETS
   =============================================== */

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

:root {
    /* Brand Colors - Grün dominiert */
    --primary-green: #709240;
    --dark-green: #4A602B;
    --light-green: #8AA657;
    --soft-green: #9AB86A;
    --pale-green: #C5D9A8;
    --accent-yellow: #D4B04A;
    --accent-gold: #C9A83E;
    --accent-red: #A82B3B;
    
    /* Grüne Hintergrundfarben (Haupt-Palette) */
    --bg-cream: #F8FAF5;
    --bg-light: #F5F8F2;
    --bg-soft-green: #EEF4E8;
    --bg-mint: #E8F0E2;
    --bg-warm-white: #FAFCF8;
    --bg-white: #FFFFFF;
    
    /* Neue Grün-basierte Hintergründe */
    --bg-gold-beige: #EDF3E5;
    --bg-gold-beige-light: #F3F7ED;
    --bg-gold-beige-dark: #E2EBD8;
    --bg-gold-beige-mobile: #F0F5E9;
    --bg-gold-beige-tablet: #EBF2E3;
    
    /* Corporate Design Akzentfarben */
    --corp-light-green: #B6CFAE;
    --corp-olive: #7A8B5A;
    --corp-sage: #9DAD7F;
    --corp-gold: #D4B04A;
    
    /* Cursor reactive background */
    --cursor-x: 50%;
    --cursor-y: 50%;
    
    /* Text Colors */
    --text-dark: #2C3E2C;
    --text-gray: #555555;
    --text-light: #888888;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(74, 96, 74, 0.08);
    --shadow-md: 0 4px 16px rgba(74, 96, 74, 0.12);
    --shadow-lg: 0 8px 32px rgba(74, 96, 74, 0.16);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Gotham Narrow', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    /* VEGAN KISS Corporate Design: Grün-dominiert */
    background: linear-gradient(160deg, #FAFCF8 0%, #F0F5E9 40%, #E5EDD9 100%);
    background-attachment: fixed;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background 0.5s ease;
    min-height: 100vh;
}

/* Premium Hintergrund-Overlay mit Corporate Design Farben */
body::before,
body::after {
    content: none;
}


/* Große Hauptüberschriften - Batavia Sans */
h1, h2,
.hero-title,
.section-title,
.menu-main-title,
.story-title,
.philosophy-title,
.values-title,
.about-hero-title,
.hero-title-res,
.section-title-res,
.wochenmenu-title,
.menu-slogan {
    font-family: 'Batavia Sans', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Unterüberschriften - Gotham Narrow */
h3, h4, h5, h6,
.usp-item h3,
.value-item h4,
.philosophy-card h3,
.drink-category h3,
.day-menu h3,
.lunch-info-box h3,
.contact-card h3,
.info-box h3,
.legal-section h3,
.day-editor h3 {
    font-family: 'Gotham Narrow', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

/* Sicherstellen, dass Content über Hintergrund liegt */
main, section, .main, .page, .container > * {
    position: relative;
    z-index: 1;
}

/* ===============================================
   HEADER STYLES
   =============================================== */

.header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

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

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: var(--transition-normal);
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background-color: var(--dark-green);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.mobile-nav-overlay.active {
    opacity: 1;
}

/* ===============================================
   LANGUAGE SELECTOR
   =============================================== */

.language-selector {
    position: relative;
    margin-left: 15px;
}

.current-language {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(92, 184, 92, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-green);
}

.current-language:hover {
    background: rgba(92, 184, 92, 0.1);
    border-color: var(--primary-green);
    transform: translateY(-1px);
}

.current-language .flag {
    font-size: 18px;
    line-height: 1;
}

.current-language .lang-code {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.current-language svg {
    transition: transform var(--transition-fast);
}

.current-language[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid #E8EDE5;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    z-index: 1000;
    overflow: hidden;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    background: white;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 14px;
    color: var(--text-dark);
    text-align: left;
}

.language-option:hover {
    background: rgba(92, 184, 92, 0.05);
}

.language-option.active {
    background: rgba(92, 184, 92, 0.1);
    color: var(--primary-green);
    font-weight: 600;
}

.language-option .flag {
    font-size: 20px;
    line-height: 1;
}

.language-option .lang-name {
    flex: 1;
}

.language-option .check {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 16px;
}

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

.logo-img {
    height: 56px;
    width: 56px;
    object-fit: contain;
}

.accent-letter {
    font-family: "Gotham Narrow", "Arial", sans-serif;
    font-weight: inherit;
    letter-spacing: 0.5px;
    display: inline-block;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
}

.logo-text-menu {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-text-res {
    font-size: 18px;
    font-weight: 700;
    color: #4A5C4A;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link.active {
    color: var(--primary-green);
}

.nav-link-about {
    color: var(--primary-green) !important;
}

.admin-link-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F5F5F5;
    color: #666;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.admin-link-header:hover {
    background-color: var(--primary-green);
    color: white;
    transform: scale(1.1);
}

.admin-link-header svg {
    width: 18px;
    height: 18px;
}

.btn {
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-slow);
    cursor: pointer;
    border: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary-nav {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(112, 146, 64, 0.25);
}

.btn-primary-nav:hover {
    box-shadow: 0 6px 20px rgba(112, 146, 64, 0.35);
    transform: translateY(-2px);
}

.btn-menu-red {
    background-color: var(--primary-green);
    color: #fff;
}

.btn-menu-red:hover {
    background-color: #8f0f54;
}

.btn-res-active {
    background-color: var(--dark-green);
    color: #fff;
}

.btn-res-active:hover {
    background-color: #6c5d3d;
}


/* ===============================================
   HOME PAGE - HERO SECTION
   =============================================== */

.hero-home {
    position: relative;
    height: 650px;
    background: linear-gradient(135deg, rgba(74, 96, 74, 0.95) 0%, rgba(44, 62, 44, 0.9) 100%),
                radial-gradient(circle at 30% 50%, rgba(112, 146, 64, 0.3), transparent 50%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="600"><rect fill="%23654321" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-home::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--dark-green-rgb), 0.1) 0%, transparent 70%);
    animation: rotate-slow 20s linear infinite;
}

/* Logo Watermark in Hero */
.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.08;
}

.hero-watermark .watermark-logo {
    width: 600px;
    height: 600px;
    max-width: 80vw;
    max-height: 80vw;
    object-fit: contain;
    filter: brightness(1.2) contrast(0.9);
}

/* ===============================================
   CANVAS BACKGROUND - Logos werden via JavaScript gerendert
   =============================================== */
/* Die schwebenden Logos und Emojis werden im Canvas gezeichnet (premium-background.js) */
/* CSS-Wasserzeichen wurden durch interaktive Canvas-Partikel ersetzt */

/* Seitliche Wasserzeichen-Divs werden nicht mehr benötigt */
.watermark-side-left,
.watermark-side-right {
    display: none;
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 750px;
    padding: 60px 40px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 19px;
    margin-bottom: 35px;
    line-height: 1.7;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(112, 146, 64, 0.35);
    font-size: 16px;
    padding: 16px 36px;
}

.btn-primary:hover {
    box-shadow: 0 12px 28px rgba(112, 146, 64, 0.45);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--dark-green);
    border: 1px solid rgba(var(--dark-green-rgb), 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    padding: 16px 36px;
}

.btn-secondary:hover {
    background-color: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

/* ===============================================
   HOME PAGE - USP / VALUES SECTION
   =============================================== */

.usp-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.usp-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (min-width: 1200px) {
    .usp-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    
    .usp-grid-6 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1400px) {
    .usp-grid-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

/* 0% Drinks Icon Style */
.usp-icon--drinks {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.usp-icon--drinks svg {
    fill: none;
    stroke: white;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.usp-item {
    text-align: center;
    padding: 32px 28px;
    background: white;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(var(--dark-green-rgb), 0.08);
    transition: var(--transition-normal);
}

.usp-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.usp-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 228, 206, 0.9) 100%);
    border: 1px solid rgba(var(--dark-green-rgb), 0.1);
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.6), 0 6px 14px rgba(0, 0, 0, 0.08);
}

.usp-icon svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.usp-icon--fresh {
    background: linear-gradient(135deg, #E4F5D4 0%, #D0EBB5 100%);
    color: #4a7c2f;
}

.usp-icon--warm {
    background: linear-gradient(135deg, #FFE4C7 0%, #FFD2B8 100%);
    color: #a4561a;
}

.usp-icon--home {
    background: linear-gradient(135deg, #E6F3FF 0%, #D3E7FF 100%);
    color: #3f5a91;
}

.usp-icon--energy {
    background: linear-gradient(135deg, #FFF5D6 0%, #FFE9A8 100%);
    color: #c98500;
}

.usp-icon--heart {
    background: linear-gradient(135deg, #FDE5EE 0%, #FAC5D8 100%);
    color: #b1355e;
}

/* ===============================================
   MENU PAGE STYLES
   =============================================== */

.menu-page {
    background: linear-gradient(160deg, #FAFCF8 0%, #F0F5E9 40%, #E5EDD9 100%);
    transition: background 0.5s ease;
}

.menu-main {
    padding: 60px 0;
}

.menu-main-title {
    text-align: center;
    font-size: 48px;
    color: var(--accent-red);
    margin-bottom: 60px;
    font-family: 'Gotham Narrow', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

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

.menu-drinks .menu-section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #777;
    margin-bottom: 30px;
}

.drink-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.drink-category {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--bg-soft-green) 100%);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(182, 207, 174, 0.2);
}

.drink-category h3 {
    font-size: 18px;
    color: var(--primary-green);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.drink-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.drink-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px dashed #e0e0e0;
    font-size: 15px;
    color: #555;
}

.drink-list li span:last-child {
    font-weight: 600;
    color: var(--primary-green);
}

.drink-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-drinks-note {
    margin-top: 25px;
    font-size: 14px;
    color: #777;
    text-align: center;
}

.section-title {
    font-size: 38px;
    color: var(--primary-green);
    margin-bottom: 35px;
    font-family: 'Gotham Narrow', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green) 0%, transparent 100%);
    border-radius: 2px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.menu-empty {
    grid-column: 1 / -1;
    padding: 24px;
    text-align: center;
    border: 1px dashed rgba(112, 146, 64, 0.55);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.85);
    color: var(--primary-green);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-item {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--bg-soft-green) 100%);
    padding: 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    border: 1px solid rgba(var(--dark-green-rgb), 0.08);
}

.menu-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(var(--dark-green-rgb), 0.2);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.menu-item-name {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.2px;
}

.menu-item-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    margin-left: 15px;
    white-space: nowrap;
}

.menu-item-description {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-top: 4px;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    right: 30px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
}

.float-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn-red {
    background-color: var(--primary-green);
}

.float-btn-green {
    background-color: var(--primary-green);
}

.float-label {
    font-size: 12px;
    color: #333;
    font-weight: 500;
}

/* Footer Menu */
.footer-menu {
    background-color: #F3F7ED;
    padding: 40px 0 20px;
    border-top: 2px solid rgba(112, 146, 64, 0.2);
}

/* Green Theme Footer für Menu Selection */
.footer-menu.footer-gold {
    background: linear-gradient(180deg, #E8F0E2 0%, #DCE8D4 100%);
    border-top: 2px solid rgba(112, 146, 64, 0.3);
}

.footer-gold .footer-logo-text {
    color: #5A4A32;
}

.footer-gold .footer-address,
.footer-gold .footer-hours {
    color: #7A6B52;
}

.social-icon-gold {
    color: #B8963A !important;
    border-color: rgba(212, 175, 55, 0.3) !important;
}

.social-icon-gold:hover {
    background: rgba(212, 175, 55, 0.15) !important;
    border-color: #D4AF37 !important;
    color: #D4AF37 !important;
}

.footer-menu .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-green);
}

.footer-address,
.footer-hours {
    color: #666;
    font-size: 14px;
    margin: 5px 0;
}

.footer-right {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #E0E0D0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--primary-green);
    color: #fff;
}

/* ===============================================
   ABOUT PAGE STYLES
   =============================================== */

.about-page {
    background: linear-gradient(160deg, #FAFCF8 0%, #F0F5E9 40%, #E5EDD9 100%);
    transition: background 0.5s ease;
}

.about-main {
    padding: 40px 0 80px;
}

.about-hero {
    margin-bottom: 60px;
}

.about-hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
}

.about-hero-title {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
    font-size: 56px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

/* Story Section */
.story-section {
    margin-bottom: 80px;
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-title {
    font-size: 36px;
    color: var(--dark-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.story-intro {
    font-size: 20px;
    line-height: 1.7;
    color: var(--primary-green);
    margin-bottom: 25px;
    font-weight: 500;
}

.story-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.founders-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-soft-green) 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 2px solid rgba(var(--dark-green-rgb), 0.15);
}

.placeholder-founders {
    height: 300px;
    margin-bottom: 20px;
    border-radius: 12px;
}

.founders-names {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-green);
    margin: 15px 0 5px;
}

.founders-title {
    font-size: 15px;
    color: var(--primary-green);
    font-weight: 600;
}

/* Philosophy Section */
.philosophy-section {
    margin: 80px 0;
}

.philosophy-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 50px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.philosophy-card {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--bg-soft-green) 100%);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-slow);
    border: 1px solid rgba(182, 207, 174, 0.2);
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--dark-green-rgb), 0.2);
}

.philosophy-card svg {
    margin-bottom: 25px;
}

.philosophy-card h3 {
    font-size: 22px;
    color: var(--dark-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.philosophy-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, #f8fdf8 0%, #ffffff 100%);
    padding: 60px 40px;
    border-radius: 20px;
    margin: 80px 0;
    box-shadow: var(--shadow-sm);
}

.values-title {
    font-size: 32px;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-item {
    text-align: center;
}

.value-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 18px;
    color: var(--dark-green);
    margin-bottom: 10px;
    font-weight: 600;
}

.value-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Gallery Section */
.food-gallery-section {
    margin: 80px 0;
}

.gallery-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 40px;
}

.gallery-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 600;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin-top: 80px;
    box-shadow: var(--shadow-lg);
}

.about-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta .btn-primary {
    background: white;
    color: var(--dark-green);
}

.about-cta .btn-primary:hover {
    background: #f8f8f8;
}

.about-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.about-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.quote-section {
    text-align: center;
    max-width: 800px;
    margin: 60px auto;
}

.quote {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin-bottom: 20px;
}

.quote-author {
    font-size: 18px;
    color: #666;
    font-style: italic;
}

.food-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
}

/* Footer About */
.footer-about {
    background-color: #F8F8F6;
    padding: 40px 0;
    border-top: 1px solid #E0E0E0;
}

.footer-about .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: #999;
    font-size: 14px;
}

/* ===============================================
   RESERVIEREN PAGE STYLES
   =============================================== */

.reservieren-page {
    background-color: #FDFBF2;
}

/* Hero Section Reservieren */
.hero-reservieren {
    position: relative;
    height: 500px;
    margin-bottom: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background-color: #3A473A;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-title-res {
    font-size: 56px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.hero-subtitle-res {
    font-size: 18px;
    color: #fff;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-buttons-res {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-yellow {
    background-color: var(--accent-yellow);
    color: #333;
}

.btn-yellow:hover {
    background-color: #c0a040;
}

.btn-light-green {
    background-color: #E0E8D9;
    color: #333;
}

.btn-light-green:hover {
    background-color: #d0d8c9;
}

.hero-image-res {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="250"><rect fill="%23A0B090" width="1200" height="250"/></svg>');
    background-size: cover;
    background-position: center;
    filter: blur(2px);
}

/* Reservation Section */
.reservation-section {
    padding: 60px 0;
}

.reservation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title-res {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.reservation-form-container {
    background: linear-gradient(135deg, var(--bg-warm-white) 0%, var(--bg-soft-green) 100%);
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(182, 207, 174, 0.2);
    transition: var(--transition-slow);
}

.reservation-form-container:hover {
    box-shadow: var(--shadow-lg);
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input {
    padding: 14px 18px;
    border: 2px solid #E8EDE5;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition-normal);
    background-color: #FAFCF8;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(var(--dark-green-rgb), 0.08);
    transform: translateY(-1px);
}

.form-group input:hover {
    border-color: rgba(var(--dark-green-rgb), 0.3);
}

/* ===============================================
   WEEKLY DATE PICKER STYLES
   =============================================== */
.weekly-date-group {
    background: linear-gradient(135deg, rgba(112, 146, 64, 0.08) 0%, rgba(212, 175, 55, 0.08) 100%);
    border: 2px solid rgba(112, 146, 64, 0.2);
    border-radius: 12px;
    padding: 20px;
    grid-column: 1 / -1;
}

.weekly-date-group label {
    font-size: 16px !important;
    color: var(--primary-green) !important;
}

.date-picker-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
}

.date-input {
    flex: 1;
    padding: 14px 18px !important;
    font-size: 16px;
    border: 2px solid var(--primary-green) !important;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    color: var(--text-dark);
}

.date-input::-webkit-calendar-picker-indicator {
    background: var(--primary-green);
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    filter: invert(1);
}

.date-input:hover {
    border-color: var(--dark-green) !important;
    box-shadow: 0 0 0 3px rgba(112, 146, 64, 0.15);
}

.date-picker-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.date-picker-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(112, 146, 64, 0.4);
}

.date-picker-btn svg {
    stroke: #fff;
}

/* ===============================================
   ID GENERATOR STYLES
   =============================================== */
.id-generator-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.id-prefix-select {
    flex: 2;
    padding: 12px 16px;
    border: 2px solid #E8EDE5;
    border-radius: 10px;
    font-size: 15px;
    background: #FAFCF8;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
}

.id-prefix-select:focus {
    outline: none;
    border-color: var(--primary-green);
    background: #fff;
}

.id-separator {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
}

.id-number-input {
    width: 80px !important;
    padding: 12px 16px !important;
    text-align: center;
    font-weight: 600;
    border: 2px solid #E8EDE5 !important;
    border-radius: 10px !important;
}

.id-number-input:focus {
    border-color: var(--primary-green) !important;
}

.id-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    border-radius: 8px;
}

.id-preview-label {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 500;
}

.id-preview code {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.date-display {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    border-radius: 10px;
    color: #fff;
}

.date-display .date-weekday {
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 6px;
}

.date-display .date-full {
    font-size: 15px;
    opacity: 0.95;
}

.date-display:empty {
    display: none;
}

/* Weekly Badge mit Datum */
.weekly-day-badge {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.weekly-date-badge {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #B8963A 100%);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: #fff;
    padding: 18px 32px;
    font-size: 17px;
    margin-top: 15px;
    box-shadow: 0 8px 20px rgba(139, 45, 58, 0.3);
    font-weight: 700;
    letter-spacing: 0.3px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #702430 0%, #a01963 100%);
    box-shadow: 0 12px 28px rgba(139, 45, 58, 0.4);
    transform: translateY(-3px);
}

/* Catering Section */
.catering-section {
    padding: 80px 0;
    background-color: #F8F6F0;
}

.catering-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.catering-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-dark-green {
    background-color: #4A5C4A;
    color: #fff;
}

.btn-dark-green:hover {
    background-color: #3a4a3a;
}

.catering-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

/* Opening Hours Section */
.hours-section {
    padding: 80px 0;
    text-align: center;
}

.hours-table {
    max-width: 600px;
    margin: 40px auto;
    background: linear-gradient(135deg, var(--bg-warm-white) 0%, var(--bg-soft-green) 100%);
    border-radius: 12px;
    padding: 30px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #E8E4D8;
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #333;
}

.time {
    color: #555;
}

.time.closed {
    color: #999;
    font-style: italic;
}

/* Footer Reservieren */
.footer-res {
    background-color: #FDFBF2;
    padding: 60px 0 20px;
    border-top: 1px solid #E8E4D8;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}

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

.social-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #E8E4D8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s;
}

.social-icon-circle:hover {
    background-color: #4A5C4A;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #E8E4D8;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

/* ===============================================
   PLACEHOLDER IMAGES
   =============================================== */

.placeholder-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.placeholder-chefs {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    position: relative;
}

.placeholder-chefs::after {
    content: '👨‍🍳👩‍🍳';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
}

.placeholder-salad {
    background: linear-gradient(135deg, #90C695 0%, #5A8F5F 100%);
}

.placeholder-veggies {
    background: linear-gradient(135deg, #E8A87C 0%, #C27D5C 100%);
}

.placeholder-ingredients {
    background: linear-gradient(135deg, #8B7355 0%, #654321 100%);
}

.placeholder-catering {
    background: linear-gradient(135deg, #A8D5A8 0%, #78B578 100%);
    position: relative;
}

.placeholder-catering::after {
    content: '🥗🥙🥗';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
}

.placeholder-founders {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    position: relative;
}

.placeholder-founders::after {
    content: '👨‍🍳 Eva & Sandor 👩‍🍳';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: var(--dark-green);
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

/* ===============================================
   WOCHENMENÜ PAGE STYLES
   =============================================== */

.wochenmenu-page {
    background: linear-gradient(160deg, #FAFCF8 0%, #F0F5E9 40%, #E5EDD9 100%);
    transition: background 0.5s ease;
}

.wochenmenu-main {
    padding: 60px 0;
}

.wochenmenu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.wochenmenu-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.wochenmenu-logo h1 {
    font-size: 32px;
    font-weight: 700;
    color: #5A4A32;
    line-height: 1.2;
}

.wochenmenu-logo .subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #7A6B52;
}

.wochenmenu-title-box {
    text-align: right;
}

.wochenmenu-title {
    font-size: 42px;
    color: #D4AF37;
    font-family: 'Gotham Narrow', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    margin-bottom: 10px;
}

.wochenmenu-dates {
    font-size: 18px;
    color: #7A6B52;
}

.weekly-menu-content {
    margin-bottom: 60px;
}

/* Weekly Menu Builder Styles */
.weekly-menu-loading {
    text-align: center;
    padding: 60px 20px;
    color: #7A6B52;
}

.weekly-menu-loading .loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top-color: #D4AF37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.weekly-menu-empty {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(145deg, #FFFFFF 0%, #F3F7ED 50%, #E5EDD9 100%);
    border-radius: 16px;
    border: 1px dashed rgba(212, 175, 55, 0.4);
    color: #7A6B52;
}

.weekly-day-section {
    margin-bottom: 50px;
}

.weekly-day-title {
    font-size: 28px;
    font-weight: 700;
    color: #5A4A32;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid #D4AF37;
    display: inline-block;
    letter-spacing: 2px;
}

.weekly-day-dishes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.weekly-dish-card {
    background: linear-gradient(145deg, #FFFFFF 0%, #F3F7ED 50%, #E5EDD9 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(139, 115, 68, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.weekly-dish-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.weekly-dish-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.weekly-dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.weekly-dish-content {
    padding: 24px;
}

.weekly-dish-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}

.weekly-dish-date svg {
    stroke: #fff;
    opacity: 0.9;
}

.weekly-dish-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.weekly-dish-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

.weekly-dish-icon svg {
    width: 100%;
    height: 100%;
}

.weekly-dish-name {
    flex: 1;
    font-size: 20px;
    font-weight: 600;
    color: #5A4A32;
    margin: 0;
    line-height: 1.3;
}

.weekly-dish-price {
    font-size: 18px;
    font-weight: 700;
    color: #D4AF37;
    white-space: nowrap;
}

.weekly-dish-description {
    font-size: 15px;
    color: #7A6B52;
    line-height: 1.6;
    margin: 0 0 16px;
}

.weekly-dish-info-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8963A 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.weekly-dish-info-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.weekly-dish-info-btn svg {
    width: 18px;
    height: 18px;
}

/* Weekly Dish Modal Styles */
.weekly-dish-modal .dish-modal-content {
    background: linear-gradient(145deg, #FFFFFF 0%, #F3F7ED 100%);
}

.weekly-dish-modal .dish-modal-title {
    color: #5A4A32;
}

.weekly-dish-modal .dish-modal-price {
    background: linear-gradient(135deg, #D4AF37 0%, #B8963A 100%);
}

.weekly-dish-modal .dish-modal-badge {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.weekly-dish-modal .dish-modal-badge span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #5A4A32;
}

/* Responsive */
@media (max-width: 768px) {
    .weekly-day-dishes {
        grid-template-columns: 1fr;
    }
    
    .weekly-dish-image {
        height: 180px;
    }
    
    .weekly-day-title {
        font-size: 22px;
    }
}

.day-menu {
    margin-bottom: 40px;
    background: linear-gradient(145deg, #FFFFFF 0%, #F3F7ED 50%, #E5EDD9 100%);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 16px rgba(139, 115, 68, 0.1);
}

.day-menu h3 {
    font-size: 24px;
    font-weight: 700;
    color: #5A4A32;
    margin-bottom: 15px;
    letter-spacing: 1px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.dish-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dish-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background-color: #FEFEF8;
    border-radius: 8px;
}

.dish-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.dish-name {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

.lunch-info-box {
    background: linear-gradient(135deg, var(--bg-warm-white) 0%, var(--bg-soft-green) 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 60px auto;
    max-width: 600px;
}

.lunch-info-box h3 {
    font-size: 28px;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.lunch-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
    margin: 15px 0;
}

.lunch-description {
    font-size: 18px;
    color: #555;
    margin: 15px 0;
}

.lunch-hours {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.admin-login-btn {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 999;
}

.btn-admin-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--dark-green);
    color: white;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-admin-link:hover {
    background-color: #3a4a23;
    transform: translateY(-2px);
}

/* ===============================================
   ADMIN LOGIN PAGE STYLES
   =============================================== */

.admin-login-page {
    /* Gold-beige Hintergrund - dynamisch und responsive */
    background-color: var(--bg-gold-beige);
    min-height: 100vh;
    position: relative;
    transition: background-color 0.5s ease;
}

.admin-login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px);
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.login-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 243, 232, 0.95) 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(74, 96, 74, 0.25);
    max-width: 480px;
    width: 100%;
    border: 1px solid rgba(212, 176, 74, 0.2);
    animation: fadeIn 0.5s ease-out;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(10px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-icon-wrapper {
    margin-bottom: 25px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.login-header h2 {
    font-size: 30px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 700;
}

.login-header p {
    color: var(--primary-green);
    font-size: 15px;
    font-weight: 500;
}


.login-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.login-form .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.login-form .form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E0E8D9;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #FAFCF8;
}

.login-form .form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(var(--dark-green-rgb), 0.1);
}

.login-form .form-group input::placeholder {
    color: #aaa;
}

.login-error {
    background-color: #FFEBEE;
    color: #C62828;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    border: 1px solid #FFCDD2;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.btn-submit-enhanced {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(var(--dark-green-rgb), 0.3);
}

.btn-submit-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--dark-green-rgb), 0.4);
    background: linear-gradient(135deg, var(--dark-green) 0%, #4a6a2a 100%);
}

.btn-submit-enhanced:active {
    transform: translateY(0);
}

.login-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #E0E8D9;
}

.login-footer a {
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.login-footer a:hover {
    color: var(--dark-green);
    gap: 10px;
}

/* ===============================================
   ADMIN PANEL PAGE STYLES
   =============================================== */

.admin-panel-page {
    background: linear-gradient(160deg, #FAFCF8 0%, #F0F5E9 40%, #E5EDD9 100%);
    min-height: 100vh;
}

.admin-panel-main {
    padding: 40px 0 80px;
}

.admin-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(145deg, #FFFFFF 0%, #F3F7ED 50%, #E5EDD9 100%);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(139, 115, 68, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.admin-welcome {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-panel-title {
    font-size: 32px;
    color: #5A4A32;
    margin: 0;
    font-weight: 700;
}

.admin-subtitle {
    color: #B8963A;
    font-size: 15px;
    margin-top: 5px;
}

.admin-stats {
    display: flex;
    gap: 20px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #F3F7ED 0%, #E5EDD9 100%);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--dark-green);
    font-weight: 600;
}

.admin-controls {
    max-width: 700px;
    margin: 0 auto 50px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--bg-soft-green) 100%);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.enhanced-input label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 12px;
}

.enhanced-input input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E0E8D9;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #FAFCF8;
}

.enhanced-input input:focus {
    outline: none;
    border-color: var(--primary-green);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(var(--dark-green-rgb), 0.1);
}

.input-hint {
    display: block;
    font-size: 13px;
    color: #999;
    margin-top: 8px;
    font-style: italic;
}

.daily-menus-editor {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.day-editor {
    background: linear-gradient(145deg, #FFFFFF 0%, #F3F7ED 50%, #E5EDD9 100%);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(139, 115, 68, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.day-editor:hover {
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.4);
}

.day-editor h3 {
    font-size: 22px;
    color: #5A4A32;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.day-editor h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8963A 100%);
    border-radius: 2px;
}

.dish-inputs {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.dish-inputs .form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 8px;
    display: block;
}

.dish-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E0E8D9;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #FAFCF8;
}

.dish-input:focus {
    outline: none;
    border-color: var(--primary-green);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(var(--dark-green-rgb), 0.1);
}

.dish-input::placeholder {
    color: #bbb;
    font-style: italic;
}

.admin-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.admin-tab-btn {
    border: 0;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #F3F7ED 0%, #E5EDD9 100%);
    color: #5A4A32;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.admin-tab-btn:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.admin-tab-btn.active {
    background: linear-gradient(135deg, #D4AF37 0%, #B8963A 100%);
    color: #fff;
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.35);
    border-color: transparent;
}

.admin-tab-section {
    display: none;
}

.admin-tab-section.active {
    display: block;
}

.panel-card {
    background: linear-gradient(145deg, #FFFFFF 0%, #F3F7ED 50%, #E5EDD9 100%);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(139, 115, 68, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 40px;
}

.panel-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.panel-card-header h2 {
    margin: 0;
    font-size: 26px;
    color: #5A4A32;
}

.panel-card-header p {
    margin: 6px 0 0;
    color: #7A6B52;
}

.menu-items-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Weekly Day Filter Tabs */
.weekly-day-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.day-filter-btn {
    padding: 8px 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    background: linear-gradient(135deg, #F3F7ED 0%, #E5EDD9 100%);
    color: #5A4A32;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.day-filter-btn:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}

.day-filter-btn.active {
    background: linear-gradient(135deg, #D4AF37 0%, #B8963A 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.menu-item-card {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 18px;
    background: linear-gradient(135deg, #fff, #fbfbf7);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-item-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.menu-item-card h4 {
    margin: 0;
    font-size: 18px;
    color: var(--dark-green);
}

.menu-item-meta {
    font-size: 13px;
    color: #888;
}

.weekly-day-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8963A 100%);
    color: #fff;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.weekly-item-card {
    border-color: rgba(212, 175, 55, 0.3);
    background: linear-gradient(145deg, #FFFFFF 0%, #F3F7ED 50%, #E5EDD9 100%);
}

.menu-item-actions-row {
    display: flex;
    gap: 10px;
}

.btn-ghost {
    border: 1px solid rgba(0,0,0,0.1);
    background: transparent;
    border-radius: 8px;
    padding: 8px 14px;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-green);
}

.btn-ghost:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-ghost.danger {
    color: #b83a3a;
    border-color: rgba(184,58,58,0.2);
}

.btn-ghost.danger:hover {
    border-color: rgba(184,58,58,0.6);
    color: #b83a3a;
}

.empty-state {
    padding: 30px;
    text-align: center;
    color: #888;
    border: 2px dashed rgba(0,0,0,0.1);
    border-radius: 16px;
}

.item-editor-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.item-editor-modal.active {
    display: flex;
}

.item-editor-dialog {
    width: min(900px, 100%);
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
}

.item-editor-close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: none;
    background: rgba(0,0,0,0.05);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.image-input-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.image-input-row input[type="text"] {
    flex: 1;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.15);
}

.upload-btn {
    background: linear-gradient(135deg, #f0f0f0, #dcdcdc);
    border-radius: 8px;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 600;
}

.language-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.language-card {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 16px;
    background: #fdfdfb;
}

.language-card h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.language-card input,
.language-card textarea {
    width: 100%;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
}

.language-card textarea {
    min-height: 90px;
    resize: vertical;
}

.modal-actions {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.modal-actions-right {
    display: flex;
    gap: 12px;
}

.btn-link {
    border: none;
    background: transparent;
    color: var(--dark-green);
    font-weight: 600;
    cursor: pointer;
}

.admin-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.admin-actions .btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.admin-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    box-shadow: 0 4px 12px rgba(var(--dark-green-rgb), 0.3);
}

.admin-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--dark-green-rgb), 0.4);
}

.admin-actions .btn-secondary {
    background: #E0E8D9;
    color: var(--dark-green);
}

.admin-actions .btn-secondary:hover {
    background: #C8D8C9;
    transform: translateY(-2px);
}

.success-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
    border: 2px solid #c3e6cb;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(21, 87, 36, 0.15);
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message::before {
    content: '✓';
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    margin-right: 12px;
    line-height: 30px;
    font-size: 18px;
    font-weight: bold;
}

/* ===============================================
   LEGAL PAGES STYLES
   =============================================== */

.legal-page {
    background-color: #F8F8F6;
}

.legal-main {
    padding: 60px 0;
}

.legal-main h1 {
    font-size: 42px;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.legal-section {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--bg-soft-green) 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.legal-section h2 {
    font-size: 24px;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.legal-section h3 {
    font-size: 18px;
    color: var(--primary-green);
    margin: 20px 0 10px;
}

.legal-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 20px;
    color: #555;
    line-height: 1.8;
}

.legal-section ul li {
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--primary-green);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--dark-green);
}

.legal-date {
    text-align: center;
    color: #999;
    font-style: italic;
    margin: 40px 0;
}

.legal-footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #E0E0E0;
}

.legal-footer-links a {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.legal-footer-links a:hover {
    color: var(--dark-green);
}

/* ===============================================
   MENU PAGE ADDITIONS
   =============================================== */

.menu-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

.menu-highlight {
    background: linear-gradient(135deg, var(--bg-warm-white) 0%, var(--bg-soft-green) 100%);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.menu-special-item {
    text-align: center;
}

.menu-availability {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    margin-top: 10px;
}

.menu-footer-info {
    margin-top: 60px;
    text-align: center;
}

.menu-slogan {
    font-size: 28px;
    color: var(--primary-green);
    font-family: 'Gotham Narrow', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    margin-bottom: 30px;
}

.menu-disclaimers {
    background-color: #FEFEF8;
    padding: 20px;
    border-radius: 8px;
}

.menu-disclaimers p {
    font-size: 13px;
    color: #666;
    margin: 8px 0;
    line-height: 1.6;
}

/* ===============================================
   MENU SELECTION PAGE STYLES
   VEGAN KISS Corporate Design: Gold & Beige
   =============================================== */

.menu-selection-page {
    background: linear-gradient(160deg, #FAFCF8 0%, #F0F5E9 40%, #E5EDD9 100%);
    min-height: 100vh;
}

.selection-main {
    padding: 80px 0;
}

.selection-title {
    text-align: center;
    font-size: 48px;
    color: #5A4A32;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.1);
}

.selection-subtitle {
    text-align: center;
    font-size: 18px;
    color: #7A6B52;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.menu-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.menu-card {
    position: relative;
    background: linear-gradient(145deg, #FFFFFF 0%, #F3F7ED 50%, #E5EDD9 100%);
    border-radius: 20px;
    padding: 50px 40px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(139, 115, 68, 0.12);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.menu-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.menu-card:hover::before {
    opacity: 1;
}

.menu-card-left {
    animation: slideInLeft 0.8s ease-out;
    border: 1px solid rgba(112, 146, 64, 0.25);
}

.menu-card-left:hover {
    border-color: rgba(112, 146, 64, 0.5);
    box-shadow: 0 20px 60px rgba(112, 146, 64, 0.2);
}

.menu-card-right {
    animation: slideInRight 0.8s ease-out;
    background: linear-gradient(145deg, #F8FCF5 0%, #F0F5E9 50%, #E5EDD9 100%);
    border: 2px solid var(--accent-yellow);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.5);
}

.menu-card-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.menu-card-icon {
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

.menu-card-icon.special {
    animation: rotate-pulse 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate-pulse {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-5deg) scale(1.05);
    }
    75% {
        transform: rotate(5deg) scale(1.05);
    }
}

.menu-card h2 {
    font-size: 32px;
    color: #5A4A32;
    margin-bottom: 15px;
    font-weight: 700;
}

.menu-card p {
    font-size: 16px;
    color: #7A6B52;
    line-height: 1.8;
    margin-bottom: 25px;
}

.menu-card-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(112, 146, 64, 0.12) 0%, rgba(112, 146, 64, 0.22) 100%);
    color: #5A7A32;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(112, 146, 64, 0.3);
}

.menu-card-badge.special {
    background: linear-gradient(135deg, #D4AF37 0%, #B8963A 100%);
    color: white;
    font-size: 18px;
    padding: 10px 25px;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
    border: none;
}

.menu-card-highlight {
    color: #B8963A;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 10px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.menu-card-arrow {
    font-size: 36px;
    color: #B8963A;
    margin-top: 20px;
    transition: transform 0.3s, color 0.3s;
}

/* Speisekarte: Grüner Pfeil */
.menu-card-left .menu-card-arrow {
    color: #709240;
}

.menu-card-left:hover .menu-card-arrow {
    transform: translateX(10px);
    color: #8BA857;
}

/* Wochenmenü: Gold Pfeil */
.menu-card-right:hover .menu-card-arrow {
    transform: translateX(10px);
    color: #D4AF37;
}

.menu-info-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-box {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(145deg, #FFFFFF 0%, #F3F7ED 50%, #E5EDD9 100%);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(139, 115, 68, 0.1);
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.info-box:hover {
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.info-box:nth-child(1) {
    animation-delay: 0.2s;
}

.info-box:nth-child(2) {
    animation-delay: 0.4s;
}

.info-box:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-box svg {
    margin-bottom: 15px;
}

.info-box h3 {
    font-size: 18px;
    color: #5A4A32;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-box p {
    font-size: 14px;
    color: #7A6B52;
    line-height: 1.6;
}

/* Textarea styling for forms */
textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E0E8D9;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #FAFCF8;
    resize: vertical;
}

textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(var(--dark-green-rgb), 0.1);
}

/* ===============================================
   CONTACT PAGE STYLES
   =============================================== */

.contact-page {
    background-color: var(--bg-gold-beige);
    transition: background-color 0.5s ease;
}

.contact-main {
    padding: 80px 0;
}

.contact-title {
    text-align: center;
    font-size: 42px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--bg-soft-green) 100%);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(var(--dark-green-rgb), 0.15);
}

.contact-card svg {
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-card p {
    color: #666;
    line-height: 1.8;
    margin: 8px 0;
}

.contact-phone,
.contact-email {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-phone:hover,
.contact-email:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

.contact-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--dark-green);
}

.contact-hours,
.contact-note {
    font-size: 13px;
    color: #999;
    font-style: italic;
}

.contact-form-section {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--bg-soft-green) 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-form-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E0E8D9;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #FAFCF8;
    cursor: pointer;
}

.contact-form select:focus {
    outline: none;
    border-color: var(--primary-green);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(var(--dark-green-rgb), 0.1);
}

.form-privacy-note {
    font-size: 13px;
    color: #999;
    text-align: center;
    margin-top: 10px;
}

.form-privacy-note a {
    color: var(--primary-green);
    text-decoration: underline;
}

.contact-extra {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 60px auto 0;
}

.hours-card,
.location-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf8 100%);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid rgba(var(--dark-green-rgb), 0.1);
}

.hours-card h3,
.location-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.hours-highlight {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 18px;
    margin: 10px 0;
}

.hours-card p,
.location-card p {
    color: #666;
    line-height: 1.8;
}

/* ===============================================
   DISH INFO MODAL
   =============================================== */

.dish-info-btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(var(--dark-green-rgb), 0.2);
    margin-left: 10px;
}

.dish-info-btn:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 12px rgba(var(--dark-green-rgb), 0.3);
}

.dish-info-btn:active {
    transform: scale(0.95);
}

.dish-info-btn svg {
    color: white;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.menu-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ============================================
   SIMPLIFIED & BEAUTIFUL DISH MODAL 
   ============================================ */

/* Modal Overlay */
.dish-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    animation: fadeIn 0.4s ease;
}

.dish-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.dish-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.4s ease;
}

/* Modal Content Container */
.dish-modal-content {
    position: relative;
    background: #FFFFFF;
    border-radius: 24px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    z-index: 10001;
    animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Smooth scrolling */
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Modal Close Button */
.dish-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10002;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dish-modal-close:hover {
    background: #FFFFFF;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.dish-modal-close svg {
    color: #333;
}

/* Modal Image */
.dish-modal-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* Modal Info Section */
.dish-modal-info {
    padding: 32px;
    text-align: left;
}

.dish-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 12px;
    line-height: 1.3;
    text-align: center;
}

.dish-modal-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.dish-modal-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: left;
    padding: 20px 0;
    border-top: 2px solid #F0F0F0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Modal Image Container */
.dish-modal-image-container {
    position: relative;
    width: 100%;
    min-height: 300px;
    max-height: 70vh;
    background: #f5f5f5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dish-modal-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #999;
    font-size: 18px;
    font-style: italic;
}

/* Modal Sections */
.dish-modal-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #F0F0F0;
    text-align: left;
}

.dish-modal-section-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.dish-modal-allergies {
    background: #FFF9E6;
    border-left: 4px solid #FFA500;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 10px;
}

.dish-modal-allergies p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.dish-modal-allergies .allergy-tag {
    display: inline-block;
    background: #FFE5B4;
    color: #8B6914;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    margin: 4px 4px 4px 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===============================================
   RESPONSIVE STYLES
   =============================================== */

@media (max-width: 768px) {
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Mobile Navigation */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #ffffff 0%, #f8fdf8 100%);
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        padding: 80px 30px 30px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        z-index: 1000;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }
    
    .nav.active {
        right: 0;
    }
    
    .mobile-nav-overlay {
        display: block;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 12px 0;
        border-bottom: 1px solid #E8EDE5;
    }
    
    .btn-primary-nav,
    .btn-menu-red,
    .btn-res-active {
        text-align: center;
        width: 100%;
        margin-top: 10px;
    }
    
    .admin-link-header {
        margin: 20px auto 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .food-gallery {
        grid-template-columns: 1fr;
    }
    
    .reservation-content,
    .catering-content {
        grid-template-columns: 1fr;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .floating-buttons {
        right: 15px;
        bottom: 30px;
    }
    
    .wochenmenu-header {
        flex-direction: column;
        text-align: center;
    }
    
    .wochenmenu-title-box {
        text-align: center;
    }
    
    .admin-login-btn {
        right: 15px;
        top: 80px;
    }
    
    .login-card {
        padding: 30px 20px;
        max-width: 90%;
    }
    
    .admin-login-page {
        background-color: var(--bg-gold-beige-mobile);
    }
    
    .day-editor {
        padding: 20px;
    }
    
    .admin-actions {
        flex-direction: column;
    }
    
    .legal-footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .menu-cards-container {
        grid-template-columns: 1fr;
    }
    
    .menu-info-boxes {
        grid-template-columns: 1fr;
    }
    
    .selection-title {
        font-size: 32px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-extra {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .values-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Dish Modal Mobile */
    /* Simplified Modal - Mobile */
    .dish-modal-content {
        width: 95%;
        max-width: 95vw;
        max-height: 90vh;
        border-radius: 16px;
        margin: 0 auto;
        overflow-y: auto;
    }
    
    .dish-modal-image {
        height: auto;
        max-height: 50vh;
        object-fit: contain;
    }
    
    .dish-modal-image-container {
        min-height: 200px;
        max-height: 50vh;
    }
    
    .dish-modal-info {
        padding: 20px 16px;
    }
    
    .dish-modal-title {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .admin-login-page {
        background-color: var(--bg-gold-beige-mobile);
    }
    
    .login-card {
        max-width: 90%;
    }
}

/* ===============================================
   BILD-GROSSANSICHT MODAL (Wochenmenü)
   =============================================== */

.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.image-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.image-modal-content {
    position: relative;
    z-index: 10001;
    max-width: 95%;
    max-height: 95vh;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: modalSlideIn 0.3s ease-out;
    overflow: visible;
}

.image-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10002;
}

.image-modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.image-modal-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: block;
}

.image-modal-title {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    font-family: 'Gotham Narrow', 'Montserrat', sans-serif;
}

/* Responsive für Bild-Modal */
@media (max-width: 768px) {
    .image-modal-content {
        max-width: 98%;
        max-height: 98vh;
        padding: 15px;
    }
    
    .image-modal-img {
        max-height: 80vh;
        max-width: 100%;
    }
    
    .image-modal-title {
        font-size: 16px;
    }
    
    .image-modal-close {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
    }
}

/* ===============================================
   CURSOR FOLLOW ANIMATION & INFO COMMENTS
   =============================================== */

/* Cursor Follow - Minimalistisch */
.cursor-follow {
    position: fixed;
    width: 12px;
    height: 12px;
    border: 1.5px solid var(--corp-pink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-width 0.3s ease;
    mix-blend-mode: difference;
    opacity: 0.6;
}

.cursor-follow.cursor-hover {
    width: 24px;
    height: 24px;
    border-width: 2px;
    opacity: 0.8;
}

/* ===============================================
   GEOMETRISCHE HINTERGRUND-SHAPES
   =============================================== */
.bg-shape {
    position: fixed;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
    border: 2px solid rgba(112, 146, 64, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, filter, border-color;
}

/* Kreise */
.bg-shape-circle {
    border-radius: 50%;
    background: radial-gradient(circle, rgba(112, 146, 64, 0.08) 0%, transparent 70%);
    animation: float-circle 20s ease-in-out infinite;
}

/* Dreiecke */
.bg-shape-triangle {
    width: 0 !important;
    height: 0 !important;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid rgba(112, 146, 64, 0.08);
    border-radius: 3px;
    background: transparent !important;
    animation: float-triangle 25s ease-in-out infinite;
}

/* Quadrate */
.bg-shape-square {
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(112, 146, 64, 0.08) 0%, transparent 100%);
    animation: float-square 18s ease-in-out infinite;
}

/* Hexagone */
.bg-shape-hexagon {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(60deg, rgba(112, 146, 64, 0.08) 0%, rgba(197, 27, 125, 0.05) 100%);
    animation: float-hexagon 22s ease-in-out infinite;
}

/* Floating Animationen */
@keyframes float-circle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(0) rotate(180deg);
    }
    75% {
        transform: translateY(20px) rotate(270deg);
    }
}

@keyframes float-triangle {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    33% {
        transform: translateX(15px) rotate(120deg);
    }
    66% {
        transform: translateX(-15px) rotate(240deg);
    }
}

@keyframes float-square {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(10px, -10px) rotate(180deg) scale(1.1);
    }
}

@keyframes float-hexagon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(15px) rotate(60deg);
    }
    50% {
        transform: translateY(0) rotate(120deg);
    }
    75% {
        transform: translateY(-15px) rotate(180deg);
    }
}

/* Info Comments - Responsive */
.info-comment {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(197, 27, 125, 0.95);
    color: white;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-family: 'Gotham Narrow', 'Montserrat', sans-serif;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    z-index: 10000;
    box-shadow: 0 8px 24px rgba(197, 27, 125, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 90%;
    text-align: center;
}

.info-comment.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===============================================
   RESPONSIVE GOLD-BEIGE HINTERGRUNDFARBE
   Dynamisch angepasst für verschiedene Bildschirmgrößen
   =============================================== */

@media (min-width: 1200px) {
    /* Desktop - wärmerer, tieferer Gold-Ton */
    body,
    .menu-page,
    .about-page,
    .contact-page,
    .wochenmenu-page {
        background: linear-gradient(160deg, #FAFCF8 0%, #F0F5E9 40%, #E5EDD9 100%);
    }
    
    body::after {
        background: 
            radial-gradient(ellipse 1200px 800px at 10% 20%, rgba(197, 27, 125, 0.6) 0%, transparent 60%),
            radial-gradient(ellipse 1000px 700px at 90% 80%, rgba(197, 27, 125, 0.6) 0%, transparent 60%),
            radial-gradient(ellipse 1500px 1000px at 50% 50%, rgba(182, 207, 174, 0.6) 0%, transparent 70%),
            linear-gradient(135deg, 
                rgba(245, 232, 212, 0.85) 0%, 
                rgba(250, 243, 232, 0.95) 50%,
                rgba(237, 217, 192, 0.75) 100%);
    }
}

@media (min-width: 769px) and (max-width: 1199px) {
    /* Tablet - mittlerer Gold-Ton */
    body,
    .menu-page,
    .about-page,
    .contact-page,
    .wochenmenu-page {
        background: linear-gradient(160deg, #FAFCF8 0%, #F0F5E9 40%, #E5EDD9 100%);
    }
    
    body::after {
        background: 
            radial-gradient(ellipse 1000px 600px at 10% 20%, rgba(197, 27, 125, 0.5) 0%, transparent 55%),
            radial-gradient(ellipse 800px 500px at 90% 80%, rgba(197, 27, 125, 0.5) 0%, transparent 55%),
            linear-gradient(135deg, 
                rgba(247, 234, 214, 0.85) 0%, 
                rgba(250, 243, 232, 0.9) 50%,
                rgba(242, 225, 200, 0.8) 100%);
    }
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    /* Mobile - hellerer, sanfterer Gold-Ton */
    body,
    .menu-page,
    .about-page,
    .contact-page,
    .wochenmenu-page {
        background: linear-gradient(160deg, #FAFCF8 0%, #F0F5E9 40%, #E5EDD9 100%);
    }
    
    body::after {
        background: 
            radial-gradient(ellipse 800px 500px at 10% 20%, rgba(197, 27, 125, 0.4) 0%, transparent 50%),
            radial-gradient(ellipse 600px 400px at 90% 80%, rgba(197, 27, 125, 0.4) 0%, transparent 50%),
            linear-gradient(135deg, 
                rgba(248, 237, 222, 0.9) 0%, 
                rgba(250, 243, 232, 0.95) 50%,
                rgba(245, 232, 212, 0.85) 100%);
    }
    
    .cursor-follow,
    .bg-shape {
        display: none; /* Auf Touch-Geräten nicht anzeigen */
    }
    
    .info-comment {
        font-size: 13px;
        padding: 12px 20px;
        bottom: 20px;
        max-width: 85%;
        white-space: normal;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .info-comment {
        font-size: 12px;
        padding: 10px 16px;
        bottom: 15px;
        max-width: 90%;
        border-radius: 20px;
    }
    
    .dish-modal-title {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .dish-modal-price {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .dish-modal-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .dish-modal-close {
        width: 36px;
        height: 36px;
        top: 12px;
        right: 12px;
    }
    
    .dish-info-btn {
        width: 32px;
        height: 32px;
    }
}

/* ===============================================
   EXTRA SMALL DEVICES (unter 480px)
   =============================================== */
@media (max-width: 480px) {
    /* Dish Modal - Extra Small Screens */
    .dish-modal-content {
        width: 98%;
        max-width: 98vw;
        max-height: 92vh;
        border-radius: 12px;
    }
    
    .dish-modal-image {
        height: auto;
        max-height: 40vh;
        object-fit: contain;
    }
    
    .dish-modal-image-container {
        min-height: 180px;
        max-height: 40vh;
    }
    
    .dish-modal-info {
        padding: 16px 12px;
    }
    
    .dish-modal-title {
        font-size: 18px;
    }
    
    .dish-modal-price {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .dish-modal-description {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .dish-modal-close {
        width: 32px;
        height: 32px;
        top: 8px;
        right: 8px;
    }
}

/* ============================================
   Termegro Designs Collapsible Footer
   ============================================ */
.td-collapsible {
    position: relative;
}

/* Collapsed Bar */
.td-collapsed-bar {
    background: linear-gradient(90deg, #1a2e1a 0%, #0f1f0f 100%);
    border-top: 2px solid var(--primary-green, #709240);
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.td-collapsed-bar:hover {
    background: linear-gradient(90deg, #243824 0%, #1a2e1a 100%);
}

.td-collapsible.expanded .td-collapsed-bar {
    display: none;
}

.td-collapsed-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.td-mini-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    animation: miniLogoGlow 2s ease-in-out infinite alternate;
}

@keyframes miniLogoGlow {
    0% { filter: drop-shadow(0 0 3px rgba(212, 176, 74, 0.3)); }
    100% { filter: drop-shadow(0 0 8px rgba(212, 176, 74, 0.6)); }
}

.td-collapsed-text {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.td-expand-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.td-expand-btn svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-yellow, #D4B04A);
    transition: transform 0.3s ease;
}

.td-collapsed-bar:hover .td-expand-btn {
    background: rgba(212, 176, 74, 0.2);
}

.td-collapsed-bar:hover .td-expand-btn svg {
    transform: translateY(2px);
}

/* Expanded Content */
.td-expanded-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s ease;
    background: linear-gradient(180deg, #1a2e1a 0%, #0f1f0f 100%);
    border-top: 3px solid var(--primary-green, #709240);
    position: relative;
}

.td-collapsible.expanded .td-expanded-content {
    max-height: 800px;
    opacity: 1;
    padding: 60px 0 0;
}

.td-collapse-btn {
    position: absolute;
    top: 15px;
    right: 30px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(212, 176, 74, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.td-collapse-btn:hover {
    background: rgba(212, 176, 74, 0.2);
    border-color: var(--accent-yellow, #D4B04A);
}

.td-collapse-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-yellow, #D4B04A);
}

.td-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Brand Section */
.td-footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.td-logo-wrapper {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-green, #709240) 0%, var(--dark-green, #4A602B) 100%);
    padding: 8px;
    box-shadow: 0 4px 20px rgba(112, 146, 64, 0.3);
}

.td-animated-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: logoFloat 4s ease-in-out infinite, logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(1deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(3px) rotate(-1deg); }
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 5px rgba(212, 176, 74, 0.3)); }
    100% { filter: drop-shadow(0 0 15px rgba(212, 176, 74, 0.6)); }
}

.td-brand-info {
    display: flex;
    flex-direction: column;
}

.td-brand-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-yellow, #D4B04A);
    margin: 0 0 4px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.td-brand-tagline {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.td-brand-description {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0;
    grid-column: 1;
}

/* Expertise Section */
.td-expertise {
    grid-column: 2;
    grid-row: 1 / 3;
}

.td-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px;
    text-align: center;
}

.td-expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.td-expertise-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(112, 146, 64, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.td-expertise-item:hover {
    background: rgba(112, 146, 64, 0.15);
    border-color: var(--accent-yellow, #D4B04A);
    transform: translateY(-3px);
}

.td-expertise-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green, #709240) 0%, var(--dark-green, #4A602B) 100%);
    border-radius: 10px;
}

.td-expertise-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-yellow, #D4B04A);
}

.td-expertise-item span {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    text-align: center;
}

/* Contact Section */
.td-contact {
    grid-column: 3;
    grid-row: 1 / 3;
}

.td-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.td-contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(112, 146, 64, 0.3);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.td-contact-btn:hover {
    background: rgba(112, 146, 64, 0.2);
    border-color: var(--accent-yellow, #D4B04A);
    transform: translateX(5px);
}

.td-contact-btn.td-whatsapp svg {
    fill: #25D366;
}

.td-contact-btn.td-email svg {
    stroke: var(--accent-yellow, #D4B04A);
}

.td-contact-info {
    display: flex;
    flex-direction: column;
}

.td-contact-label {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.td-contact-value {
    font-size: 13px;
    color: #fff;
    font-weight: 500;
}

.td-availability {
    font-size: 12px;
    color: var(--primary-green, #709240);
    margin: 16px 0 0;
    text-align: center;
}

/* Footer Bottom */
.td-footer-bottom {
    margin-top: 40px;
    padding: 16px 30px;
    background: rgba(0,0,0,0.3);
    text-align: right;
}

.td-footer-bottom span {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
    .td-footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .td-expertise {
        grid-column: 1 / 3;
        grid-row: 2;
    }
    
    .td-brand-description {
        grid-column: 1;
    }
    
    .td-contact {
        grid-column: 2;
        grid-row: 1;
    }
}

@media (max-width: 768px) {
    .td-footer-section {
        padding: 40px 0 0;
    }
    
    .td-footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .td-footer-brand {
        justify-content: center;
    }
    
    .td-brand-description {
        text-align: center;
    }
    
    .td-expertise {
        grid-column: 1;
        grid-row: auto;
    }
    
    .td-expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .td-contact {
        grid-column: 1;
        grid-row: auto;
    }
    
    .td-footer-bottom {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .td-expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .td-expertise-item {
        padding: 12px 8px;
    }
    
    .td-logo-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .td-brand-title {
        font-size: 18px;
    }
}

/* ===============================================
   VOLLSTÄNDIGES RESPONSIVE DESIGN SYSTEM
   Automatische Geräteerkennung & Anpassung
   =============================================== */

/* 
   BREAKPOINTS:
   - Extra Small (XS): 0 - 479px (kleine Smartphones)
   - Small (SM): 480px - 767px (große Smartphones)
   - Medium (MD): 768px - 1023px (Tablets)
   - Large (LG): 1024px - 1199px (kleine Laptops)
   - Extra Large (XL): 1200px - 1439px (Desktop)
   - XXL: 1440px+ (große Monitore)
*/

/* ==================== BASE / MOBILE FIRST ==================== */
:root {
    /* Responsive Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
    
    /* Responsive Typography */
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 22px;
    --font-size-2xl: 28px;
    --font-size-3xl: 36px;
    --font-size-4xl: 48px;
    
    /* Container Widths */
    --container-padding: 16px;
    --container-max-width: 1400px;
}

/* ==================== EXTRA SMALL (XS): 0 - 479px ==================== */
@media (max-width: 479px) {
    :root {
        --spacing-lg: 16px;
        --spacing-xl: 24px;
        --spacing-xxl: 32px;
        --font-size-xl: 18px;
        --font-size-2xl: 22px;
        --font-size-3xl: 28px;
        --font-size-4xl: 36px;
        --container-padding: 12px;
    }
    
    /* Container */
    .container {
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }
    
    /* Header */
    .header {
        padding: 10px 0;
    }
    
    .logo-img {
        width: 40px !important;
        height: 40px !important;
    }
    
    /* Hero */
    .hero-home {
        height: auto;
        min-height: 500px;
        padding: 100px 16px 60px;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl) !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: var(--font-size-sm) !important;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: var(--font-size-base);
    }
    
    /* USP Grid */
    .usp-grid,
    .usp-grid-6 {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    
    .usp-item {
        padding: 20px 16px;
    }
    
    .usp-item h3 {
        font-size: 16px !important;
    }
    
    .usp-item p {
        font-size: 14px !important;
    }
    
    .usp-icon {
        width: 50px;
        height: 50px;
    }
    
    /* Section Titles */
    .section-title,
    h1 {
        font-size: var(--font-size-2xl) !important;
    }
    
    h2 {
        font-size: var(--font-size-xl) !important;
    }
    
    h3 {
        font-size: var(--font-size-lg) !important;
    }
    
    /* Cards */
    .dish-card,
    .weekly-dish-card {
        margin: 0 8px;
    }
    
    /* Footer */
    .footer-columns {
        grid-template-columns: 1fr !important;
        gap: 24px;
        text-align: center;
    }
    
    .footer-col h4 {
        font-size: 16px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    /* About Page */
    .about-main .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .about-main div[style*="padding: 40px"] {
        padding: 24px !important;
    }
    
    .about-main div[style*="padding: 50px"] {
        padding: 24px !important;
    }
    
    /* Philosophy Grid */
    .about-main div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .btn-primary-nav {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    /* Forms */
    input, select, textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
        padding: 14px 16px;
    }
    
    /* Menu Selection Cards */
    .menu-card {
        padding: 30px 20px;
    }
    
    .menu-card h2 {
        font-size: 20px !important;
    }
    
    /* Canvas-Partikel werden automatisch via JS angepasst */
    
    /* Navigation Overlay */
    .mobile-nav-overlay.active + .nav {
        width: 85%;
    }
    
    /* Quote/Blockquote */
    blockquote {
        font-size: 18px !important;
        padding: 20px !important;
    }
}

/* ==================== SMALL (SM): 480px - 767px ==================== */
@media (min-width: 480px) and (max-width: 767px) {
    :root {
        --spacing-xl: 28px;
        --spacing-xxl: 40px;
        --font-size-3xl: 32px;
        --font-size-4xl: 42px;
        --container-padding: 16px;
    }
    
    .container {
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }
    
    /* Hero */
    .hero-home {
        height: auto;
        min-height: 550px;
        padding: 120px 20px 70px;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl) !important;
    }
    
    .hero-subtitle {
        font-size: 15px !important;
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    /* USP Grid */
    .usp-grid,
    .usp-grid-6 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }
    
    .usp-item {
        padding: 24px 18px;
    }
    
    /* About Page Grids */
    .about-main div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    .about-main div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Footer */
    .footer-columns {
        grid-template-columns: 1fr 1fr !important;
        gap: 24px;
    }
    
    /* Cards */
    .dish-card,
    .weekly-dish-card {
        margin: 0;
    }
    
    /* Canvas-Partikel passen sich automatisch an */
}

/* ==================== MEDIUM (MD): 768px - 1023px (Tablets) ==================== */
@media (min-width: 768px) and (max-width: 1023px) {
    :root {
        --spacing-xxl: 44px;
        --font-size-3xl: 38px;
        --font-size-4xl: 48px;
        --container-padding: 24px;
    }
    
    .container {
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }
    
    /* Header */
    .header .container {
        padding: 0 24px;
    }
    
    /* Hero */
    .hero-home {
        height: 600px;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 44px !important;
    }
    
    .hero-subtitle {
        font-size: 17px !important;
    }
    
    /* USP Grid */
    .usp-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px;
    }
    
    .usp-grid-6 {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px;
    }
    
    .usp-item {
        padding: 28px 20px;
    }
    
    /* About Page */
    .about-main div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }
    
    .about-main div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }
    
    /* Footer */
    .footer-columns {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px;
    }
    
    /* Navigation - Tablet adjustments */
    .nav-link {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    /* Canvas-Partikel skalieren automatisch */
}

/* ==================== LARGE (LG): 1024px - 1199px ==================== */
@media (min-width: 1024px) and (max-width: 1199px) {
    :root {
        --container-padding: 32px;
    }
    
    .container {
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
        max-width: 1100px;
    }
    
    /* Hero */
    .hero-home {
        height: 620px;
    }
    
    .hero-title {
        font-size: 50px !important;
    }
    
    /* USP Grid */
    .usp-grid {
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 18px;
    }
    
    .usp-grid-6 {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px;
    }
    
    /* Canvas-Partikel via JS gesteuert */
    
    /* Navigation */
    .nav-link {
        padding: 10px 14px;
        font-size: 14px;
    }
}

/* ==================== EXTRA LARGE (XL): 1200px - 1439px ==================== */
@media (min-width: 1200px) and (max-width: 1439px) {
    :root {
        --container-padding: 40px;
    }
    
    .container {
        max-width: 1200px;
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }
    
    /* Hero */
    .hero-home {
        height: 650px;
    }
    
    .hero-title {
        font-size: 54px !important;
    }
    
    /* USP Grid 6 columns */
    .usp-grid-6 {
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 20px;
    }
    
    /* Canvas-Partikel via JS gesteuert */
}

/* ==================== XXL: 1440px+ ==================== */
@media (min-width: 1440px) {
    :root {
        --container-padding: 48px;
        --font-size-4xl: 56px;
    }
    
    .container {
        max-width: var(--container-max-width);
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }
    
    /* Hero */
    .hero-home {
        height: 700px;
    }
    
    .hero-title {
        font-size: 60px !important;
    }
    
    .hero-subtitle {
        font-size: 20px !important;
    }
    
    /* USP Grid */
    .usp-item {
        padding: 36px 28px;
    }
    
    .usp-item h3 {
        font-size: 22px !important;
    }
    
    /* Canvas-Partikel via JS gesteuert */
}

/* ==================== ULTRA WIDE: 1920px+ ==================== */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-home {
        height: 750px;
    }
    
    .hero-title {
        font-size: 68px !important;
    }
    
    /* Canvas-Partikel via JS gesteuert */
}

/* ==================== TOUCH DEVICE OPTIMIZATIONS ==================== */
@media (hover: none) and (pointer: coarse) {
    /* Touch-friendly tap targets */
    .btn,
    .nav-link,
    a {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove hover effects on touch */
    .btn:hover,
    .nav-link:hover,
    .usp-item:hover,
    .dish-card:hover {
        transform: none;
    }
    
    /* Larger touch targets for forms */
    input, select, textarea, button {
        min-height: 48px;
    }
    
    /* Canvas-Animationen werden via JS für Touch optimiert */
}

/* ==================== LANDSCAPE MOBILE ==================== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-home {
        height: auto;
        min-height: 100vh;
        padding: 80px 30px 40px;
    }
    
    .hero-title {
        font-size: 28px !important;
    }
    
    .hero-subtitle {
        font-size: 14px !important;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    /* Compact header in landscape */
    .header {
        padding: 8px 0;
    }
    
    .logo-img {
        width: 36px !important;
        height: 36px !important;
    }
}

/* ==================== HIGH DPI / RETINA DISPLAYS ==================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Sharper images on retina */
    .logo-img,
    .watermark-logo {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    /* Hide non-essential elements */
    .header,
    .footer-res,
    .mobile-menu-btn,
    .hero-watermark,
    #premium-bg-canvas,
    .td-collapsible {
        display: none !important;
    }
    
    /* Optimize for print */
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    a {
        color: black !important;
        text-decoration: underline;
    }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    /* Canvas-Animationen werden via JS reduziert */
}

/* ==================== DARK MODE PREFERENCE ==================== */
@media (prefers-color-scheme: dark) {
    /* Optional: Subtle adjustments for users with dark mode preference */
    /* Currently keeping the light theme - Canvas passt sich automatisch an */
}

