/* ============================================================
   1. FONTS (LOKAL)
   ============================================================ */
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans-v44-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --wine: #6B1C3A;
    --wine-dark: #4A1228;
    --wine-light: #8B2E50;
    --cream: #F7F2ED;
    --cream-dark: #EDE5DC;
    --gold: #C8A96E;
    --gold-light: #D4BC8A;
    --text-dark: #2C2C2C;
    --text-medium: #555;
    --text-light: #777;
    --white: #FFFFFF;
    --shadow: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --active-gray: #3a3a3a;
    --hover-gray: #e0e0e0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
		
		       /* ============================================================
           MENÜ-STYLES (direkt hier, damit das Menü sofort funktioniert)
           ============================================================ */
        * {
            box-sizing: border-box;
        }
        .top-bar {
            background: #f8f8f8;
            padding: 0.75rem 0;
            border-bottom: 1px solid #e0e0e0;
        }
        .top-bar .container, .main-nav .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .logo-link img {
            max-height: 55px;
            width: auto;
            display: block;
        }
        .contact-info {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }
        .contact-info a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
        }
        .main-nav {
            background: white;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
            position: relative;
            z-index: 1000;
        }
        .main-nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            min-height: 60px;
        }
        /* Desktop-Ansicht */
        @media (min-width: 769px) {
            .nav-list {
                display: flex;
                list-style: none;
                margin: 0;
                padding: 0;
                gap: 0.25rem;
            }
            .nav-list li {
                position: relative;
            }
            .menu-link-wrapper {
                display: flex;
                align-items: center;
                gap: 0.2rem;
            }
            .nav-list a {
                display: inline-block;
                padding: 0.75rem 1rem;
                text-decoration: none;
                color: #222;
                font-weight: 500;
                white-space: nowrap;
            }
            .nav-list a:hover, .nav-list a.active {
                color: #b31b1b;
                background: #fafafa;
            }
            .dropdown-toggle {
                background: none;
                border: none;
                font-size: 0.7rem;
                cursor: pointer;
                padding: 0 0.3rem;
                color: #666;
                transition: transform 0.2s;
            }
            .dropdown {
                position: absolute;
                top: 100%;
                left: 0;
                background: white;
                min-width: 220px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                border-radius: 0 0 8px 8px;
                z-index: 100;
                display: none;
            }
            .dropdown .nav-list {
                flex-direction: column;
                gap: 0;
            }
            .dropdown .nav-list a {
                white-space: nowrap;
                width: 100%;
                padding: 0.6rem 1rem;
            }
            .nav-list li.has-dropdown:hover > .dropdown {
                display: block;
            }
            .nav-list li.has-dropdown:hover > .menu-link-wrapper .dropdown-toggle {
                transform: rotate(180deg);
            }
        }
        /* Mobile-Ansicht */
        @media (max-width: 768px) {
            .hamburger {
                display: block;
                background: none;
                border: none;
                cursor: pointer;
                padding: 0.5rem;
            }
            .hamburger span {
                display: block;
                width: 25px;
                height: 3px;
                background: #222;
                margin: 5px 0;
                border-radius: 2px;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: white;
                position: absolute;
                top: 100%;
                left: 0;
                z-index: 1000;
                padding: 0;
                margin: 0;
                box-shadow: 0 4px 8px rgba(0,0,0,0.1);
                border-top: 1px solid #eee;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li {
                width: 100%;
                border-bottom: 1px solid #f0f0f0;
                margin: 0;
                list-style: none;
            }
            .menu-link-wrapper {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 0 1rem;
            }
            .nav-list a {
                display: block;
                padding: 0.8rem 0;
                text-decoration: none;
                color: #222;
                font-weight: 500;
                width: 100%;
            }
            .dropdown-toggle {
                background: none;
                border: none;
                font-size: 1rem;
                padding: 0 0.8rem;
                cursor: pointer;
                color: #666;
            }
            .dropdown {
                display: none;
                background: #f9f9f9;
                width: 100%;
                padding: 0;
                margin: 0;
                border-top: 1px solid #ddd;
            }
            .dropdown .nav-list {
                position: static;
                box-shadow: none;
                display: flex;
                flex-direction: column;
                border-top: none;
            }
            .dropdown .nav-list li {
                border-bottom: none;
            }
            .dropdown .nav-list a {
                padding: 0.6rem 0 0.6rem 1.5rem;
                background: #f9f9f9;
            }
            .dropdown.open {
                display: block;
            }
        }
        /* Buttons rechts */
        .nav-kontakt {
            display: flex;
            gap: 0.75rem;
            align-items: center;
        }
        .btn-whatsapp, .btn-nav-kontakt {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #25D366;
            color: white;
            padding: 0.45rem 1rem;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
        }
        .btn-nav-kontakt {
            background: #b31b1b;
        }
        .btn-whatsapp svg, .btn-nav-kontakt svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }
        .hamburger {
            display: none;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }

