:root {
    --bg-dark: #fff5ec;
    --bg-darker: #f4c19a;
    --chimaeq-blau: #103c65;
    --bg-light: #fee2d0;
    --brand: #b01010;
    --brand-dark: #7f0c0c;
    --brand-light: #ffb22e;
    --text: #3e2403;
    --text-muted: #8e6b3a;
    --text-dark: #3e2403;
    --text-muted-dark: #7a5a2a;
    --shadow: 0 24px 48px rgba(62, 36, 3, 0.25);
    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 12px;
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fee2d0;
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-md);
}

.container {
    width: min(100% - 3rem, var(--max-width));
    margin: 0 auto;
}

.site-header {
    background: var(--bg-light);
    color: var(--text-dark);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(7, 7, 7, 0.08);
    box-shadow: 0 8px 32px rgba(5, 5, 5, 0.08);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    display: block;
    height: 110px;
    width: auto;
}

.nav {
    margin-left: auto;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    font-weight: 500;
    color: var(--text-muted-dark);
    transition: color 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus {
    color: var(--brand-dark);
}

.nav-list a.is-current {
    color: var(--brand-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--text-dark);
    display: block;
}

.social-links {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(15, 20, 17, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.social-links a:hover,
.social-links a:focus {
    border-color: var(--brand);
    color: var(--brand-dark);
    background: rgba(176, 16, 16, 0.08);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-links1 {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.social-links1 a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(15, 20, 17, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.social-links1 a:hover,
.social-links1 a:focus {
    border-color: var(--brand);
    color: var(--brand-dark);
    background: rgba(176, 16, 16, 0.08);
}

.social-links1 svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero {
    padding: 6rem 0 4rem;
}

.hero-inner {
    display: grid;
    gap: 3rem;
    align-items: center;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-media {
    display: flex;
    justify-content: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 4vw + 1rem, 3.75rem);
    margin-bottom: 1.5rem;
}

.hero-text {
    color: var(--text-muted);
    max-width: 40ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #ffb22e;
    /* Button-Text */
    background-color: #b01010;
    /* Button-Hintergrund */
    width: 10rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(176, 16, 16, 0.4);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
    background: var(--brand);
    color: #ffb22e;
    box-shadow: 0 12px 24px rgba(176, 16, 16, 0.24);
}

.btn.primary:hover,
.btn.primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(176, 16, 16, 0.4);
}

.btn.ghost {
    background: transparent;
    border: 1px solid rgba(62, 36, 3, 0.3);
    color: var(--brand);
}

.btn.ghost:hover,
.btn.ghost:focus {
    border-color: rgba(176, 16, 16, 0.6);
}

.video-frame {
    position: relative;
    width: min(100%, 30rem);
    margin-inline: auto;
    padding-top: 130%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: transparent;
}

.video-frame iframe,
.video-frame video {
    position: absolute;
    top: 0;
    left: -12.5%;
    width: 125%;
    height: 100%;
    border: none;
}

.video-frame video {
    object-fit: cover;
}

.subpage main,
.menu-page main {
    padding-bottom: 4rem;
}

.extra {
    margin-bottom: -6rem;
}

.subpage-hero {
    padding: 5rem 0 3rem;
    text-align: center;
}

.subpage-hero-grid {
    text-align: left;
}

.subpage-hero .hero-text {
    margin-inline: auto;
    max-width: 680px;
}

.split-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start;
}

.page-section {
    padding: 4rem 0;
}

.section-header {
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.content-card,
.media-card {
    border-radius: var(--radius-md);
    padding: 2rem;
}

.content-card h2 {
    margin-top: 0;
}

.media-card {
    text-align: center;
}

.media-placeholder {
    width: 100%;
    height: 10rem;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    color: var(--text-muted);
    font-weight: 600;
    background: #fff5ec;
    margin-bottom: 1rem;
}

.text-link {
    color: var(--brand-light);
    font-weight: 600;
}

.news-featured-grid {
    display: grid;
    gap: 2.5rem;
    background: #fff5ec;
    border-radius: var(--radius-md);
    padding: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.story-meta {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
    color: var(--text-muted);
}

.news-grid {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.news-card {
    padding: 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(62, 36, 3, 0.08);
    background: #fff5ec;
    display: grid;
    gap: 1rem;
}

.news-card .media-placeholder {
    margin: 0;
    aspect-ratio: 16 / 9;
}

.news-tag {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    color: var(--brand-dark);
}

.download-list {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.download-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1 1 220px;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(62, 36, 3, 0.25);
    background: #ffffff;
    color: inherit;
}

.story-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stats-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    background: #fff5ec;
    border: 1px solid rgba(62, 36, 3, 0.08);
}

.stat-card strong {
    font-size: 2rem;
    display: block;
}

.timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    border-left: 2px solid rgba(176, 16, 16, 0.5);
}

.timeline li {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.timeline li::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--brand);
    background: var(--bg-light);
    position: absolute;
    left: -7px;
    top: 0.35rem;
}

.values-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.contact-form {
    display: grid;
    gap: 0.75rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(62, 36, 3, 0.25);
    background: #ffffff;
    color: inherit;
}

.contact-section .contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.form-section .split-grid {
    align-items: stretch;
}

.map-section .map iframe {
    min-height: 420px;
}

.menu-page main {
    padding-bottom: 4rem;
}

.menu-hero {
    padding: 5rem 0 3rem;
}

.menu-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.menu-hero-media {
    border-radius: var(--radius-lg);
    background: #fff5ec;
    padding: 1rem;
    box-shadow: var(--shadow);
}

.menu-hero-media img {
    border-radius: var(--radius-md);
}

.menu-hero-media figcaption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.menu-anchors {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0 0;
}

.menu-anchors a {
    padding: 0.35rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(62, 36, 3, 0.25);
    font-size: 0.9rem;
}

.menu-anchors a:hover,
.menu-anchors a:focus {
    border-color: var(--brand-light);
}

.menu-section {
    padding: 4rem 0;
}

.menu-section-header {
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.menu-section-header h2 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.6rem, 1.4vw + 1rem, 2.15rem);
}

.menu-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.menu-item-card {
    background: #fff5ec;
    border: 1px solid rgba(62, 36, 3, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
}

.menu-item-card-img img {
    border-radius: var(--radius-md);
    width: 100%;
    object-fit: cover;
    align-items: center;
    height: 30rem;
    max-height: 400px;
}

.menu-item-card img {
    border-radius: var(--radius-md);
    width: 100%;
    object-fit: cover;
}

.menu-item-media {
    position: relative;
}

.menu-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-weight: 600;
}

.menu-item-body h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: clamp(1.8rem, 1.6vw + 1rem, 2.4rem);
}

.menu-panel-ubio {
    display: flex;
    justify-content: space-between;
}

.menu-panel-ubio img {
    height: 55px;
    margin-top: 0.5rem;
}

.menu-panel h3 {
    font-size: 1.5rem;
}

.menu-note {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.menu-panel-ubio h3 {
    font-size: 1.5rem;
}

.price-tag {
    font-weight: 600;
    font-size: 1rem;
    color: var(--brand-light);
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.menu-list li {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.95rem;
}

.item-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: baseline;
}

.item-desc {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.menu-list .item-name {
    font-weight: 600;
}

.item-name-1 {
    font-weight: 600;
    font-size: 1.5rem;
}

.menu-list .item-price {
    color: var(--brand-light);
    font-weight: 600;
}

.menu-list .item-desc {
    margin: 0.3rem 0 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.menu-list.compact li {
    justify-content: flex-start;
    gap: 0.5rem;
    font-weight: 500;
}

.menu-flavors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.menu-flavor {
    border-radius: var(--radius-md);
    background: #fff5ec;
    border: 1px solid rgba(62, 36, 3, 0.1);
    padding: 1.5rem;
}

.menu-panels {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.menu-panel {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(62, 36, 3, 0.1);
    background: #fff5ec;
    padding: 1.75rem;
}

.menu-panel.highlight {
    background: linear-gradient(120deg, rgba(176, 16, 16, 0.08), rgba(255, 178, 46, 0.06));
    border-color: rgba(176, 16, 16, 0.3);
}

.menu-drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 7rem;
}

.menu-cta-box {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(62, 36, 3, 0.15);
    background: rgba(176, 16, 16, 0.05);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.advantages {
    padding: 4rem 0;
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.adv-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 226, 208, 0.9));
    border: 1px solid rgba(62, 36, 3, 0.1);
    backdrop-filter: blur(12px);
}

.adv-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.adv-card p {
    color: var(--text-muted);
}

.about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
    margin-top: 10rem;
}

.menu {
    padding: 4rem 0;
}

.menu-carousel {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;

    /* NEU: Platz für Schatten links/rechts, ohne Track/Viewport-Sizing zu zerstören */
    padding: 16px;
}

.menu-viewport {
    overflow-x: hidden;
    /* Carousel bleibt sauber */
    overflow-y: visible;
    /* Schatten / Lift wird nicht abgeschnitten */
    padding: 16px;
    /* Platz für Shadow/Lift oben & unten */
    border-radius: var(--radius-lg);
}

/* bleibt wie bei dir – KEIN 3D / kein perspective, damit nichts "größer" wirkt */
.menu-track {
    --items-per-view: 1;
    display: flex;
    gap: 1.5rem;
    transition: transform 0.35s ease;
    will-change: transform;
}

.menu-card {
    flex: 0 0 calc((100% - (var(--items-per-view) - 1) * 1.5rem) / var(--items-per-view));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 226, 208, 0.8));
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;

    /* 3D-Look OHNE Größenänderung */
    position: relative;
    transform: translateY(0) rotateX(0.8deg) rotateY(-0.8deg);
    transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

/* Lichtkante (wirkt wie "nach vorne") */
.menu-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(140deg,
            rgba(255, 255, 255, 0.55),
            rgba(255, 255, 255, 0.08) 45%,
            rgba(0, 0, 0, 0.05));
    opacity: 0.55;
    transition: opacity 220ms ease;
}

.menu-card:hover {
    transform: translateY(-8px) rotateX(0deg) rotateY(0deg);
    box-shadow:
        0 18px 40px rgba(62, 36, 3, 0.22),
        0 6px 16px rgba(62, 36, 3, 0.14);
    filter: saturate(1.02);
}

.menu-card:hover::before {
    opacity: 0.75;
}

.menu-card:focus-within {
    transform: translateY(-6px) rotateX(0deg) rotateY(0deg);
    box-shadow:
        0 16px 36px rgba(62, 36, 3, 0.20),
        0 6px 14px rgba(62, 36, 3, 0.12);
}

.menu-card img {
    border-radius: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 220ms ease;
}

.menu-card:hover img {
    transform: scale(1.015);
}

.menu-card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-card-content h3 {
    font-size: 1.5rem;
    font-family: Playfair Display;
}

.menu-card .meta {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    color: var(--chimaeq-blau);
}

.menu-card .price {
    font-weight: 700;
    font-size: 1.25rem;
}

.menu-actions {
    display: flex;
    gap: 1rem;
}

.carousel-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(62, 36, 3, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.carousel-btn:hover,
.carousel-btn:focus {
    transform: translateY(-2px);
    border-color: rgba(62, 36, 3, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

@media(max-width: 500px) {
    .carousel-btn {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        border: 1px solid rgba(62, 36, 3, 0.18);
        background: rgba(255, 255, 255, 0.06);
        color: var(--text);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        margin: -10px;
    }

    .carousel-btn:hover,
    .carousel-btn:focus {
        transform: translateY(-2px);
        border-color: rgba(62, 36, 3, 0.3);
        background: rgba(255, 255, 255, 0.1);
    }

    .carousel-btn:disabled {
        opacity: 0.4;
        cursor: not-allowed;
        transform: none;
    }

    .menu-viewport {
        overflow-x: hidden;
        /* Carousel bleibt sauber */
        overflow-y: visible;
        /* Schatten / Lift wird nicht abgeschnitten */
        padding: 5px;
        /* Platz für Shadow/Lift oben & unten */
    }
}



.testimonials {
    padding: 4rem 0;
}

.testimonial-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial-card {
    background: #fff5ec;
    border: 1px solid rgba(62, 36, 3, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card blockquote {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-card figcaption {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card figcaption img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.offers {
    padding: 4rem 0;
}

.offers-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
    background: linear-gradient(120deg, rgba(176, 16, 16, 0.08), rgba(255, 178, 46, 0.06));
    border: 1px solid rgba(176, 16, 16, 0.24);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.how-it-works {
    padding: 4rem 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step {
    background: #fff5ec;
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid rgba(62, 36, 3, 0.1);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand);
    color: #ffb22e;
    font-weight: 700;
    margin-bottom: 1rem;
}

.location {
    padding: 4rem 0 6rem;
}

.map iframe {
    width: 100%;
    min-height: 320px;
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-grid {
    margin-top: 2.5rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(62, 36, 3, 0.1);
    background: #fff5ec;
}

.contact-card a {
    color: var(--brand);
}

.site-footer {
    padding: 3rem 0 2rem;
    background: #f6cfb8;
    color: var(--text-dark);
    border-top: 1px solid rgba(62, 36, 3, 0.15);
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    align-items: start;
}

.footer-grid h3 {
    margin-top: 0;
}

.footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.footer-grid a {
    color: var(--text-muted-dark);
}

.footer-grid p {
    font-size: 0.7rem;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

@media(max-width: 768px) {
    .site-footer {
        padding-bottom: 5rem;
    }
}

.modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
}

.modal[hidden] {
    display: none;
}

.modal-content {
    background: var(--bg-dark);
    color: var(--text);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    max-width: 480px;
    width: 100%;
    border: 1px solid rgba(62, 36, 3, 0.2);
    box-shadow: var(--shadow);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 2rem;
    cursor: pointer;
}

.modal a {
    margin-top: 1rem;
    margin-bottom: 2rem;
    width: 100%;
}

@media (max-width: 960px) {
    .site-header .container {
        padding-inline: 0.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        inset: 72px 1.5rem auto;
        background: var(--bg-light);
        color: var(--text-dark);
        padding: 1.5rem;
        border-radius: var(--radius-md);
        flex-direction: column;
        gap: 1rem;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.2s ease;
        box-shadow: 0 20px 40px rgba(5, 5, 5, 0.25);
    }

    .nav-list.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .social-links {
        display: none;
    }

    .hero {
        padding-top: 4rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .menu-hero-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(100% - 2rem, var(--max-width));
    }

    .site-header .container {
        padding: 1rem 0;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .menu-card-content {
        padding: 1.75rem;
    }

    .offers-inner {
        padding: 2rem;
    }

    .modal-content {
        padding: 2rem;
    }

    .menu-cta-box {
        padding: 1.75rem;
    }
}

@media (min-width: 900px) {
    .menu-track {
        --items-per-view: 2;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Trigger-Link wie ein Button (optional) */
.mobile-only {
    display: none;
}

.popup-link {
    display: inline-block;
    color: var(--brand-light);
    text-decoration: none;
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Overlay-Hintergrund */
.popup-overlay {
    display: none;
    /* am Anfang versteckt */
    position: fixed;
    inset: 0;
    background: rgba(11, 10, 10, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-overlay.is-visible {
    display: flex;
}

/* Popup-Box */
/*.popup-content {
  background: #fff5ec;
  padding: 20px 24px;
  border-radius: 8px;
  max-width: 8000px;
  width: 90%;
  max-height: 8000px;
  height: 80%;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  position: relative;
  box-shadow: 0 4px 15px rgba(62, 36, 3, 0.25);
  max-height: 70vh;
}*/

.popup-content {
    background: #fff5ec;
    padding: 20px 24px;
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    /* statt 8000px / 80% */
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    position: relative;
    box-shadow: 0 4px 15px rgba(62, 36, 3, 0.25);
}

.popup-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 22px;
    cursor: pointer;
}

/* Layout: Text + Bild */
.popup-body {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Desktop: Text links, Bild rechts */
.popup-text {
    flex: 1;
    order: 1;
    padding-right: 1rem;
    text-align: justify;
}

.popup-image {
    order: 2;
    width: 340px;
    /* Zielbreite rechts */
    max-width: 40%;
    margin-top: 3rem;
}

.popup-video {
    width: 100%;
    height: 530px;
    /* feste Höhe = “vorgefertigte Form” */
    display: block;

    object-fit: cover;
    /* cover = Frame voll, contain = alles sichtbar */
    border-radius: 16px;
    overflow: hidden;
    /* hilft in manchen Browsern nicht alleine, daher auch Wrapper */
}

.popup-image img {
    max-width: 400px;
    min-width: 200px;
    height: auto;
    display: block;
}

/* Responsiv: untereinander auf kleinen Screens – Bild zuerst */
@media (max-width: 768px) {
    .popup-body {
        flex-direction: column;
    }

    .popup-body h2 {
        margin-bottom: -1rem;
    }

    .popup-image {
        order: 1;
        /* Mobil: Bild zuerst */
        width: 100%;
        max-width: 100%;
    }

    .popup-video {
        height: 220px;
        /* kleiner fürs Handy */
    }

    .popup-text {
        order: 2;
        /* Mobil: Text danach */
    }

    .popup-image img {
        max-width: 800px;
        width: 300px;
        max-height: auto;
    }

    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .popup-content {
        background: #fff5ec;
        padding: 20px 24px;
        border-radius: 8px;
        max-width: 800px;
        width: 90%;
        max-height: 80vh;
        /* statt 8000px / 80% */
        font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        box-shadow: 0 4px 15px rgba(62, 36, 3, 0.25);
        overflow: hidden;
        overflow-y: scroll;
    }
}

@media (min-width: 900px) {

    .popup-image {
        margin-right: 5rem;
    }

    .popup-body {
        margin-top: 2rem;
    }

    .popup-text {
        margin-left: 2rem;
        padding: 2rem;
    }
}

@media (min-width: 780px) {
    .popup-text {
        flex: 1;
        order: 1;
        max-height: 60vh;
        overflow: hidden;
        overflow-y: scroll;
        padding-right: 1.5rem;
        margin: 2rem;
    }

    .popup-image img {
        max-width: 800px;
        width: 300px;
        max-height: auto;
        margin-top: 5rem;
    }
}



/* Vollbild-Overlay */
.pop-up {
    position: fixed;
    inset: 0;
    /* top:0; right:0; bottom:0; left:0 */
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 1000;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
}

/* Sichtbar, wenn geöffnet */
.pop-up.is-visible {
    opacity: 1;
    visibility: visible;
}

/* Fallback, wenn hidden-Attribut gesetzt ist */
.pop-up[hidden] {
    display: none;
}

/* Inhalt des Pop-Ups */
.pop-up .modal-content {
    background: #ffffff;
    border-radius: 1rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    position: relative;
}

/* Close-Button */
.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: none;
    background: transparent;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

/* Fokus-Style */
.popup-close:focus-visible,
.btn.ghost:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* Typografie im Pop-Up */
.pop-up .modal-content h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.pop-up .modal-content p {
    margin-bottom: 0.75rem;
}

.pop-up .modal-content ul {
    padding-left: 1.25rem;
    margin: 0;
}



/* Schlagwöter Auf der Homepage */
.contact-schlagworte {
    justify-content: center;
}


/* Home unter About section Videoanpassung */

.home-about-frame {
    width: 100%;
    height: 400px;
    background: var(--bg-light);

    border-radius: 24px;
    /* <- hier */
    overflow: hidden;
    /* <- wichtig */
}

.home-about-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    /* <- verhindert kleine Ränder/Spalten */
}


.home-about-frame {
    width: 100%;
    height: 400px;

    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-light);
    /* TEST: damit man’s sicher sieht */
    position: relative;
    /* wichtig, falls video/childs absolut sind */
}

.home-about-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* oder cover */
    display: block;
}


/* About Seite Video */
.about-video-frame {
    margin-top: 3rem;
    width: 100%;
    height: 800px;
    background: var(--bg-light);

    border-radius: 24px;
    /* <- hier */
    overflow: hidden;
    /* <- wichtig */
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    /* <- verhindert kleine Ränder/Spalten */
}


/* Aboutseite drei spaltensection */

.feature-section {
    margin-top: 3rem;
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
}

.feature-item img {
    width: 100%;
    max-width: 260px;
    /* Hochkant-Look */
    aspect-ratio: 3 / 4;
    /* Hochformat */
    object-fit: cover;
    border-radius: 16px;
    margin: 0 auto 1.25rem;
    display: block;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 1.1rem;
}

.feature-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}




/* Become a Franchise Partner Seite */

.franchise-hero {
    width: 100vw;
    height: 80vh;
    background-image: url("bilder/franchaise-hero.jpeg");
    background-size: cover;
    background-position: center;
}

.franchise-hero h1 {
    color: #fff;
    text-align: center;
    font-weight: 200;
    padding-top: 10vh;
    font-size: 8rem;
    font-family: Playfair Display;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 5.5vh;

    padding: 10px 22px 10px 12px;
    border-radius: 999px;

    background: #6c0000;
    color: #fff;
    text-decoration: none;

    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;

    box-shadow: 0 6px 18px rgba(176, 16, 16, 0.35);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    margin-left: 5rem;
    margin-top: 12vh;
}

/* Weißer, abgerundeter Icon-Hintergrund */
.download-btn__icon {
    width: 6rem;
    height: 5.5vh;
    border-radius: 999px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 5rem;
    margin-left: -2rem;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(176, 16, 16, 0.45);
    filter: brightness(1.05);
}

.download-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(176, 16, 16, 0.30);
}

.download-btn:focus-visible {
    outline: 3px solid rgba(255, 110, 190, 0.6);
    outline-offset: 3px;
}

.mobile-absatz {
    display: none;
}

/* Franchise Partner Mobile */

@media (max-width: 768px) {

  .franchise-hero {
    height: 70vh;
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .franchise-hero h1 {
    font-size: 1.9rem;
    padding-top: 6vh;
    line-height: 1.15;
    text-align: center;
  }

  /* Button zentrieren */
  .franchise-hero > div:last-child {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .download-btn {
    margin: 0;                 /* entfernt margin-left */
    height: 42px;
    width: 220px;
    margin-top: 20vh;
    font-size: 1rem;
  }

  /* Icon verkleinern */
  .download-btn__icon {
    width: 42px;
    height: 42px;
    flex: 0 0 50px;
    margin-left: -12px;
  }

  .download-btn svg {
    width: 18px;
    height: 18px;
  }

  .mobile-absatz {
    display: block;
  }
}


/* Become a Franchise Partner animationssection */

.animation h1 {
	font-size: 5.25vmin;
	text-align: center;
	color: black;
    margin-left: 5rem;
}
.animation p {
	font-size: max(10pt, 2.5vmin);
	line-height: 1.4;
	color: #0e390e;
	margin-bottom: 1.5rem;
}

.wrap {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	width: 100vw;
	height: 60vh;
	margin: 2rem auto;
	transition: 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
}
.overlay {
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	padding: 1rem 0.75rem;
	background: var(--bg-light);
	transition: 0.4s ease-in-out;
	z-index: 1;
}
.overlay-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 15vw;
	height: 100%;
	padding: 0.5rem 0 0 0.5rem;
	z-index: 1;
}
.image-content {
	position: absolute;
	top: 0;
	right: 0;
	width: 70vw;
	height: 100%;
	background-image: url(bilder/franchise-animation-1.jpeg);
	background-size: cover;
	transition: 0.3s ease-in-out;
	/* border: 1px solid green; */
    background-position: 10% 10%;
}

.image-content1 {
	position: absolute;
	top: 0;
	right: 0;
	width: 70vw;
	height: 100%;
	background-image: url(bilder/franchise-animation-1.jpeg);
	background-size: cover;
	transition: 0.3s ease-in-out;
	/* border: 1px solid green; */
}

.image-content2 {
	position: absolute;
	top: 0;
	right: 0;
	width: 70vw;
	height: 100%;
	background-image: url(bilder/franchise-animation-1.jpeg);
	background-size: cover;
	transition: 0.3s ease-in-out;
	/* border: 1px solid green; */
    background-position: 90% 70%;
}

.inset {
	max-width: 50%;
	margin: 0.25em 1em 1em 0;
	border-radius: 0.25em;
	float: left;
}

.dots {
	position: absolute;
	bottom: 1rem;
	right: 2rem;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	width: 70px;
	height: 4vmin;
	transition: 0.3s ease-in-out 0.3s;
}
.dot {
	width: 1rem;
	height: 1rem;
	background: yellow;
	border: 1px solid indigo;
	border-radius: 50%;
	transition: 0.3s ease-in-out 0.3s;
}

.text {
	display: grid;
	position: absolute;
	top: 0;
	right: 0;
	width: 60vmin;
	height: 100%;
	padding: 3vmin 4vmin;
	background: #fff;
	box-shadow: inset 1px 1px 15px 0 rgba(0 0 0 / 0.4);
	overflow-y: scroll;
}

.text h3 {
    margin-bottom: -1rem;
}

.text p {
    margin-bottom: -0.5rem;
}

.tree {
	place-self: center;
	width: calc(50px + 2vw);
}

.wrap:hover .overlay {
	transform: translateX(-60vmin);
}
.wrap:hover .image-content {
	width: 50vmin;
}
.wrap:hover .image-content1 {
	width: 50vmin;
}
.wrap:hover .image-content2 {
	width: 50vmin;
}
.wrap:hover .overlay-content {
	border: none;
	transition-delay: 0.2s;
	transform: translateX(60vmin);
}
.wrap:hover .dots {
	transform: translateX(1rem);
}
.wrap:hover .dots .dot {
	background: white;
}

/* Animations and timing delays */
.animate {
	animation-duration: 0.7s;
	animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
	animation-fill-mode: backwards;
}
/* Pop In */
.pop {
	animation-name: pop;
}
@keyframes pop {
	0% {
		opacity: 0;
		transform: scale(0.5, 0.5);
	}
	100% {
		opacity: 1;
		transform: scale(1, 1);
	}
}

/* Slide In */
.slide {
	animation-name: slide;
}
@keyframes slide {
	0% {
		opacity: 0;
		transform: translate(4em, 0);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}

/* Slide Left */
.slide-left {
	animation-name: slide-left;
}
@keyframes slide-left {
	0% {
		opacity: 0;
		transform: translate(-40px, 0);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}

.slide-up {
	animation-name: slide-up;
}
@keyframes slide-up {
	0% {
		opacity: 0;
		transform: translateY(3em);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.delay-1 {
	animation-delay: 0.3s;
}
.delay-2 {
	animation-delay: 0.6s;
}
.delay-3 {
	animation-delay: 0.9s;
}
.delay-4 {
	animation-delay: 1.2s;
}
.delay-5 {
	animation-delay: 1.5s;
}
.delay-6 {
	animation-delay: 1.8s;
}
.delay-7 {
	animation-delay: 2.1s;
}
.delay-8 {
	animation-delay: 2.4s;
}

.vertical-text {
  writing-mode: vertical-rl;     /* Vertikaler Text */
  text-orientation: mixed;
  transform: rotate(180deg);     /* Damit es von unten nach oben lesbar ist */
}

/* Gespiegelte Animation */

.animation--mirrored h1 {
    margin-left: 0; /* zentriert */
    margin-right: 5rem;
}


.animation.animation--mirrored .overlay {
  flex-direction: row-reverse; /* swap left/right layout inside overlay */
}

/* Move the image to the LEFT side instead of right */
.animation.animation--mirrored .image-content1 {
  left: 0;
  right: auto;
}

/* Move the text panel to the LEFT side instead of right */
.animation.animation--mirrored .text {
  left: 0;
  right: auto;
}

/* Move the dots to the LEFT side */
.animation.animation--mirrored .dots {
  left: 2rem;
  right: auto;
}

/* Reverse hover animation directions */
.animation.animation--mirrored .wrap:hover .overlay {
  transform: translateX(60vmin); /* was -60vmin */
}

.animation.animation--mirrored .wrap:hover .overlay-content {
  transform: translateX(-60vmin); /* was +60vmin */
}

.animation.animation--mirrored .wrap:hover .dots {
  transform: translateX(-1rem); /* was +1rem */
}

@media (max-width: 700px) {
    .animation--mirrored h1 {
        margin-right: 0;
    }

    .animation h1 {
        margin-left: 0;
    }

    .text {
        gap: 0.8rem;
    }

    .about-video-frame {
        margin-top: -1rem;
        margin-bottom: -2rem;
        height: 200px;
    }
}
