/* ==================== LOKALE FONTS ==================== */
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/cormorant-garamond-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/cormorant-garamond-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/cormorant-garamond-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/cormorant-garamond-600italic.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/cormorant-garamond-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lato';
    src: url('fonts/lato-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lato';
    src: url('fonts/lato-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lato';
    src: url('fonts/lato-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --black: #0a0a0a;
    --dark-grey: #1a1a1a;
    --red: #c41e3a;
    --red-hover: #9e1830;
    --white: #ffffff;
    --light-grey: #f4f4f4;
    --text-grey: #666;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-main: 'Lato', sans-serif;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-main);
    color: var(--dark-grey);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }

a { text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section-label {
    display: block;
    font-family: var(--font-main);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--red);
    margin-bottom: 12px;
}

/* ==================== BUTTONS ==================== */
.btn-primary, .btn-gold-glow, .btn-header-cta {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 15px 35px;
    font-family: var(--font-main);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-primary:hover, .btn-header-cta:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-gold-glow {
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(196,30,58,0.35);
}

.btn-gold-glow:hover {
    box-shadow: 0 0 30px rgba(196,30,58,0.65);
    transform: scale(1.05);
}

/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    width: 100%;
    background: var(--black);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    transition: bottom 0.5s ease;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cookie-banner.show { bottom: 0; }

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-buttons { display: flex; gap: 10px; }

.cookie-buttons button {
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    border: none;
    font-family: var(--font-main);
}

#cookie-accept { background: var(--red); color: var(--white); }
#cookie-decline { background: transparent; border: 1px solid var(--white); color: var(--white); }

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

.navbar.scrolled {
    background: rgba(0,0,0,0.96);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar.solid-bg { background: var(--black); padding: 10px 0; }

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 20px;
}

.logo-img {
    height: 70px;
    transition: transform 0.6s ease;
    filter: brightness(0) invert(1);
}
.logo:hover .logo-img { transform: rotate(180deg); }

.nav-menu {
    display: flex;
    gap: 30px;
    flex-grow: 1;
    justify-content: center;
}

.nav-right-wrapper { display: flex; align-items: center; gap: 30px; flex-shrink: 0; }

.nav-link {
    color: var(--white);
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s;
}

.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--red); }

.btn-header-cta { padding: 10px 22px; font-size: 0.8rem; }

.btn-gift-nav {
    color: var(--white);
    font-family: var(--font-main);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.35);
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-gift-nav:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.hamburger { display: none; }

/* ==================== HERO ==================== */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('media/hero.alvolo.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.62);
    z-index: 1;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero-title .word {
    display: inline-block;
    animation: fadeInDown 1s ease forwards;
    opacity: 0;
}

.hero-title .word.accent {
    color: var(--red);
    font-style: italic;
    animation-delay: 0.3s;
}

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

.hero-subtitle {
    font-family: var(--font-main);
    font-size: 0.95rem;
    letter-spacing: 4px;
    margin-bottom: 30px;
    color: #ccc;
    text-transform: uppercase;
}

.hero-divider { width: 60px; height: 3px; background: var(--red); margin: 20px auto; }

.hero-description {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 50px;
    color: #eee;
}

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

.btn-hero-primary {
    background: var(--red);
    color: var(--white);
    padding: 18px 40px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid var(--red);
    transition: 0.3s;
}

.btn-hero-primary:hover { background: transparent; color: var(--red); }

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    padding: 18px 40px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid var(--white);
    transition: 0.3s;
}

.btn-hero-secondary:hover { background: var(--white); color: var(--black); }

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse { width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.6); border-radius: 20px; }

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    margin: 5px auto;
    animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(15px); }
}

/* ==================== FLOATING HOURS ==================== */
.floating-hours {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--black);
    color: var(--white);
    padding: 15px;
    border-radius: 10px 0 0 10px;
    z-index: 900;
    display: flex;
    align-items: start;
    gap: 10px;
    box-shadow: -5px 5px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s;
    cursor: default;
    border-left: 3px solid var(--red);
}

.floating-hours:hover { transform: translateY(-50%) translateX(-5px); }

