/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --primary-color: #8B4513;
    --secondary-color: #c59d5f;
    --accent-color: #C19A6B;
    --dark-bg: #1a1a1a;
    --light-bg: #faf8f3;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    --gold: #c59d5f;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.2);
    --elegant-gold: #c59d5f;
    --elegant-dark: #2c2c2c;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Raleway', 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    background: transparent;
    /* Entfernt weißen Hintergrund durch CSS-Filter */
    mix-blend-mode: multiply;
    /* Alternative: Wenn mix-blend-mode nicht gut funktioniert, verwende brightness */
    /* filter: brightness(1.1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)); */
}

.logo .tagline {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    font-style: italic;
    line-height: 1.2;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--elegant-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    animation: zoomIn 8s ease-in-out infinite;
}

.hero-slide.active {
    opacity: 1;
}

@keyframes zoomIn {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.3), rgba(26, 26, 26, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    font-family: 'Dancing Script', cursive;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--elegant-gold);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(197, 157, 95, 0.3);
    border: none;
}

.btn-primary:hover {
    background: #b18540;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 157, 95, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 5rem 0;
    width: 100%;
    margin: 0;
    overflow-x: hidden;
}

.section-alt {
    background: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--elegant-gold);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-text .lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card.feature-card-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    overflow: hidden;
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.3), rgba(26, 26, 26, 0.3));
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-overlay {
    opacity: 0.9;
}

.feature-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    color: var(--white);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card.feature-card-bg h3 {
    color: var(--white);
}

.feature-card.feature-card-bg p {
    color: rgba(255, 255, 255, 0.95);
}

.restaurant-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-box .note {
    font-style: italic;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Gerichte Grid */
.gerichte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.gericht-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gericht-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.gericht-images {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gericht-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gericht-card:hover .gericht-images img {
    transform: scale(1.1);
}

.gericht-content {
    padding: 1.5rem;
}

.gericht-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.gericht-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Events */
.event-next-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.event-image-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 180px;
    height: 120px;
}

.event-next-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.event-sold-out-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: #dc3545;
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    letter-spacing: 2px;
    border: 3px solid white;
}

.event-next-text {
    flex: 1;
}

.event-next-text h3 {
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.event-next-text p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .event-next-box {
        flex-direction: column;
        text-align: center;
    }
    .event-image-wrapper {
        width: 100%;
        max-width: 280px;
        height: auto;
        aspect-ratio: 3/2;
    }
    .event-next-image {
        width: 100%;
        height: 100%;
    }
    .event-sold-out-badge {
        font-size: 0.95rem;
        padding: 0.6rem 1.5rem;
        letter-spacing: 1px;
    }
}

.events-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.event-reserve-btn-wrap {
    text-align: center;
    margin-top: 2.5rem;
}

.events-text h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.events-text h3:first-child {
    margin-top: 0;
}

.calendar-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

#calendar {
    margin-top: 1rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.google-maps-container {
    margin: 1.5rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px var(--shadow);
}

.google-maps-container a {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.google-maps-container a:hover {
    transform: scale(1.02);
}

.google-maps-container iframe {
    display: block;
    width: 100%;
    height: 250px;
    border: none;
}

.map-link-text {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

.reservation-form-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.reservation-form-container h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--elegant-gold);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--elegant-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.menu-modal-content {
    max-width: 800px;
}

.gallery-modal-content {
    max-width: 1200px;
}

.event-reservation-modal-content {
    max-width: 950px;
}

.event-reservation-modal-content h2 {
    margin-bottom: 1.5rem;
}

.event-modal-calendar {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.event-modal-calendar h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
}

.close:hover {
    color: var(--primary-color);
}

.menu-title,
.gallery-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.menu-container {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    line-height: 2;
}

.menu-section {
    margin-bottom: 2rem;
}

.menu-section h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.menu-item-name {
    flex: 1;
}

.menu-item-price {
    color: var(--elegant-gold);
    font-weight: 600;
    margin-left: 1rem;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

.gallery-video {
    grid-column: 1 / -1;
    max-width: 100%;
}

.gallery-video video {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
}

/* Video Section */
.video-container {
    max-width: 1200px;
    margin: 2rem auto 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-hover);
}

.main-video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 70vh;
    object-fit: contain;
    background: #000;
}

/* Calendar Styles */
.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    min-width: 0;
    width: 100%;
}

.calendar-header {
    text-align: center;
    font-weight: 600;
    padding: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-size: 0.9rem;
    min-width: 0;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.25rem;
    min-width: 0;
    min-height: 40px;
}

