/* ==========================================================
   Weingut Franz Dahm - Stylesheet
   Mobile First | Responsive
   ========================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #f5ede1;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* ---------- Variables via :root ---------- */
:root {
    --color-sand: #c4a574;
    --color-sand-dark: #b89963;
    --color-cream: #f5ede1;
    --color-cream-light: #faf4ea;
    --color-brown: #3e2a1f;
    --color-brown-light: #5a4030;
    --color-green: #6b8e3d;
    --color-green-dark: #5a7a2f;
    --color-dark: #2c2c2c;
    --color-gray: #6d6d6d;
    --color-white: #ffffff;
    --header-height: 130px;
    --container-max: 1200px;
    --header-max: 1400px;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Header ---------- */
.site-header {
    background: var(--color-sand);
    position: relative;
    z-index: 200;
    padding: 0;
}

.header-inner {
    max-width: var(--header-max);
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
}

.logo-link {
    display: inline-block;
    align-self: flex-start;
}

.logo-img {
    height: 45px;
    width: auto;
    opacity: 0.95;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    position: relative;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    position: absolute;
    top: -55px;
    right: 0;
}

.lang-flag {
    display: inline-block;
    width: 22px;
    height: 15px;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lang-flag:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.lang-flag.active {
    opacity: 1;
}

.lang-flag .fi {
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    background-position: center;
    border-radius: 1px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

/* Nav Toggle (mobile) */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    position: absolute;
    top: -5px;
    right: 0;
    z-index: 110;
}

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

/* Burger -> X im geöffneten Zustand */
.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

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

/* Mobile Header Layout (bis 991px): Flaggen oben rechts, Logo + Burger darunter */
@media (max-width: 991px) {
    .header-inner {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "lang lang"
            "logo menu";
        column-gap: 15px;
        row-gap: 6px;
        align-items: center;
        padding: 10px 20px 12px;
    }

    .logo-link {
        grid-area: logo;
        align-self: center;
        min-width: 0;
    }

    .logo-img {
        height: auto;
        max-height: 45px;
        max-width: 100%;
    }

    .header-right {
        display: contents;
    }

    .language-switcher {
        grid-area: lang;
        position: static;
        top: auto;
        right: auto;
        justify-self: end;
        align-self: start;
        justify-content: flex-end;
        gap: 8px;
        margin: 0;
    }

    .nav-toggle {
        grid-area: menu;
        position: static;
        top: auto;
        right: auto;
        align-self: center;
        justify-self: end;
    }
}

/* Main Nav - Offcanvas Mobile */
.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-sand-dark);
    padding: 70px 30px 30px;
    transition: right 0.4s ease;
    z-index: 105;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
}