.hours-icon { font-size: 1.5rem; }
.hours-title { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--red); margin-bottom: 5px; }
.hours-text { font-size: 0.85rem; line-height: 1.6; }

.sticky-socials {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #333;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.sticky-socials a { color: var(--white); font-size: 1.2rem; transition: color 0.3s; }
.sticky-socials a:hover { color: var(--red); }

/* ==================== KONZEPT ==================== */
.konzept { padding: 100px 0; background: var(--light-grey); }

.center-title-wrapper { text-align: center; margin-bottom: 60px; }

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 15px;
    display: inline-block;
}

.section-subtitle { color: var(--text-grey); font-size: 1.05rem; font-family: var(--font-main); }

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--red);
    margin: 10px auto 0;
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    perspective: 1000px;
}

.concept-card {
    background: var(--white);
    padding: 50px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.1s;
    border-bottom: 4px solid transparent;
}

.concept-card:hover { border-bottom-color: var(--red); }

.concept-icon { font-size: 3rem; margin-bottom: 20px; }
.concept-card h3 { font-family: var(--font-display); font-size: 2.2rem; margin-bottom: 5px; }

.card-sub {
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-family: var(--font-main);
    display: block;
}

.concept-detail { color: var(--text-grey); margin-bottom: 30px; }
.concept-link { color: var(--black); font-weight: 700; border-bottom: 2px solid var(--red); font-family: var(--font-main); font-size: 0.9rem; }

/* ==================== VIDEOS SECTION ==================== */
.events-section { padding: 100px 0; background: var(--white); }
.events-wrapper { display: flex; gap: 60px; align-items: center; }
.events-image-col { flex: 1; position: relative; }

.video-grid-wrapper { height: 500px; border-radius: 10px; box-shadow: var(--shadow); overflow: hidden; }

.event-video-container { display: flex; width: 100%; height: 100%; gap: 5px; }

.event-video {
    flex: 1;
    height: 100%;
    object-fit: cover;
    width: 0;
    transition: flex 0.4s ease;
    filter: brightness(0.88);
}

.event-video:hover { flex: 2; filter: brightness(1); }

.event-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    background: var(--red);
    color: var(--white);
    padding: 10px 20px;
    font-family: var(--font-main);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 10;
}

.events-text-col { flex: 1; }
.align-left { text-align: left; }
.align-left::after { margin: 10px 0 0 0; }

.event-subtitle {
    font-family: var(--font-display);
    color: var(--red);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-style: italic;
}

.check-list { margin: 30px 0; }
.check-list li { margin-bottom: 12px; font-weight: 500; }

/* ==================== SPEISEKARTE SECTION ==================== */
.menu-section {
    padding: 120px 0;
    background: url('media/uberuns.alvolo.jpeg') center/cover fixed no-repeat;
    background-color: #111;
    position: relative;
    color: var(--white);
}

.menu-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.83);
    z-index: 1;
}

.menu-section .container { position: relative; z-index: 2; }
.section-title.light { color: var(--white); }
.section-subtitle.light { color: #ccc; }

.live-video-section .section-label { color: var(--red); }
.live-video-section .section-subtitle { color: #bbb; }

.menu-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.menu-category {
    background: rgba(255,255,255,0.05);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: 0.3s;
}

.menu-category:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--red);
    transform: translateY(-10px);
}

.menu-category h3 { font-family: var(--font-display); color: var(--red); margin-bottom: 10px; font-size: 1.7rem; }
.menu-category p { font-size: 0.9rem; color: #ddd; }
.menu-cta-wrapper { text-align: center; }

/* ==================== UEBER UNS / QUALITAET ==================== */
.lieferanten { padding: 100px 0; background: var(--light-grey); }

.suppliers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; }

.supplier-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.supplier-card:hover { transform: translateY(-5px); }

.supplier-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.supplier-icon {
    font-size: 1.8rem;
    background: var(--light-grey);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.supplier-header h4 { font-family: var(--font-display); font-size: 1.3rem; margin: 0; }
.location { color: var(--text-grey); font-size: 0.85rem; }
.special-card { border-left: 4px solid var(--red); }

/* ==================== GOOGLE REVIEWS ==================== */
.google-reviews-section { background: var(--white); padding: 80px 0; text-align: center; }

.review-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid #eee;
}