/* ============================================================
   3. BENUTZERDEFINIERTE LISTEN (global im Hauptbereich)
   ============================================================ */
/* Ungeordnete Listen (ul) */
main ul:not(.nav-list):not(.footer-links) {
    list-style: none;
    padding-left: 0;
}
main ul:not(.nav-list):not(.footer-links) li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.5rem;
}
main ul:not(.nav-list):not(.footer-links) li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 1.3rem;
    height: 1.3rem;
    background: var(--wine);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    line-height: 1;
}

/* Geordnete Listen (ol) */
main ol:not(.nav-list):not(.footer-links) {
    counter-reset: custom-counter;
    list-style: none;
    padding-left: 0;
}
main ol:not(.nav-list):not(.footer-links) li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.5rem;
    counter-increment: custom-counter;
}
main ol:not(.nav-list):not(.footer-links) li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.3rem;
    height: 1.3rem;
    background: var(--wine);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1;
}

/* ============================================================
   4. HEADER & NAVIGATION
   ============================================================ */
.top-bar {
    background: var(--white);
    border-bottom: 1px solid var(--cream-dark);
    padding: 15px 0;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-link img {
    height: 70px;
    width: auto;
}
.contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 0.9rem;
    color: var(--text-dark);
}
.contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}
.contact-info a:hover {
    color: var(--wine);
}
.main-nav {
    background: var(--white);
    border-bottom: 2px solid var(--cream-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
}
.nav-list li a {
    display: block;
    padding: 20px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: background-color 0.2s, color 0.2s;
}
@media (min-width: 1025px) {
    .nav-list li a:hover:not(.active) {
        background-color: var(--hover-gray);
        color: var(--text-dark);
    }
}
.nav-list li a.active {
    background-color: var(--active-gray);
    color: white !important;
    border-radius: 0;
    margin: 0;
    padding: 20px 22px;
}
.nav-kontakt {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}
.btn-nav-kontakt, .btn-whatsapp {
    border-radius: 25px;
    padding: 10px 22px !important;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem !important;
    line-height: 1;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.15);
}
.btn-nav-kontakt {
    background: linear-gradient(to bottom, var(--wine-light) 0%, var(--wine) 100%) !important;
    color: var(--white) !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.2);
    text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}