.main-nav.open {
    right: 0;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-link {
    display: block;
    padding: 12px 0;
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: padding-left 0.3s ease, color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    padding-left: 8px;
    color: var(--color-cream-light);
}

/* Overlay when nav open - liegt unter dem Header-Stack (z:200), damit die Offcanvas-Nav anklickbar bleibt */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 150;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    height: 60vh;
    min-height: 380px;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding-bottom: 9vh;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-image: url('../images/yamahaWFD_schug_2000px-7065.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--color-white);
    padding: 0 20px;
    max-width: 900px;
}

.hero-small {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: none;
    margin-bottom: 10px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.45);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 40px;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.8px;
    border-radius: 50px;
    text-transform: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-white {
    background: var(--color-white);
    color: var(--color-dark);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    background: var(--color-sand);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-gold {
    background: var(--color-sand);
    color: var(--color-white);
    padding: 14px 35px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.btn-gold:hover {
    background: var(--color-sand-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.18);
}

/* ---------- Welcome Section ---------- */
.welcome-section {
    background: var(--color-cream);
    padding: 70px 0 50px;
}

.big-logo {
    text-align: center;
    margin-bottom: 50px;
}

.big-logo-img {
    max-width: 550px;
    width: 90%;
    margin: 0 auto;
    opacity: 0.85;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.welcome-card {
    background: var(--color-cream-light);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-text {
    padding: 40px 30px;
    text-align: center;
    min-height: 260px;
    flex-direction: column;
}

.welcome-heading {
    font-family: 'Roboto', sans-serif;
    color: var(--color-green);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.heading-divider {
    width: 60px;
    height: 1px;
    background: var(--color-green);
    margin: 0 auto 25px;
}

.welcome-intro {
    color: var(--color-green);
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.welcome-text {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.card-image {
    padding: 0;
    min-height: 260px;
    background: #fff;
}

.welcome-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- Wine Slider Section ---------- */
.wine-slider-section {
    background: var(--color-white);
    padding: 70px 0 60px;
    text-align: center;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 40px;
    line-height: 1.3;
}

.slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.slider-viewport {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.45, 0, 0.15, 1);
    will-change: transform;
}

.slide {
    flex: 0 0 100%;
    padding: 10px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 380px;
}

.slide img {
    max-height: 360px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s ease;
}

.slide img:hover {
    transform: translateY(-5px);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(196, 165, 116, 0.15);
    color: var(--color-sand);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background 0.3s ease, color 0.3s ease;
    font-size: 1rem;
}

.slider-arrow:hover {
    background: var(--color-sand);
    color: var(--color-white);
}

.slider-prev { left: 0; }
.slider-next { right: 0; }

.slider-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 30px 0 25px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d9d2c4;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: var(--color-sand);
    transform: scale(1.15);
}

.slider-cta {
    margin-top: 10px;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--color-brown);
    color: #e8dbc8;
    padding: 50px 0 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 30px;
}

.footer-col {
    text-align: center;
}

.footer-heading {
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.footer-address {
    font-style: normal;
    line-height: 1.8;
    color: #d9ccb8;
}

.footer-address a {
    color: #d9ccb8;
}

.footer-address a:hover {
    color: var(--color-white);
}

.ecovin-logo {
    max-width: 130px;
    margin: 0 auto 15px;
    filter: brightness(1.05);
}

.oeko-number {
    text-align: center;
    color: #d9ccb8;
    font-size: 0.85rem;
    margin-top: 10px;
}

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

.footer-links a {
    color: #d9ccb8;
}

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

.agency-branding {
    color: #b8a68a;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 10px;
}

.agency-branding a {
    color: #b8a68a;
}

.agency-branding a:hover {
    color: var(--color-white);
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(62, 42, 31, 0.97);
    color: #e8dbc8;
    padding: 18px 20px;
    z-index: 500;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    display: none;
}

.cookie-banner.visible {
    transform: translateY(0);
    display: block;
}

.cookie-banner.dismissed {
    display: none;
    pointer-events: none;
}

.cookie-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.cookie-text {
    font-size: 0.85rem;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--color-sand);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-accept,
.cookie-decline {
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 0.85rem;
    transition: background 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
}

.cookie-accept {
    background: var(--color-sand);
    color: var(--color-white);
}

.cookie-accept:hover {
    background: var(--color-sand-dark);
}

.cookie-decline {
    background: transparent;
    color: #e8dbc8;
    border: 1px solid #e8dbc8;
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

/* ==========================================================
   PAGE COMPONENTS - Shared across subpages
   ========================================================== */

.page-wrap {
    background: var(--color-cream);
    padding: 50px 0 70px;
}

/* Intro Box (rounded cream) */
.intro-box {
    background: #efe6d7;
    border-radius: 6px;
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 45px 30px 40px;
    text-align: center;
}

.intro-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--color-green);
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 18px;
}

.intro-subtitle {
    color: #6b6b6b;
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0 auto 25px;
    line-height: 1.55;
}

.intro-divider {
    display: block;
    width: 240px;
    max-width: 80%;
    height: 1px;
    background: var(--color-green);
    margin: 0 auto;
    position: relative;
}

.intro-divider::after {
    content: '';
    display: block;
    width: 70%;
    height: 1px;
    background: var(--color-green);
    margin: 4px auto 0;
}

/* Page centered text block */
.page-center {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 20px 30px;
    color: #4a4a4a;
    line-height: 1.7;
    font-size: 1rem;
}

.page-center p {
    margin-bottom: 14px;
}

.glass-icon {
    display: block;
    margin: 20px auto;
    font-size: 1.8rem;
    color: var(--color-dark);
    text-align: center;
}

.download-link {
    display: block;
    text-align: center;
    color: var(--color-sand);
    font-size: 1rem;
    padding: 8px 0 30px;
    transition: color 0.3s ease;
}

.download-link:hover {
    color: var(--color-sand-dark);
    text-decoration: underline;
}

/* Features row with icons (Weine page) */
.features-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
}

.feature-col {
    text-align: center;
    padding: 0 15px;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-green);
    margin-bottom: 20px;
    display: inline-block;
}

.feature-text {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.7;
}

.feature-text p {
    margin-bottom: 12px;
}

/* Image gallery (3 equal images) */
.image-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 40px;
}

.image-gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* Full-width Banner Image (Weingut page) */
.page-banner {
    width: 100%;
    height: 40vh;
    min-height: 300px;
    max-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

#weingutBanner {
    background-image: url('../images/mosel-5991135_1280.jpg');
}

#veranstaltungenBanner {
    background-image: url('../images/vom%20Kunden/yamahaWFD_schug_2000px-5327.jpg');
    height: 25vh;
    min-height: 200px;
    background-position: center 30%;
}

.intro-title-large {
    font-size: 2.8rem;
    margin: 40px 0;
    text-align: center;
}

.weingut-slider {
    margin: 40px auto;
    max-width: 1100px;
    padding: 20px;
}

.slide-wide {
    flex: 0 0 100%;
    padding: 8px;
    align-items: stretch;
    min-height: auto;
}

.slide-wide img {
    width: 100%;
    height: 280px;
    max-height: 280px;
    object-fit: cover;
    border-radius: 3px;
    filter: none;
}

.contact-intro {
    text-align: center;
    color: #555;
    font-size: 1rem;
    padding: 20px 20px 30px;
}

.form-submit {
    clear: both;
    overflow: hidden;
}

.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.08));
}