.g-logo { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; font-family: var(--font-main); }
.stars { color: #FBBC05; font-size: 2rem; margin-bottom: 12px; letter-spacing: 4px; }

.google-rating-summary {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0;
    margin-bottom: 20px;
    font-family: var(--font-main);
}
.rating-score {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}
.rating-divider {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-grey);
}
.rating-count {
    font-size: 0.9rem;
    color: var(--text-grey);
}

.review-box h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 10px; }

.btn-google {
    display: inline-block;
    background: #4285F4;
    color: #fff;
    padding: 13px 28px;
    border-radius: 4px;
    font-family: var(--font-main);
    font-weight: 700;
    margin-top: 20px;
    transition: background 0.2s;
}

.btn-google:hover { background: #3367d6; }

/* ==================== GALLERY ==================== */
.gallery { padding: 80px 0; background: var(--white); }

.gallery-grid { column-count: 4; column-gap: 20px; }

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.05); filter: brightness(0.9); }

/* ==================== LIVE VIDEO SECTION ==================== */
.live-video-section {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
}

.live-video-wrap {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
}

.video-consent-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 60px 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    text-align: center;
}

.video-consent-icon {
    font-size: 3rem;
    color: var(--red);
    line-height: 1;
}

.video-consent-block p {
    color: var(--text-grey);
    max-width: 500px;
    line-height: 1.7;
}

.live-video-iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

.hidden {
    display: none !important;
}

/* ==================== REWARD SECTION ==================== */
.reward-section {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.reward-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(196,30,58,0.18) 0%, transparent 60%);
    pointer-events: none;
}

.reward-inner {
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.reward-text { flex: 1; }

.reward-text h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.reward-text h2 em { color: var(--red); font-style: italic; }
.reward-text p { color: #bbb; margin-bottom: 15px; line-height: 1.75; }
.reward-text strong { color: var(--white); }
.reward-note { font-size: 0.9rem; color: #777 !important; font-style: italic; margin-bottom: 30px !important; }

.btn-reward-cta {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 16px 38px;
    font-family: var(--font-main);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    border-radius: 2px;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(196,30,58,0.3);
}

.btn-reward-cta:hover {
    background: var(--white);
    color: var(--red);
    box-shadow: 0 0 30px rgba(196,30,58,0.5);
    transform: translateY(-2px);
}

.reward-steps { flex: 1; }

.reward-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.07);
    transition: 0.3s;
}

.reward-step:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(196,30,58,0.4);
}