.calendar-day:hover {
    background: var(--light-bg);
}

.calendar-day.available {
    background: #d4edda;
    border-color: #28a745;
}

.calendar-day.booked {
    background: #f8d7da;
    border-color: #dc3545;
    cursor: not-allowed;
    opacity: 0.6;
}

.calendar-day.event {
    background: var(--elegant-gold);
    color: var(--white);
    border-color: var(--elegant-gold);
}

.calendar-day-number {
    font-weight: 600;
    font-size: 1.1rem;
}

.calendar-day-label {
    font-size: 0.7rem;
    margin-top: 0.25rem;
    text-align: center;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: var(--white);
        width: 250px;
        height: calc(100vh - 80px);
        box-shadow: -2px 0 10px var(--shadow);
        padding: 2rem;
        transition: right 0.3s ease;
        gap: 1rem;
    }

    .nav-links.active {
        right: 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .content-grid,
    .events-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gerichte-grid {
        grid-template-columns: 1fr;
    }

    .header .container {
        padding: 1rem;
        width: 100%;
    }

    .logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .logo-image {
        height: 45px;
    }

    .logo .tagline {
        font-size: 0.75rem;
    }

    .container {
        padding: 0 1rem;
        width: 100%;
        margin: 0 auto;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 1.5rem;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .restaurant-info {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .calendar-container {
        padding: 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .calendar {
        gap: 0.25rem;
        min-width: 320px;
    }

    .calendar-header {
        padding: 0.4rem 0.2rem;
        font-size: 0.75rem;
    }

    .calendar-day {
        padding: 0.2rem;
        min-height: 35px;
    }

    .calendar-day-number {
        font-size: 0.9rem;
    }

    .calendar-day-label {
        font-size: 0.6rem;
        margin-top: 0.1rem;
    }
}

@media (max-width: 480px) {
    html, body {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 1rem;
        width: 100%;
    }

    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
}

/* Event Banner */
.event-banner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9998;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

.event-banner.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.event-banner-content {
    position: relative;
    max-width: 480px;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
}

.event-banner-image {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    display: block;
    border-radius: 12px;
}

.event-banner-close {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
}

.event-banner-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.event-banner-buttons {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 0 0;
    justify-content: center;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.event-banner-buttons .btn {
    min-width: 140px;
}

@media (max-width: 768px) {
    .event-banner {
        padding: 0.75rem;
    }
    .event-banner-content {
        max-width: 100%;
    }
    .event-banner-image {
        max-height: 50vh;
    }
    .event-banner-buttons {
        flex-direction: column;
        padding: 0.75rem 0 0;
    }
    .event-banner-buttons .btn {
        width: 100%;
        min-width: auto;
    }
}

/* Cookie Consent Modal */
.cookie-modal {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    padding: 1rem;
    animation: slideUp 0.3s ease;
}

.cookie-modal.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-modal-content {
    background: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-modal-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cookie-modal-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.cookie-details {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.cookie-details ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.cookie-details li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    flex: 1;
    min-width: 200px;
}

.cookie-info {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
}

.cookie-info a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-modal-content {
        padding: 1.5rem;
        border-radius: 15px 15px 0 0;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
        min-width: auto;
    }
}

/* Floating Wochenkarte Button */
.floating-wochenkarte-btn {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--elegant-gold));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 999;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    animation: floatPulse 3s ease-in-out infinite;
}

.floating-wochenkarte-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--elegant-gold), var(--primary-color));
}

.floating-btn-text {
    display: inline-block;
}

.floating-btn-icon {
    font-size: 1.3rem;
    display: inline-block;
}

@keyframes floatPulse {
    0%, 100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(-52%);
    }
}

/* Mobile adjustments for floating button */
@media (max-width: 768px) {
    .floating-wochenkarte-btn {
        right: 10px;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        flex-direction: column;
        gap: 0.5rem;
        border-radius: 25px;
    }
    
    .floating-btn-text {
        font-size: 0.75rem;
        text-align: center;
        line-height: 1.2;
    }
    
    .floating-btn-icon {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .floating-wochenkarte-btn {
        right: 5px;
        padding: 0.6rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .floating-btn-text {
        display: none;
    }
    
    .floating-btn-icon {
        font-size: 1.5rem;
    }
}

/* Active nav link styling */
.nav-link.active {
    color: var(--elegant-gold);
    font-weight: 600;
}