/* Page title (simple centered, no box) */
.page-heading {
    text-align: center;
    padding: 60px 20px 30px;
    background: var(--color-cream);
}

.page-heading h1 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--color-green);
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.page-heading-divider {
    width: 230px;
    max-width: 70%;
    height: 1px;
    background: var(--color-green);
    margin: 0 auto;
}

/* Green portrait banner (Kontakt) */
.portrait-banner {
    background: #88a05c;
    padding: 25px 20px;
    margin: 50px auto;
    max-width: 1100px;
}

.portrait-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.portrait-grid img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

/* Contact two-column */
.contact-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 1100px;
    margin: 30px auto;
    background: #efe6d7;
    border-radius: 6px;
    overflow: hidden;
    padding: 30px;
}

.contact-info {
    text-align: center;
    padding: 20px 15px;
}

.contact-info img {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 25px;
    border-radius: 3px;
}

.contact-name {
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
}

.contact-info p {
    margin-bottom: 6px;
    color: #555;
    line-height: 1.6;
}

.contact-info .contact-phone,
.contact-info .contact-mail {
    margin-top: 15px;
    font-size: 1.05rem;
}

.contact-info .contact-phone i,
.contact-info .contact-mail i {
    margin-right: 8px;
}

.contact-info a {
    color: inherit;
}

.contact-info a:hover {
    color: var(--color-sand);
}

/* Contact form */
.contact-form {
    padding: 20px 15px;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d9d2c4;
    border-radius: 3px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #fff;
    color: #333;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-sand);
}

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

.captcha-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin: 20px 0 15px;
}

.captcha-label {
    font-size: 0.95rem;
    color: #333;
}

.captcha-value {
    font-size: 2rem;
    color: #333;
    font-weight: 300;
}

.btn-send {
    background: var(--color-sand);
    color: var(--color-white);
    padding: 10px 30px;
    border-radius: 3px;
    font-size: 0.9rem;
    float: right;
    transition: background 0.3s ease;
}

.btn-send:hover {
    background: var(--color-sand-dark);
}

/* Form Status (Kontaktformular Erfolgs-/Fehlermeldung) */
.form-status {
    margin: 0 0 20px;
    padding: 14px 18px;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-status-success,
.form-status-error {
    display: block !important;
}

.form-status-success {
    background: #e6efd9;
    color: #3d5b1d;
    border: 1px solid #b8cf91;
}

.form-status-error {
    background: #f8e5e5;
    color: #7a2222;
    border: 1px solid #e2a9a9;
}

/* Datenschutz-Checkbox */
.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #444;
}

.form-consent input[type="checkbox"] {
    flex: 0 0 auto;
    width: auto;
    margin: 3px 0 0;
    padding: 0;
}

.form-consent label {
    flex: 1;
    margin: 0;
    line-height: 1.5;
    cursor: pointer;
}