.step-icon {
    font-size: 1.4rem;
    width: 48px;
    height: 48px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.step-body { display: flex; flex-direction: column; gap: 4px; }
.step-body strong { color: var(--white); font-size: 0.95rem; font-family: var(--font-main); }
.step-body span { color: #aaa; font-size: 0.9rem; }

.step-link {
    color: var(--red);
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 5px;
    font-family: var(--font-main);
    transition: color 0.2s;
}

.step-link:hover { color: var(--white); }

.reward-step--highlight {
    border-color: rgba(196,30,58,0.45);
    background: rgba(196,30,58,0.1);
}

/* ==================== RESERVIERUNG / DISH WIDGET ==================== */
.reservierung { background: var(--white); }

.reservierung-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin: 100px 0;
}

.reservierung-info {
    padding: 50px;
    background: var(--black);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.reservierung-info h2 { font-family: var(--font-display); color: var(--red); margin-bottom: 20px; font-size: 2rem; }
.reservierung-info > p { color: #ccc; line-height: 1.7; }
.contact-preview { margin-top: 30px; line-height: 2.2; font-size: 1rem; }

.reservation-form { padding: 40px; background: var(--white); border-radius: 10px; box-shadow: var(--shadow); }

.arrow-to-booking {
    color: var(--red);
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-grow: 1;
    margin-top: 30px;
}

.arrow-to-booking svg {
    width: 80px;
    height: auto;
    opacity: 0.7;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.arrow-to-booking svg:hover { transform: translateX(10px); opacity: 1; }

/* ==================== KONTAKT / KARTE ==================== */
.kontakt { background: var(--white); }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }

.kontakt-details {
    background: var(--light-grey);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kontakt-details h2 { font-family: var(--font-display); font-size: 2.2rem; margin-bottom: 20px; }
.address-box h3 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 12px; }
.address-box p { color: var(--text-grey); margin-bottom: 6px; }
.insta-link-box { margin-top: 20px; }

.btn-insta {
    display: inline-block;
    color: #E1306C;
    font-weight: 700;
    border: 2px solid #E1306C;
    padding: 10px 22px;
    border-radius: 50px;
    font-family: var(--font-main);
    transition: 0.3s;
}

.btn-insta:hover { background: #E1306C; color: #fff; }

.map-wrapper { overflow: hidden; }
.map-wrapper iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ==================== FOOTER ==================== */
.footer { background-color: var(--black); color: #fff; padding: 80px 0 30px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    width: 110px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer h4 {
    font-family: var(--font-main);
    color: var(--red);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.78rem;
}

.footer-nav li { margin-bottom: 10px; }
.footer-nav a { color: #999; transition: 0.3s; font-family: var(--font-main); font-size: 0.95rem; }
.footer-nav a:hover { color: var(--white); padding-left: 5px; }

.gezer-link { color: #999; font-family: var(--font-main); font-size: 0.9rem; }
.gezer-link:hover { color: var(--red); }

.footer-copyright {
    border-top: 1px solid #222;
    padding-top: 30px;
    text-align: center;
    color: #555;
    font-size: 0.85rem;
    font-family: var(--font-main);
}

/* ==================== LEGAL PAGES ==================== */
.legal-main { padding: 160px 0 100px; min-height: 80vh; background: var(--white); }
.legal-content { max-width: 800px; margin: 0 auto; }

.legal-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 40px;
    color: var(--black);
    border-bottom: 4px solid var(--red);
    display: inline-block;
    padding-bottom: 10px;
    word-break: break-word;
    hyphens: auto;
}

.legal-content h2 { font-family: var(--font-display); font-size: 1.5rem; margin-top: 40px; margin-bottom: 15px; }
.legal-content h3 { font-size: 1.2rem; margin-top: 25px; margin-bottom: 10px; color: var(--red); }
.legal-content p { margin-bottom: 15px; color: var(--text-grey); }
.legal-content a { color: var(--black); text-decoration: underline; text-decoration-color: var(--red); }
.legal-content a:hover { color: var(--red); }

/* ==================== BELOHNUNG PAGE ==================== */
.belohnung-hero {
    padding: 160px 0 90px;
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.belohnung-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(196,30,58,0.28) 0%, transparent 65%);
    pointer-events: none;
}

.belohnung-hero .container { position: relative; z-index: 1; }

.belohnung-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.belohnung-hero h1 em { color: var(--red); font-style: italic; }

.belohnung-hero p {
    color: #bbb;
    font-size: 1.15rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}

.belohnung-steps-section { padding: 100px 0; background: var(--white); }

.belohnung-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.b-step-card {
    background: var(--white);
    padding: 50px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--red);
    transition: transform 0.3s ease;
}

.b-step-card:hover { transform: translateY(-8px); }

.b-step-number {
    width: 64px;
    height: 64px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.b-step-card h3 { font-family: var(--font-display); font-size: 1.9rem; margin-bottom: 15px; }
.b-step-card p { color: var(--text-grey); margin-bottom: 25px; line-height: 1.7; }

.b-step-link {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 11px 28px;
    border-radius: 2px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.b-step-link:hover { background: var(--black); transform: translateY(-2px); }

.gift-highlight {
    background: var(--black);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gift-highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(196,30,58,0.22) 0%, transparent 60%);
}

.gift-highlight .container { position: relative; z-index: 1; }

.gift-icon-big {
    font-size: 5rem;
    display: block;
    margin-bottom: 20px;
    animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

.gift-highlight h2 { font-family: var(--font-display); font-size: 3rem; margin-bottom: 20px; }
.gift-highlight h2 em { color: var(--red); font-style: italic; }

.gift-highlight p {
    color: #bbb;
    max-width: 600px;
    margin: 0 auto 35px;
    font-size: 1.1rem;
    line-height: 1.75;
}

.gift-conditions { padding: 80px 0; background: var(--light-grey); }

.conditions-box {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--red);
}

.conditions-box h3 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 25px; }

.conditions-list { list-style: none; padding: 0; }

.conditions-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: var(--text-grey);
    font-family: var(--font-main);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.conditions-list li::before { content: '\2713'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.conditions-list li:last-child { border-bottom: none; }

.back-to-home {
    display: inline-block;
    margin-top: 40px;
    color: var(--black);
    font-family: var(--font-main);
    font-weight: 700;
    border-bottom: 2px solid var(--red);
    padding-bottom: 3px;
    transition: color 0.2s;
}

.back-to-home:hover { color: var(--red); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1366px) {
    .floating-hours { display: none; }
    .hero { background-attachment: scroll; }
    .menu-section { background-attachment: scroll; }
    .nav-link { font-size: 12px; }
    .nav-container { padding: 0 20px; }
    .hero-title { font-size: 4.5rem; }
    .events-wrapper { flex-direction: column; gap: 40px; }
    .video-grid-wrapper { width: 100%; height: 400px; }
    .events-text-col { width: 100%; }
    .menu-categories { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { column-count: 2; }
    .reservierung-wrapper { grid-template-columns: 1fr; }
    .reservierung-info { padding: 40px; }
    .reservation-form { padding: 30px; }
    .arrow-to-booking svg { transform: rotate(90deg); }
    .arrow-to-booking { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; text-align: center; }
    .footer-brand { grid-column: span 2; display: flex; justify-content: center; margin-bottom: 20px; }
    .reward-inner { flex-direction: column; }
    .belohnung-steps-grid { grid-template-columns: 1fr 1fr; }
    .kontakt-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-container { padding: 0 20px; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 40px;
        transition: 0.4s;
        z-index: 999;
    }
    .nav-menu.active { right: 0; }
    .hamburger { display: flex; flex-direction: column; gap: 6px; cursor: pointer; z-index: 2000; }
    .hamburger span { width: 30px; height: 3px; background: var(--white); transition: 0.3s; }
    .btn-header-cta { display: none; }
    .hero-title { font-size: 3rem; letter-spacing: 2px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; text-align: center; }
    .events-wrapper { flex-direction: column; }
    .video-grid-wrapper { height: auto; min-height: auto; overflow: visible; }
    .event-video-container { flex-direction: column; height: auto; gap: 8px; }
    .event-video { height: 260px; width: 100%; flex: none; object-fit: cover; }
    .reservierung-wrapper { grid-template-columns: 1fr; }
    .arrow-to-booking { justify-content: center; }
    .arrow-to-booking svg { transform: rotate(90deg); width: 50px; }
    .arrow-to-booking svg:hover { transform: rotate(90deg) translateX(10px); }
    .kontakt-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { margin: 0 auto 20px; display: block; }
    .footer-brand { display: flex; flex-direction: column; align-items: center; }
    .footer-col { display: flex; flex-direction: column; align-items: center; width: 100%; }
    .footer-nav { display: flex; flex-direction: column; align-items: center; width: 100%; }
    .footer-nav li { width: 100%; text-align: center; }
    .footer-nav a { display: block; width: 100%; }
    .footer-nav a:hover { padding-left: 0; }
    .gezer-link { text-align: center; display: block; width: 100%; }
    .footer h4 { text-align: center; width: 100%; }
    .gallery-grid { column-count: 1; }
    .belohnung-steps-grid { grid-template-columns: 1fr; }
    .reward-inner { flex-direction: column; }
    .section-title { font-size: 2.2rem; }
    .conditions-box { padding: 30px 25px; }
    .kontakt-details { padding: 40px 25px; }
}