.btn-nav-kontakt:hover {
    background: linear-gradient(to bottom, var(--wine) 0%, var(--wine-dark) 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.btn-whatsapp {
    display: none !important;
    background: linear-gradient(to bottom, #25D366 0%, #128C7E 100%) !important;
    color: white !important;
    border-color: #075E54;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.2);
}
@media (max-width: 1024px) {
    .btn-whatsapp { display: inline-flex !important; }
}
.btn-nav-kontakt svg, .btn-whatsapp svg {
    display: block;
    width: 18px;
    height: 18px;
}

/* ============================================================
   5. BLOCK-STYLES (einheitlich)
   ============================================================ */
section[class^="block-"] {
    padding: 60px 0;
}
section[class^="block-"]:first-of-type {
    padding-top: 40px;
}

/* Hero */
.block-hero {
    margin-top: 0;
    padding-top: 0;
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content-inner {
    background: rgba(255,255,255,0.9);
    padding: 50px 80px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 900px;
    text-align: center;
}
.block-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}
.block-hero p {
    font-size: 1.15rem;
    margin-bottom: 20px;
}

/* Text (Standard) */
.block-text {
    background: transparent;
}
.block-text h2 {
    margin-bottom: 20px;
    color: var(--wine);
    font-size: 2rem;
}

/* Text mit Bild */
.block-text-image {
    padding: 4rem 0;
}
.text-image-wrapper {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}
.text-image-wrapper.image-left {
    flex-direction: row;
}
.text-image-wrapper.image-right {
    flex-direction: row-reverse;
}
.text-image {
    flex: 1;
    min-width: 250px;
}
.text-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}
.text-content {
    flex: 1;
}
@media (max-width: 768px) {
    .text-image-wrapper {
        flex-direction: column !important;
    }
    .text-image {
        width: 100%;
    }
}

/* Karten (Cards 3) */
.block-cards-3 .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.card-header {
    padding: 20px 30px;
    border-bottom: 1px solid var(--cream-dark);
}
.card-header h2 {
    font-size: 1.6rem;
    color: var(--wine);
}
.card-image-placeholder img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.card-body {
    padding: 30px;
}
.card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}
.card-body p {
    margin-bottom: 20px;
}
.btn-delivery, .btn-market {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-delivery {
    background: #5D703E;
    color: white;
}
.btn-market {
    background: #E8D9CC;
    color: #4A2E1C;
}

/* Tabelle */
.block-table {
    padding: 4rem 0;
}
.block-table .container {
    overflow-x: auto;
}
.pricelist {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 2rem 0;
}
.pricelist th,
.pricelist td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--cream-dark);
}
.pricelist th {
    background: #88143D;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}
.pricelist tr:last-child td {
    border-bottom: none;
}
.pricelist tr:nth-child(even) td {
    background-color: rgba(0,0,0,0.02);
}
.pricelist tr:hover td {
    background-color: var(--cream);
}

/* Galerie */
.block-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}
.gallery-item:hover {
    transform: scale(1.02);
}
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
		.gallery-description {
    margin-bottom: 2rem;
}
	
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}
.lightbox-modal.active {
    display: flex;
}
.lightbox-content img {
    max-width: 90vw;
    max-height: 90vh;
}
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

/* FAQ (Akkordeon) */
.block-faq .faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
}
.faq-item summary {
    padding: 18px 25px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    position: relative;
    color: var(--wine-dark);
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: "▼";
    position: absolute;
    right: 25px;
    transition: transform 0.2s;
}
.faq-item[open] summary::after {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 25px 20px 25px;
    border-top: 1px solid var(--cream-dark);
}
		/* Abstand zwischen FAQ-Beschreibung und den FAQ-Items */
.faq-description {
    margin-bottom: 2rem;
}

/* Button-Block (Call-to-Action) */
.block-button {
    text-align: center;
    background: linear-gradient(135deg, var(--cream-dark), var(--cream));
    border-radius: 24px;
    margin: 40px 0;
}
.button-block-content {
    max-width: 700px;
    margin: 0 auto;
}
.button-block-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}
.button-block-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}
.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
    background: var(--wine);
    color: white;
    border-radius: 50px;
    display: inline-block;
}

/* Kontaktformular */
.block-contact-form {
    padding: 60px 0;
    background: transparent;
}
.contact-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.contact-description {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    color: var(--text-medium);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-form .form-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.contact-form .form-row .form-group {
    flex: 1;
    min-width: 180px;
}
.contact-form .form-group {
    margin-bottom: 0;
}
.contact-form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--wine-dark);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--cream-dark);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.2s ease;
    background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.2);
}
.contact-form .checkbox label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
}
.contact-form .checkbox input {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0;
    accent-color: var(--wine);
}
.btn-submit {
    background: var(--wine);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: flex-start;
    margin-top: 0.5rem;
}
.btn-submit:hover {
    background: var(--wine-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 28, 58, 0.3);
}
@media (max-width: 768px) {
    .contact-card {
        padding: 1.5rem;
    }
    .contact-form .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    .btn-submit {
        align-self: stretch;
        text-align: center;
    }
}