.form-consent a {
    color: var(--color-sand);
    text-decoration: underline;
}

/* Honeypot - für echte Nutzer unsichtbar, aber für Bots erreichbar */
.form-honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Visually hidden - barrierearm verstecken (z.B. Captcha-Label) */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Green callout box (Rebstockpatenschaften) */
.green-box {
    background: #88a05c;
    color: var(--color-white);
    padding: 30px 25px;
    max-width: 1000px;
    margin: 20px auto 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    align-items: center;
}

.green-box-text {
    color: var(--color-white);
    font-size: 0.95rem;
    line-height: 1.7;
}

.green-box-text p {
    margin-bottom: 12px;
}

.green-box-text strong {
    color: var(--color-white);
    font-weight: 700;
}

.green-box-img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    border-radius: 3px;
}

/* Event sections (Veranstaltungen) */
.event-section {
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.event-images-pair {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.event-images-pair img {
    width: 100%;
    max-width: 220px;
    height: 260px;
    object-fit: cover;
}

.event-text {
    max-width: 820px;
    margin: 20px auto;
    color: #4a4a4a;
    line-height: 1.7;
    font-size: 0.95rem;
}

.event-text p { margin-bottom: 12px; }

.portrait-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 900px;
    margin: 30px auto;
}

.portrait-strip img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.event-green-box {
    background: #88a05c;
    color: var(--color-white);
    padding: 25px 20px;
    max-width: 1100px;
    margin: 30px auto;
    text-align: center;
}

.event-green-box p {
    color: var(--color-white);
    line-height: 1.7;
    margin-bottom: 12px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
}

.event-green-box strong {
    color: var(--color-white);
}

.event-top-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 25px;
}

.event-top-images img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.event-divider-line {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 400px;
    margin: 20px auto;
}

.event-subheading {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 15px 0;
}

.event-mid-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 25px 0;
}

.event-mid-images img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.event-footer-title {
    color: var(--color-white);
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    margin: 20px 0 10px;
}

/* Simple legal page (Impressum / Datenschutz) */
.legal-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #444;
    line-height: 1.7;
    background: var(--color-cream);
}

.legal-content h1 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--color-green);
    font-size: 2.4rem;
    margin-bottom: 25px;
    text-align: center;
}

.legal-content h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--color-green);
    font-size: 1.5rem;
    margin: 30px 0 12px;
}

.legal-content p { margin-bottom: 14px; }

/* ==========================================================
   Language Landing Pages (IT / EN / NL / RU)
   ========================================================== */

.lang-header {
    background: var(--color-sand);
    padding: 25px 20px;
}

.lang-header-inner {
    max-width: var(--header-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    position: relative;
}

.lang-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--color-white);
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: 2px;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

.lang-title span {
    display: block;
}

.lang-header .language-switcher {
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 0;
}

.lang-page {
    background: var(--color-cream);
    padding: 50px 0 60px;
}

.lang-hero-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--color-green);
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    padding: 0 20px 40px;
    line-height: 1.2;
}

.lang-card {
    background: var(--color-cream-light);
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 35px 25px;
    border-radius: 2px;
}

.lang-two-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
}

.lang-col {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #444;
}

.lang-col p {
    margin-bottom: 16px;
}

.lang-col img {
    width: 100%;
    border-radius: 2px;
    margin-bottom: 20px;
}

.lang-col-bottom-img {
    margin-top: 20px;
    margin-bottom: 0;
}

.lang-section {
    background: var(--color-white);
    padding: 50px 20px 60px;
    text-align: center;
}

.lang-section h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--color-dark);
    font-weight: 400;
    font-size: 1.7rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

.lang-section p {
    max-width: 980px;
    margin: 0 auto 18px;
    line-height: 1.7;
    color: #555;
    font-size: 0.95rem;
}

.lang-section p strong,
.lang-section p.cta {
    font-weight: 600;
    color: var(--color-dark);
}

.lang-section p.cta {
    margin-top: 20px;
}

/* 404 page */
.notfound {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: var(--color-cream);
}

.notfound h1 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--color-green);
    font-size: 5rem;
    margin-bottom: 10px;
}

.notfound p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ---------- Reveal Animation ---------- */
/* Ohne JavaScript bleibt der Inhalt sichtbar.
   Erst mit body.js-enabled wird die Reveal-Animation aktiv. */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-enabled .reveal {
    opacity: 0;
    transform: translateY(30px);
}

.js-enabled .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================================================
   MEDIA QUERIES - Tablet & Desktop
   =================================================================== */

@media (min-width: 576px) {
    .hero-title { font-size: 4rem; }
    .hero-small { font-size: 1.6rem; }
    .section-title { font-size: 2.4rem; }
    .slide { flex: 0 0 50%; }
}

@media (min-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    .hero-title { font-size: 5rem; letter-spacing: 3px; }
    .hero-small { font-size: 1.8rem; letter-spacing: 10px; }

    .welcome-section { padding: 100px 0 70px; }
    .big-logo-img { max-width: 700px; }

    .welcome-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .card-text,
    .card-image {
        min-height: 310px;
    }

    .section-title { font-size: 2.6rem; }

    .slide { flex: 0 0 33.333%; }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }

    .footer-col { text-align: left; }
    .footer-col-center { text-align: center; }
    .footer-col-right { text-align: right; }

    .footer-links { align-items: flex-end; }

    .cookie-inner {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    /* Pages */
    .intro-box { padding: 55px 60px 45px; }
    .intro-title { font-size: 2.8rem; }
    .features-row { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .image-gallery { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .image-gallery img { height: 300px; }

    .portrait-grid { grid-template-columns: repeat(4, 1fr); }
    .portrait-grid img { height: 200px; }

    .contact-cols { grid-template-columns: 1fr 1fr; gap: 30px; padding: 40px; }
    .contact-info { text-align: center; padding: 30px 25px; }
    .contact-form { padding: 30px 25px; }

    .page-heading h1 { font-size: 3.5rem; }

    .green-box { grid-template-columns: 1fr 1fr; padding: 40px; gap: 35px; }
    .green-box-text { padding: 10px 15px; }

    .event-top-images { grid-template-columns: repeat(3, 1fr); }
    .event-mid-images { grid-template-columns: repeat(2, 1fr); }
    .portrait-strip { grid-template-columns: repeat(4, 1fr); }
    .portrait-strip img { height: 160px; }

    /* Language pages */
    .lang-title { font-size: 1.7rem; letter-spacing: 3px; }
    .lang-hero-title { font-size: 2.8rem; padding: 20px 20px 50px; }
    .lang-card { padding: 45px 40px; }
    .lang-two-cols { grid-template-columns: 1fr 1fr; gap: 40px; }
    .lang-section h2 { font-size: 2.2rem; }
}

@media (min-width: 992px) {
    .header-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        gap: 20px;
        flex-wrap: nowrap;
    }

    .logo-link {
        padding: 22px 0;
        flex-shrink: 0;
    }

    .logo-img {
        height: 26px;
    }

    .header-right {
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
        position: static;
        flex: 1 1 auto;
        min-width: 0;
        padding-top: 18px;
    }

    .language-switcher {
        position: static;
        padding-top: 5px;
    }

    .nav-toggle {
        display: none;
    }

    .main-nav {
        position: static;
        width: 100%;
        max-width: none;
        height: auto;
        background: transparent;
        padding: 12px 0 15px;
        right: auto;
        box-shadow: none;
        overflow: visible;
    }

    .nav-list {
        flex-direction: row;
        gap: 0;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: nowrap;
    }

    .nav-list li {
        white-space: nowrap;
    }

    .nav-link {
        padding: 10px 12px;
        font-size: 0.72rem;
        border-bottom: none;
        letter-spacing: 0.6px;
        position: relative;
        white-space: nowrap;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 2px;
        width: 0;
        height: 2px;
        background: var(--color-white);
        transform: translateX(-50%);
        transition: width 0.3s ease;
    }

    .nav-link:hover {
        padding-left: 12px;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 60%;
    }

    .hero-title { font-size: 5.5rem; }

    .slide { flex: 0 0 25%; }

    .section-title { font-size: 2.8rem; }
}

@media (min-width: 1200px) {
    .hero-title { font-size: 6rem; }
    .logo-img { height: 30px; }
    .nav-link { padding: 10px 16px; font-size: 0.78rem; letter-spacing: 0.8px; }
    .nav-link:hover { padding-left: 16px; }
}

@media (min-width: 1400px) {
    .nav-link { padding: 10px 20px; font-size: 0.82rem; letter-spacing: 1px; }
    .nav-link:hover { padding-left: 20px; }
}