/* Google Maps */
.block-google-maps .map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.block-google-maps iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* ============================================================
   6. ÜBERSCHRIFTEN (Abstände & Größen)
   ============================================================ */
.block-text h2,
.block-cards-3 h2,
.block-table h2,
.block-gallery h2,
.block-faq h2,
.block-button h2,
.block-contact-form h2,
.block-google-maps h2,
.block-text h3,
.block-cards-3 h3,
.block-table h3,
.block-gallery h3,
.block-faq h3,
.block-button h3,
.block-contact-form h3,
.block-google-maps h3,
.block-text h4,
.block-cards-3 h4,
.block-table h4,
.block-gallery h4,
.block-faq h4,
.block-button h4,
.block-contact-form h4,
.block-google-maps h4 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
}
.block-text h2,
.block-cards-3 h2,
.block-table h2,
.block-gallery h2,
.block-faq h2,
.block-button h2,
.block-contact-form h2,
.block-google-maps h2 {
    font-size: 2rem;
}
.block-text h3,
.block-cards-3 h3,
.block-table h3,
.block-gallery h3,
.block-faq h3,
.block-button h3,
.block-contact-form h3,
.block-google-maps h3 {
    font-size: 1.6rem;
}
.block-text h4,
.block-cards-3 h4,
.block-table h4,
.block-gallery h4,
.block-faq h4,
.block-button h4,
.block-contact-form h4,
.block-google-maps h4 {
    font-size: 1.3rem;
}
.block-text h2:first-child,
.block-cards-3 h2:first-child,
.block-table h2:first-child,
.block-gallery h2:first-child,
.block-faq h2:first-child,
.block-button h2:first-child,
.block-contact-form h2:first-child,
.block-google-maps h2:first-child {
    margin-top: 0;
}

/* ============================================================
   TEXT-LINKS IM BODY (ohne Unterstreichung, Hover-Farbe)
   ============================================================ */
main a:not(.btn):not(.btn-nav-kontakt):not(.btn-whatsapp):not(.btn-large):not(.btn-delivery):not(.btn-market):not(.video-play-button):not(.hero-video-play-button):not(.lightbox-prev):not(.lightbox-next):not(.lightbox-close) {
    color: inherit; /* oder eine Grundfarbe, z.B. var(--text-dark) */
    text-decoration: none;
    font-weight: 800;
    transition: color 0.2s ease;
}

main a:not(.btn):not(.btn-nav-kontakt):not(.btn-whatsapp):not(.btn-large):not(.btn-delivery):not(.btn-market):not(.video-play-button):not(.hero-video-play-button):not(.lightbox-prev):not(.lightbox-next):not(.lightbox-close):hover {
    color: var(--wine);
}
		
/* ============================================================
   7. MODAL (Kontaktformular-Popup)
   ============================================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-content {
    background: var(--white);
    width: 100%;
    max-width: 550px;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    padding: 50px;
    position: relative;
    animation: modalIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.8) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-light);
}
.modal-content h2 {
    color: var(--wine);
    margin-bottom: 25px;
    font-size: 2rem;
}
/* ============================================================
   Video Block (Standard)
   ============================================================ */
.block-video {
    padding: 4rem 0;
}
.video-wrapper {
    max-width: 1000px;  /* breiter */
    margin: 0 auto;
}
.video-container {
    position: relative;
    margin: 2rem 0;
}
.video-placeholder {
    position: relative;
    cursor: pointer;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
}
.video-placeholder::before {
    content: "";
    display: block;
    padding-bottom: 56.25%; /* 16:9 */
}
.video-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: 0.2s;
    z-index: 2;
}
.video-play-button:hover {
    background: var(--wine);
    transform: translate(-50%, -50%) scale(1.1);
}
.video-player {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
}
.video-player iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
}
/* Video-Button (falls vorhanden) */
.video-button {
    text-align: center;
    margin-top: 1.5rem;
}
.video-button .btn {
    background: var(--wine);
    color: white;
    padding: 12px 30px;
    border-radius: 40px;
    display: inline-block;
}

/* ============================================================
   Hero Video Block
   ============================================================ */
.block-hero-video {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.hero-video-content {
    background: rgba(255,255,255,0.9);
    padding: 50px;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.hero-video-container {
    margin: 2rem 0;
}
.hero-video-placeholder {
    position: relative;
    cursor: pointer;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
}
.hero-video-placeholder::before {
    content: "";
    display: block;
    padding-bottom: 56.25%;
}
.hero-video-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: 0.2s;
    z-index: 2;
}
.hero-video-play-button:hover {
    background: var(--wine);
    transform: translate(-50%, -50%) scale(1.1);
}
.hero-video-player {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
}
.hero-video-player iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
}
.hero-video-text {
    margin: 1.5rem 0;
}
.hero-video-button .btn {
    background: var(--wine);
    color: white;
    padding: 12px 30px;
    border-radius: 40px;
    display: inline-block;
}
		
/* Video Block (Standard) - größer */
.block-video .video-wrapper {
    max-width: 750px;
    margin: 0 auto;
}
.block-video .video-placeholder::before,
.block-video .hero-video-placeholder::before {
    padding-bottom: 56.25%; /* 16:9 */
}
.block-video .video-container {
    margin: 2rem 0;
}
/* Hero Video Block - größer */
.block-hero-video .hero-video-container {
    max-width: 1000px;
    margin: 2rem auto;
}		
		
@media (max-width: 768px) {
    .hero-video-content {
        padding: 30px;
    }
    .video-play-button, .hero-video-play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
/* ============================================================
   8. FOOTER
   ============================================================ */
.footer {
    background: var(--wine);
    color: rgba(255,255,255,0.9);
    padding: 60px 0 30px;
    margin-top: 60px;
}
.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}
.footer h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}
.footer p, .footer address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 15px;
}
.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.footer-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--gold);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}
.footer-bottom a {
    color: inherit;
    text-decoration: underline;
}
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .contact-item {
        justify-content: center;
    }
    .footer-links a:hover {
        padding-left: 0;
    }
}

/* ============================================================
   9. RESPONSIVE NAVIGATION (Hamburger)
   ============================================================ */
.hamburger {
    display: flex;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
.hamburger span {
    width: 28px;
    height: 3px;
    background: #333;
    border-radius: 2px;
}
@media (min-width: 1025px) {
    .hamburger {
        display: none;
    }
}
@media (max-width: 1024px) {
    .main-nav .container {
        padding: 10px 20px;
        position: relative;
    }
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        border-top: 1px solid var(--cream);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    .nav-list.open {
        display: flex;
    }
    .nav-list li {
        width: 100%;
    }
    .nav-list li a {
        padding: 15px 20px;
        text-align: center;
    }
    .nav-kontakt {
        margin-left: auto;
        order: 2;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .hero-content-inner {
        padding: 30px 40px;
        margin: 20px;
    }
    .block-hero h1 {
        font-size: 2rem;
    }
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .contact-item {
        justify-content: center;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .block-table {
        overflow-x: auto;
    }
}
section[class^="block-"] h2 {
    margin-bottom: 2rem;
}

/* ============================================================
   10. ADMIN-ÜBERLAPPENDE MODALS (Cropper, Link-Picker)
   ============================================================ */
.cropper-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}
.cropper-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
    padding: 20px;
}
.link-picker-modal, .text-popup-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10001;
    justify-content: center;
    align-items: center;
}
.link-picker-content, .text-popup-content {
    background: white;
    border-radius: 12px;
    padding: 20px;
    width: 500px;
    max-width: 90%;
}
.text-popup-content {
    width: 800px;
    max-height: 80vh;
    overflow: auto;
}
		
		
		/* ============================================================
   SCROLL-ANIMATIONEN
   ============================================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Optional: Unterschiedliche Verzögerungen für Kinder, falls gewünscht */
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }