:root {
    --gold: #FFD700;
    --black: #000000;
    --light-gold: #FFF0AC;
    --dark-gold: #B8860B;
    --gray: #333333;
    --red: #890000;
    --light-red: #cc0000;
    --dark-red: #660000;
    --gradient-gold: linear-gradient(135deg, var(--gold), var(--dark-gold));
    --gradient-red: linear-gradient(135deg, var(--red), var(--dark-red));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-image: url('../images/Back1.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow-x: visible;
    z-index: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 215, 0, 0.3);
    z-index: 0;
    pointer-events: none;
}

.background-logo {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-image: url('../images/Logo3.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.9;
    pointer-events: none;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--black);
    z-index: 9999;
    border-bottom: 2px solid var(--gold);
    height: 110px; /* Angepasste Höhe für bessere Proportionen */
}

.main-nav {
    padding: 0.8rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; /* Volle Höhe des Headers */
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    z-index: 1000;
}

.logo img {
    height: 85px;
    width: 85px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo img.logo-spacing {
    margin-right: -0.2rem;
}

.header-comic-logo {
    width: 55px;
    height: auto;
    border-radius: 10px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.logo img:hover,
.bayern-logo:hover,
.comic-logo:hover {
    transform: scale(1.05);
}

.desktop-nav {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 0.8rem;
    justify-content: flex-end;
    padding-right: 1rem;
}

.desktop-nav a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

/* Spezielles Styling für den Honig-Wahrheit Menüpunkt */
.desktop-nav a[href="honigskandal.html"],
.desktop-nav a[href="pages/honigskandal.html"] {
    color: #fff;
    background-color: rgba(204, 0, 0, 0.8);
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    border: 1px solid #ff0000;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
    animation: warning-pulse 2s infinite;
}

/* Animation für den pulsierenden Effekt */
@keyframes warning-pulse {
    0% {
        box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
    }
}



.desktop-nav a:hover {
    background-color: rgba(255, 184, 0, 0.15);
    color: var(--light-gold);
    transform: translateY(-1px);
}

/* Hover-Zustand des Honig-Wahrheit Menüpunkts */
.desktop-nav a[href="honigskandal.html"]:hover,
.desktop-nav a[href="pages/honigskandal.html"]:hover {
    background-color: rgba(255, 0, 0, 0.9);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.3);
}

.desktop-nav a.active {
    background-color: var(--gold);
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Aktiver Zustand des Honig-Wahrheit Menüpunkts */
.desktop-nav a[href="honigskandal.html"].active,
.desktop-nav a[href="pages/honigskandal.html"].active {
    background-color: #cc0000;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(204, 0, 0, 0.4);
    border: 1px solid #ffffff;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
}

.burger {
    cursor: pointer;
    padding: 15px; /* Größerer Touchbereich */
    z-index: 1001; /* Höherer z-index */
    position: relative; /* Für z-index benötigt */
}

.burger div {
    width: 30px; /* Breitere Linien */
    height: 3px;
    background-color: var(--gold);
    margin: 6px; /* Mehr Platz zwischen den Linien */
    transition: all 0.3s ease;
    border-radius: 2px; /* Abgerundete Ecken */
}

/* Burger Animation */
.burger.active .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.active .line2 {
    opacity: 0;
}

.burger.active .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Links */
.mobile-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    text-align: center;
    z-index: 1000;
}

.mobile-nav-links li {
    margin: 15px 0;
    list-style: none;
}

.mobile-nav-links a,
.mobile-nav-links span {
    color: var(--gold);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px;
    display: block;
}

/* Mobile Navigation für Honig-Wahrheit */
.mobile-nav-links a[href="honigskandal.html"],
.mobile-nav-links a[href="pages/honigskandal.html"] {
    color: #ffffff;
    background-color: rgba(204, 0, 0, 0.8);
    border-radius: 5px;
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    border: 1px solid #ff0000;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active,
.mobile-nav-links span.active {
    background-color: var(--gold);
    color: black;
}

/* Media Query für Mobile */
@media screen and (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .bayern-logo {
        position: relative;
        order: 5;
        margin-top: 5px;
    }

    .logo {
        flex-wrap: wrap;
        justify-content: center;
        padding: 5px;
        gap: 8px;
    }

    .logo img {
        height: 60px;
        width: auto;
    }

    .header-comic-logo {
        height: 60px !important;
        width: auto !important;
        margin: 0 4px;
    }

    header {
        background-color: black;
        padding: 0.3rem 0;
        height: 60px;
        display: flex;
        align-items: center;
    }

    .main-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.3rem 1rem;
        max-width: 100%;
        margin: 0 auto;
        position: relative;
        flex-wrap: wrap;
        height: 100%;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        flex-shrink: 0;
        flex-wrap: nowrap;
        justify-content: flex-start;
        max-width: calc(100% - 50px);
        margin-right: 50px; /* Platz für den Burger-Button */
        height: 100%;
    }

    .logo img {
        max-height: 90%;
        height: auto;
        width: auto;
        transition: transform 0.3s ease;
        margin: 1px;
        object-fit: contain;
    }

    .bayern-logo {
        max-height: 80% !important;
        border-radius: 50%;
        padding: 2px;
        background: rgba(255, 255, 255, 0.15);
    }

    .comic-logo, .header-comic-logo {
        max-height: 80% !important;
    }

    /* Mobile Navigation */
    .mobile-nav {
        display: block;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }

        /* Dieser Abschnitt wurde entfernt, da er bereits weiter oben definiert ist */

        .burger {
            cursor: pointer;
            z-index: 1001; /* Höherer z-index */
            padding: 15px; /* Größerer Touchbereich */
            background-color: rgba(0, 0, 0, 0.2); /* Leichter Hintergrund für bessere Sichtbarkeit */
            margin-left: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-radius: 6px; /* Abgerundete Ecken */
        }

        .burger .line1,
        .burger .line2,
        .burger .line3 {
            width: 30px; /* Breitere Linien für bessere Sichtbarkeit */
            height: 3px; /* Dickere Linien */
            background-color: var(--gold);
            margin: 4px;
            transition: all 0.3s ease;
            border-radius: 2px; /* Abgerundete Ecken */
        }

        .burger.active .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .burger.active .line2 {
            opacity: 0;
        }

        .burger.active .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .mobile-nav-links {
            display: none;
            position: fixed;
            top: 80px;
            right: 0;
            left: auto;
            width: 250px;
            height: auto;
            max-height: 80vh;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(184, 134, 11, 0.95));
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 999;
            transform: translateY(-10px);
            opacity: 0;
            border-radius: 10px;
            padding: 1rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            pointer-events: none;
            margin-right: 10px;
        }

        .mobile-nav.active .mobile-nav-links {
            display: flex;
            transform: translateY(0);
            opacity: 1;
            pointer-events: all;
        }

        .mobile-nav-links li {
            margin: 0.8rem 0;
            list-style: none;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            width: 90%;
            position: relative;
            z-index: 2;
            display: block;
        }

        .mobile-nav.active .mobile-nav-links li {
            opacity: 1;
            transform: translateY(0);
            transition-delay: calc(0.1s * var(--i));
        }

        .mobile-nav-links a {
            color: var(--gold);
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: 500;
            transition: all 0.3s ease;
            display: block;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            text-align: center;
            letter-spacing: 1px;
            position: relative;
            cursor: pointer;
            z-index: 2;
            width: 100%;
            background: transparent;
            -webkit-tap-highlight-color: transparent;
        }

        .mobile-nav-links a:hover,
        .mobile-nav-links a.active,
        .mobile-nav-links span.active {
            color: black;
            background-color: var(--gold);
            transform: scale(1.05);
            display: block;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            text-align: center;
            letter-spacing: 1px;
        }

        .mobile-nav-links::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../images/Back1.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            filter: brightness(0.7) sepia(0.5);
            pointer-events: none;
        }

        .mobile-nav-links::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
            pointer-events: none;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.2; }
            50% { opacity: 0.4; }
        }

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

    .logo {
        gap: 10px;
    }

    .logo img {
        height: 40px;
    }
    .bayern-logo {
        height: 40px;
    }
    .comic-logo {
        width: 40px;
    }
}

/* Fliegende Bienen Animationen */
.permanent-bee {
    position: fixed;
    width: 50px;
    height: 50px;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.7;
    transition: transform 0.3s ease;
}
.permanent-bee {
    position: fixed;
    font-size: 24px;
    z-index: 1000;
    pointer-events: none;
    will-change: transform;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes flyRight {
    from {
        transform: translate(-100vw, var(--random-y)) rotate(0deg) scaleX(-1);
    }
    to {
        transform: translate(100vw, var(--random-y)) rotate(0deg) scaleX(-1);
    }
}

@keyframes flyLeft {
    from {
        transform: translate(100vw, var(--random-y)) rotate(0deg);
    }
    to {
        transform: translate(-100vw, var(--random-y)) rotate(0deg);
    }
}

@keyframes flyDiagonalUp {
    from {
        transform: translate(-100vw, 100vh) rotate(-30deg) scaleX(-1);
    }
    to {
        transform: translate(100vw, -20vh) rotate(-30deg) scaleX(-1);
    }
}

@keyframes flyDiagonalDown {
    from {
        transform: translate(-100vw, -20vh) rotate(30deg) scaleX(-1);
    }
    to {
        transform: translate(100vw, 100vh) rotate(30deg) scaleX(-1);
    }
}

.permanent-bee.right {
    animation-name: flyRight;
    animation-duration: var(--duration);
}

.permanent-bee.left {
    animation-name: flyLeft;
    animation-duration: var(--duration);
}

.permanent-bee.diagonal-up {
    animation-name: flyDiagonalUp;
    animation-duration: var(--duration);
}

.permanent-bee.diagonal-down {
    animation-name: flyDiagonalDown;
    animation-duration: var(--duration);
}

/* Hero Section */
main {
    margin-top: 110px; /* Angepasster Abstand unter dem Header */
    flex: 1; /* Nimmt den verfügbaren Platz ein */
}

@media screen and (max-width: 1024px) {
    .desktop-nav {
        flex-wrap: wrap;
        gap: 0.6rem;
    }
    
    .desktop-nav a {
        font-size: 0.9rem;
        padding: 0.4rem 0.7rem;
    }
}

@media screen and (max-width: 768px) {
    header {
        height: 85px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: var(--black);
        z-index: 1000;
    }

    .main-nav {
        padding: 0.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        height: 100%;
    }

    .logo img {
        height: 70px;
        width: 70px;
        object-fit: contain;
    }

    .desktop-nav {
        display: none;
    }

    .burger {
        display: block;
        margin-left: 1rem;
    }

    main {
        margin-top: 85px;
        position: relative;
        z-index: 1;
    }
}

@media screen and (min-width: 769px) {
    main {
        margin-top: 120px; /* Größerer Abstand für Desktop */
    }
}

/* Einheitlicher Abstand für alle Seiten */
.subpage main {
    margin-top: 100px;
}

.hero {
    padding-top: 0; /* Abstand für den fixed header */
    min-height: 50vh; /* Reduzierte Mindesthöhe */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    opacity: 0;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--gold) 0%, transparent 50%);
    opacity: 0.1;
    animation: rotate 30s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media screen and (max-width: 768px) {
    .hero {
        padding-top: 2rem;
        min-height: 50vh;
        margin-top: 2rem;
    }
}

.hero-content {
    padding: 3rem;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 3px solid var(--gold);
    transform: translateY(0);
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
    overflow-x: visible;
    position: relative;
    z-index: 2;
}

@media screen and (min-width: 769px) {
    .hero-content {
        transform: translateY(-2rem);
    }
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    border-radius: 17px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(8px);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0% { opacity: 0.5; filter: blur(8px); }
    50% { opacity: 0.5; filter: blur(12px); }
    100% { opacity: 0.5; filter: blur(8px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(-2rem);
    }
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5),
                0 0 10px rgba(255, 215, 0, 0.3);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: var(--gradient-gold);
    transform: translateX(-50%);
}

.hero p {
    color: var(--light-gold);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Desktop Styles */
@media screen and (min-width: 769px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .hero-content {
        padding: 1.5rem;
        width: 90%;
        transform: translateY(-1rem);
    }

    .hero-content img {
        max-width: 100%;
        height: auto;
        width: 200px;
    }

    .hero h1 {
        font-size: 1.4rem !important;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.2rem !important;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.6rem !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        border-radius: 15px !important;
        border-width: 1px !important;
    }
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--gold);
    color: var(--dark);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

@media screen and (max-width: 768px) {
    .cta-button {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.6rem !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        border-radius: 15px !important;
        border-width: 1px !important;
    }
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 5rem 2rem;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.feature-card {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(145deg, rgba(0,0,0,0.9), rgba(0,0,0,0.7));
    border-radius: 15px;
    border: 3px solid var(--gold);
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--light-gold);
}

.feature-card i {
    display: inline-block;
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
    transition: color 0.3s ease;
}

.feature-card i + i {
    margin-left: 0.5rem;
}

.feature-card:hover i {
    color: var(--light-gold);
}

.feature-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    font-size: 1.8rem;
}

.feature-card:hover h3 {
    color: var(--light-gold);
}

.feature-card p {
    color: var(--light-gold);
}

@media screen and (max-width: 768px) {
    .features {
        padding: 3rem 1rem;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card i {
        font-size: 2.2rem;
    }

    .feature-card h3 {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 480px) {
    .features {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Regional Section */
.regional-section {
    padding: 6rem 2rem;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.regional-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: shimmer 8s infinite linear;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.regional-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    opacity: 0.5;
}

.regional-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    border: 3px solid var(--gold);
    position: relative;
    z-index: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.regional-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.regional-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    border-radius: 17px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(8px);
    transition: all 0.3s ease;
}

.regional-content:hover::before {
    opacity: 0.5;
    filter: blur(12px);
}

.regional-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.regional-image:hover {
    transform: scale(1.05);
}

.regional-image img {
    max-width: 200px;
    height: auto;
    border-radius: 15px;
    transition: all 0.5s ease;
    filter: brightness(1);
}

.regional-image:hover img {
    filter: brightness(1.2);
}

.regional-text {
    flex: 1;
    text-align: center;
    padding: 2rem;
    transition: all 0.5s ease;
}

.regional-text h2 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.regional-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.regional-text:hover h2::after {
    width: 100px;
}

.regional-text p {
    color: var(--light-gold);
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.regional-text:hover p {
    opacity: 1;
    transform: translateY(-5px);
}

.regional-text h2 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.regional-text p {
    color: var(--light-gold);
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .regional-section {
        padding: 4rem 1rem;
    }

    .regional-content {
        flex-direction: column;
        padding: 2rem 1.5rem;
        width: 90%;
        margin: 0 auto;
        gap: 2rem;
    }

    .regional-image {
        margin: 0 auto;
    }

    .regional-image img {
        max-width: 180px;
    }

    .regional-text {
        padding: 1rem;
    }

    .regional-text h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .regional-text p {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }

    .regional-content:hover {
        transform: translateY(-3px);
    }
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--light-gold);
    padding: 1.2rem 0.8rem 0.4rem;
    border-top: 2px solid var(--gold);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
    width: 100%;
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.footer-box {
    background: rgba(0, 0, 0, 0.6);
    padding: 0.6rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 4px;
}

.footer-box h4 {
    color: var(--gold);
    font-size: 0.75rem;
    margin-bottom: 0.6rem;
    position: relative;
    padding-bottom: 0.2rem;
}

.footer-box h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 2px;
    background: var(--gradient-gold);
}

.footer-box p {
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.65rem;
}

.footer-box i {
    color: var(--gold);
    width: 12px;
    font-size: 0.65rem;
}

/* Spezifische Styles für Social-Media-Icons */
.social-links i {
    color: var(--gold);
    font-size: 1.8rem;
    width: auto;
    transition: transform 0.3s;
}

.social-links a:hover i {
    transform: scale(1.2);
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 0.4rem;
    font-size: 0.65rem;
}

.footer-box a, .footer-link {
    color: var(--light-gold);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.footer-box a:hover, .footer-link:hover {
    color: var(--gold);
}

.footer-box a::after, .footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.footer-box a:hover::after, .footer-link:hover::after {
    width: 100%;
}

.footer-box ul li a.active {
    color: var(--gold);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter {
    font-size: 0.9rem;
    margin: 0.8rem 0 0.4rem;
    color: var(--dark);
}

.newsletter-form {
    display: flex;
    gap: 0.3rem;
    max-width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 0.3rem 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.8rem;
    min-width: 0;
}

.newsletter-form button {
    background: var(--gold);
    color: white;
    border: none;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background-color 0.2s ease;
}

.newsletter-form button:hover {
    background: var(--dark-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 0.8rem;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
}

.footer-bottom p {
    color: var(--light-gold);
    font-size: 0.6rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }
    .bayern-logo {
        height: 40px;
    }
    .comic-logo {
        width: 40px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(-2rem);
    }
}

.coming-soon,
.imprint-section,
.contact-section {
    padding: 4rem 2rem;
    background: url('../images/Bee-Nature1.jpg') center/cover fixed no-repeat;
    position: relative;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow-y: auto;
}

.coming-soon::before,
.imprint-section::before,
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
    pointer-events: none;
    z-index: 0;
}

.coming-soon .season-info,
.imprint-container,
.contact-container {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.85);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 2rem;
}

.coming-soon .season-info {
    position: relative;
}

.coming-soon .season-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/Logo3.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: -1;
    border-radius: 15px;
}

.coming-soon .season-info li {
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.coming-soon .season-info li:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-color: var(--gold);
}

.coming-soon .season-info li {
    margin: 2rem auto;
}
    max-width: 800px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1),
                0 1px 8px rgba(0, 0, 0, 0.05),
                0 0 0 4px rgba(218, 165, 32, 0.2);
}

.coming-soon .season-info:hover,
.imprint-container:hover,
.contact-container:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15),
                0 3px 10px rgba(0, 0, 0, 0.1),
                0 0 0 6px rgba(218, 165, 32, 0.3);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.coming-soon .season-info h2 {
    color: var(--dark);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coming-soon .season-info ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem auto;
    max-width: 700px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.coming-soon .season-info li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--gold);
    text-align: left;
    transition: all 0.3s ease;
    width: 100%;
}

.coming-soon .season-info i {
    font-size: 1.8rem;
    color: var(--gold);
    flex-shrink: 0;
}

@media screen and (max-width: 768px) {
    
    .coming-soon .season-info ul {
        gap: 1rem;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .coming-soon .season-info li {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 1.2rem;
        gap: 0.5rem;
        max-width: 100%;
    }

    .coming-soon .season-info i {
        margin-bottom: 0.3rem;
    }
}

@media screen and (max-width: 480px) {
    
    .coming-soon .season-info ul {
        max-width: 300px;
    }
    
    .coming-soon .season-info li {
        padding: 1rem;
    }

    .coming-soon .season-info i {
        font-size: 1.5rem;
    }
}

.coming-soon .season-info li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1),
                0 0 0 4px rgba(218, 165, 32, 0.3);
    border-color: #ffd700;
}

.coming-soon .season-info i {
    font-size: 1.5rem;
    color: var(--gold);
    background: rgba(255, 217, 102, 0.2);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--gold);
    transition: all 0.3s ease;
}

.coming-soon .season-info li:hover i {
    transform: scale(1.1);
    background: rgba(255, 217, 102, 0.3);
}

.coming-soon .season-info li span {
    font-weight: 500;
    color: var(--dark);
}

.imprint-container h2 {
    color: var(--dark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.imprint-container h3 {
    color: var(--dark);
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
}

.imprint-container p {
    margin: 0.8rem 0;
    line-height: 1.6;
    color: var(--dark);
}

.imprint-container ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: var(--dark);
}

.imprint-container li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .coming-soon .season-info ul {
        grid-template-columns: 1fr;
    }

    .coming-soon .season-info,
    .imprint-container,
    .contact-container {
        width: 90%;
        padding: 1.5rem;
        margin: 1rem auto;
    }
}

.coming-soon h1 {
    position: relative;
    z-index: 2;
    font-size: 2.4rem;
    color: var(--dark);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 0 #fff,
                 3px 3px 0 var(--gold),
                 -1px -1px 0 #fff,
                 1px -1px 0 #fff,
                 -1px 1px 0 #fff,
                 1px 1px 0 #fff;
    font-weight: 700;
    letter-spacing: 2px;
    padding-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--gold) 20%,
        var(--gold) 80%,
        transparent 100%
    );
}

.coming-soon p {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    color: var(--dark);
    max-width: 850px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    text-shadow: 2px 2px 3px #fff,
                 -1px -1px 0 #fff,
                 1px -1px 0 #fff,
                 -1px 1px 0 #fff,
                 1px 1px 0 #fff;
    font-weight: 500;
    letter-spacing: 1px;
}

.coming-soon h1:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(255, 255, 255, 0.9),
                0 0 0 4px rgba(218, 165, 32, 0.3);
    transition: all 0.3s ease;
}

.contact-section {
    padding: 4rem 2rem;
    background: url('../images/Bee-Nature1.jpg') center/cover no-repeat fixed;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

/* Spezifische Regel mit höchster Priorität */
.contact-section .contact-container {
    position: relative;
    z-index: 2;
    max-width: 900px !important;
    width: 100% !important;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.92) !important;
    border: 2px solid var(--gold);
    padding: 4rem !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    overflow: hidden !important;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.contact-container h2 {
    color: #000 !important;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    display: block;
    width: 70%;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Alte Struktur entfernt */

/* Alte Struktur entfernt */

/* Alte Struktur entfernt */

.contact-form {
    display: block;
    width: 100%;
    margin: 0 auto;
}

/* Formularstruktur mit verbessertem Design */
.contact-field-wrapper {
    display: block;
    width: 70%;
    margin: 0 auto 2rem auto;
}

.contact-field {
    display: block;
    width: 100%;
    margin-bottom: 2rem;
}

.contact-section .contact-field label {
    display: block;
    width: 100%;
    margin-bottom: 0.8rem;
    color: #000 !important; /* Schwarz für Labels */
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-section .contact-field input,
.contact-section .contact-field textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #000080;
    border-radius: 8px;
    color: #000080 !important; /* Blau für Eingabetext */
    font-size: 1.1rem;
    display: block;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #ffd700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
    outline: none;
}

.contact-field textarea {
    min-height: 350px;
    resize: vertical;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--gold);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--black);
}

.message-group textarea {
    min-height: 250px;
    resize: vertical;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-form button {
    display: block;
    margin: 1.5rem auto 0;
    padding: 1rem 2.5rem;
    background: var(--gradient-gold);
    border: none;
    border-radius: 8px;
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
}

.contact-form .form-group {
    width: 100%;
    margin-bottom: 1.5rem;
}

.contact-form .message-group {
    width: 100%;
    margin-bottom: 2rem;
}

.contact-form textarea {
    min-height: 350px; /* Noch höher als vorher */
    resize: vertical;
    width: 100%;
}

.form-group {
    position: relative;
}

.form-group:last-child {
    grid-column: span 2;
}

.form-group label {
    display: block;
    color: #000080; /* Dunkelblau */
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #000080;
    border-radius: 5px;
    color: #000080;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 1);
    border-color: #000080;
    box-shadow: 0 0 10px rgba(0, 0, 128, 0.3);
}

.form-group textarea {
    height: 350px; /* Noch höher als vorher */
    resize: vertical;
}

/* Konkurrierende Button-Definition entfernt um die Zentrierung zu ermöglichen */

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.contact-form button:hover::before {
    left: 100%;
}

.contact-form button.success {
    background: linear-gradient(45deg, #28a745, #218838);
    color: white;
}

.contact-form button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.contact-form button i {
    margin-right: 8px;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.contact-info {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 2px solid var(--gold);
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gradient-gold);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gradient-gold);
}

.contact-info h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

@media screen and (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }

    .contact-info-item {
        padding: 1.5rem;
    }

    .contact-info-item span {
        font-size: 1rem;
        word-break: break-word;
        padding: 0 0.5rem;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }
}

.contact-info-item {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-info-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-info-item span {
    display: block;
    color: var(--light-gold);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-info-item:hover span {
    color: var(--gold);
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.15);
}

.contact-info-item i {
    font-size: 2rem;
    color: var(--gold);
}

.contact-info-item span {
    color: var(--light-gold);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .form-group:last-child {
        grid-column: span 1;
    }

    .contact-form button {
        grid-column: span 1;
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .contact-container {
        padding: 1.5rem;
    }

    .contact-field-wrapper {
        width: 99%;
    }

    .contact-container h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 1rem;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
    pointer-events: none;
}

.contact-section > * {
    position: relative;
    z-index: 1;
}

.contact-container {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--gold), #ffd700, var(--gold));
}

.contact-container h2 {
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(var(--gold-rgb), 0.1);
}

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

.contact-form button {
    background: var(--gold);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    justify-self: center;
    margin-top: 1rem;
}

.contact-form button:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
}

.contact-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(var(--gold-rgb), 0.2);
    text-align: center;
}

.contact-info h3 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
.contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-item i {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.contact-info-item span {
    color: var(--dark);
    font-size: 1.1rem;
}
}

@media (max-width: 768px) {
    .contact-container {
        padding: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.imprint-section {
    padding: 2rem 1rem;
    background: url('../images/Bee-Nature1.jpg') center/cover fixed no-repeat;
    position: relative;
    min-height: 45vh;
    max-height: 45vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.imprint-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
    pointer-events: none;
    z-index: 0;
}

.imprint-container {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.85);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 400px;
    width: 90%;
    max-height: calc(100vh - 200px);
}
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                0 1px 8px rgba(0, 0, 0, 0.05);
    word-wrap: break-word;
    white-space: normal;
}

@media (min-width: 769px) {
    .imprint-container {
        width: 40%;
        max-width: 500px;
    }
}

.imprint-container::-webkit-scrollbar {
    width: 8px;
}

.imprint-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.imprint-container::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

.imprint-container::-webkit-scrollbar-thumb:hover {
    background: #d4af37;
}

@media (max-width: 768px) {
    /* Globale Schriftgrößen für mobile Ansicht */
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.3rem !important;
    }

    h3 {
        font-size: 1.2rem !important;
    }

    h4 {
        font-size: 1.1rem !important;
    }

    .mobile-title {
        display: block !important;
        font-size: 1.1rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.8rem !important;
    }

    .desktop-title {
        display: none !important;
    }

    p, li, a {
        font-size: 0.9rem !important;
    }

    /* Container-spezifische Anpassungen */
    .imprint-container,
    .privacy-container,
    .terms-container,
    .contact-container,
    .about-container,
    .info-container {
        margin: 1rem;
        padding: 1rem;
        width: 90%;
    }
    
    .imprint-box,
    .privacy-box,
    .terms-box,
    .contact-box,
    .about-box,
    .info-box {
        padding: 0.5rem;
    }

    /* Listen-Einrückung */
    ul, ol {
        padding-left: 1rem !important;
        margin: 0.5rem 0 !important;
    }

    /* Sektionsabstände */
    section {
        margin-bottom: 1.5rem !important;
        padding-bottom: 1rem !important;
    }

    /* Hervorgehobene Elemente */
    .emphasis,
    .highlight,
    .notice {
        padding: 0.8rem;
        margin: 1rem 0;
        font-size: 0.9rem;
    }

    /* Spezielle Container */
    .hero-content,
    .feature-content,
    .article-content {
        padding: 1.5rem;
    }

    /* Tabellen */
    table {
        font-size: 0.85rem;
    }

    th, td {
        padding: 0.5rem;
    }
}

/* Desktop Titel Styles */
.mobile-title {
    display: none;
}

.desktop-title {
    display: block;
}

/* Desktop Container Styles */
@media (min-width: 769px) {
}

/* Datenschutz Styling */
.season-info h3 {
    color: var(--dark);
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
}

.season-info h4 {
    color: var(--dark);
    font-size: 1.2rem;
    margin: 1.2rem 0 0.8rem;
}

.season-info p {
    margin: 0.8rem 0;
    line-height: 1.6;
}

.season-info ul, .season-info ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.season-info li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

/* Info Page Styling */
.info-page {
    background-color: #fff6e6;
    position: relative;
    overflow: hidden;
}

.info-page::before {
    content: '';
    position: fixed;
    top: 0;das war gar nichts 
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/info/Background.jpg');
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.info-hero {
    position: relative;
    height: 60vh;
    background-image: url('../images/info/Background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(184,134,11,0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(120deg, #ffd700, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.8rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #fff;
    font-weight: 300;
}

.info-section {
    position: relative;
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 2rem auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-section:nth-child(even) {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.8s ease-out;
}

.info-section:nth-child(even) .text-content {
    transform: translateX(20px);
}

.info-section.visible .text-content {
    opacity: 1;
    transform: translateX(0);
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-gold);
    position: relative;
}

.text-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.text-content:hover h2::after {
    width: 100px;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.image-content {
    flex: 1;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.8s ease-out;
}

.info-section:nth-child(even) .image-content {
    transform: translateX(-20px);
}

.info-section.visible .image-content {
    opacity: 1;
    transform: translateX(0);
}

.info-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    border: 3px solid transparent;
}

.info-image:hover {
    transform: scale(1.03) rotate(1deg);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.image-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.philosophy-section {
    flex-direction: column;
    text-align: center;
    background: linear-gradient(135deg, #fff6e6, #fff);
    border-radius: 30px;
    margin: 4rem auto;
    padding: 6rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.philosophy-item {
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.philosophy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.philosophy-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.philosophy-item:hover::before {
    transform: scaleX(1);
}

.philosophy-item i {
    font-size: 3rem;
    background: linear-gradient(120deg, var(--gold), var(--dark-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.philosophy-item:hover i {
    transform: scale(1.2);
}

.philosophy-item h3 {
    font-size: 1.5rem;
    color: var(--dark-gold);
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .info-section {
        flex-direction: column;
        padding: 3rem 1rem;
    }

    .info-section:nth-child(even) {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.4rem;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }

    .text-content,
    .image-content {
        transform: translateX(0);
    }

    .info-section:nth-child(even) .text-content,
    .info-section:nth-child(even) .image-content {
        transform: translateX(0);
    }
}

/* Intersection Observer Animation */
.info-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.info-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Datenschutz Styling - Widerspruchsrecht Hervorhebung */
.emphasis {
    font-weight: bold;
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-left: 4px solid var(--gold);
}


@media (min-width: 769px) {
}

.coming-soon .season-info p {
    margin: 0.8rem 0;
    line-height: 1.6;
    color: var(--dark);
    text-align: center;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 1rem 0;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--dark);
}

.contact-item p {
    margin: 0 !important;
}

.coming-soon .season-info h2, 
.coming-soon .season-info h3, 
.coming-soon .season-info h4 {
    color: var(--dark);
    margin-top: 1.5rem;
}

.coming-soon .season-info ul, 
.coming-soon .season-info ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: var(--dark);
}

.coming-soon .season-info li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.bee-decoration {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    margin: 2rem 0;
}

.bee {
    position: absolute;
    font-size: 2rem;
    animation: flyBee 20s linear infinite;
}

@keyframes flyBee {
    0% {
        left: -50px;
        top: 50%;
        transform: translateY(-50%) scaleX(-1);
    }
    25% {
        top: 20%;
        transform: translateY(-50%) scaleX(-1);
    }
    50% {
        top: 80%;
        transform: translateY(-50%) scaleX(-1);
    }
    75% {
        top: 40%;
        transform: translateY(-50%) scaleX(-1);
    }
    100% {
        left: calc(100% + 50px);
        top: 50%;
        transform: translateY(-50%) scaleX(-1);
    }
}

/* AGB Styling */
.imprint-container section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

.imprint-container section:last-child {
    border-bottom: none;
}

.imprint-container h1 {
    font-size: 2.4rem;
    color: var(--dark);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 0 #fff,
                 3px 3px 0 var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    padding-bottom: 1rem;
    position: relative;
}

.imprint-container h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--gold) 20%,
        var(--gold) 80%,
        transparent 100%
    );
}

.imprint-container h2 {
    color: var(--dark);
    font-size: 1.6rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.imprint-container h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin: 1.2rem 0 0.8rem;
}

.imprint-container p {
    margin: 0.8rem 0;
    line-height: 1.6;
    color: var(--dark);
    text-align: left;
    font-size: 1.05rem;
}

.imprint-container ul {
    padding-left: 1.5rem;
    list-style-type: disc;
}

.imprint-container li {
    margin: 0.5rem 0;
    line-height: 1.6;
    color: var(--dark);
    font-size: 1.05rem;
}

.imprint-container .emphasis {
    background: rgba(255, 255, 255, 0.9);
    border-left: 4px solid var(--gold);
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.imprint-container .emphasis h3 {
    margin-top: 0;
    color: var(--gold);
}

/* Retro Newspaper Styles */
.newspaper-price {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gold);
    color: #fff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: rotate(15deg);
    border: 2px dashed var(--dark-gold);
    font-family: 'Playfair Display', serif;
    box-shadow: 0 0 15px rgba(139, 69, 19, 0.2);
    z-index: 1;
}

.newspaper-price .price {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
}

.newspaper-price .currency {
    font-size: 1rem;
    font-style: italic;
}

.newspaper-price .note {
    font-size: 0.7rem;
    text-align: center;
    max-width: 90px;
    line-height: 1.2;
    margin-top: 5px;
}

.newspaper-section {
    padding: 2rem;
    position: relative;
    background-color: #f4e4bc;
}

.main-article {
    position: relative;
    margin: -2rem -2rem 3rem -2rem;
    padding: 3rem;
    background: linear-gradient(to bottom, #fff8e8, rgba(255, 255, 255, 0.9));
    border-bottom: 4px double var(--dark-gold);
    box-shadow: 0 2px 15px rgba(184, 134, 11, 0.1);
}

.main-article .article-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--dark-gold);
    font-family: 'Playfair Display', serif;
    text-align: center;
    border-bottom: 4px double var(--dark-gold);
    padding-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(184, 134, 11, 0.1);
}

.main-article .article-content {
    font-size: 1.2rem;
    line-height: 1.6;
    column-count: 3;
    column-gap: 3rem;
    column-rule: 1px solid var(--gold);
    max-width: 1200px;
    margin: 0 auto;
}

.main-article .article-image {
    float: none;
    width: 250px;
    margin: 0 auto 2rem;
    display: block;
}

.newspaper-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.article-large {
    grid-column: span 8;
    border-right: 1px solid var(--dark-gold);
    padding-right: 1.5rem;
}

.article-medium {
    grid-column: span 6;
}

.article-small {
    grid-column: span 4;
}

.article-sidebar {
    grid-column: span 4;
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-left: 2px solid var(--dark-gold);
}

.fun-facts {
    background: rgba(255, 255, 255, 0.8);
    border: 1px dashed var(--dark-gold);
    padding: 1rem;
    margin: 1rem 0;
    position: relative;
}

.fun-facts::before {
    content: '☆'; /* Stern-Symbol */
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f4e4bc;
    padding: 0 10px;
    color: var(--dark-gold);
    font-size: 1.2rem;
}

.jokes-section {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--gold);
    padding: 1rem;
    margin: 1rem 0;
    position: relative;
    transform: rotate(-1deg);
}

.jokes-section h3 {
    color: var(--dark-gold);
    text-align: center;
    margin-bottom: 1rem;
}

.joke {
    font-style: italic;
    margin: 0.5rem 0;
    padding-left: 1rem;
    border-left: 3px solid var(--gold);
}

.daily-news {
    background: rgba(255, 255, 255, 0.7);
    padding: 1rem;
    margin: 1rem 0;
    border-top: 2px solid var(--dark-gold);
    border-bottom: 2px solid var(--dark-gold);
}

.daily-news h3 {
    color: var(--dark-gold);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.news-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dotted var(--dark-gold);
}

.news-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.newspaper-section {
    padding: 2rem;
    background-color: #f4e4bc;
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(139, 69, 19, 0.2);
    font-family: 'Times New Roman', serif;
    position: relative;
    overflow: hidden;
}

/* Comic Styles */
.comic-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 3rem;
    background: #fff;
    background-color: var(--black);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cg fill='%23ffc107' fill-opacity='0.3'%3E%3Cpath d='M25.98,1.96l-24,13.856c-0.63,0.364-1.02,1.034-1.02,1.76v27.712c0,0.726,0.39,1.396,1.02,1.76l24,13.856 c0.63,0.364,1.41,0.364,2.04,0l24-13.856c0.63-0.364,1.02-1.034,1.02-1.76V17.576c0-0.726-0.39-1.396-1.02-1.76l-24-13.856 C27.39,1.596,26.61,1.596,25.98,1.96z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 40px 69.28px;
    background-position: 20px 0, -20px 34.64px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
    animation: comicFloat 3s ease-in-out infinite;
}

@keyframes comicFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.comic-container img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.comic-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, var(--gold) 49%, var(--gold) 51%, transparent 52%) 0 0/2em 2em,
        linear-gradient(-45deg, transparent 48%, var(--gold) 49%, var(--gold) 51%, transparent 52%) 1em 0/2em 2em;
    opacity: 0.07;
}

.comic-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gold);
}

/* Allgemeine Styling-Lösung für alle Logos */
.logo img {
    height: 85px !important;
    width: 85px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    object-fit: contain !important;
    object-position: center !important;
}

@media (max-width: 768px) {
    .main-nav {
        padding: 1rem;
    }
    .logo {
        gap: 0.5rem;
    }
    .logo img.header-comic-logo {
        border-radius: 10px;
        height: 50px !important;
        max-height: 50px !important;
    }
    .logo img {
        height: 55px;
    }
    .bayern-logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .main-nav {
        padding: 0.5rem;
    }
    .logo {
        gap: 0.3rem;
    }
    .logo img.header-comic-logo {
        border-radius: 10px;
        height: 40px !important;
        max-height: 40px !important;
    }
    .logo img {
        height: 45px;
    }
    .bayern-logo {
        height: 40px;
    }
}

.comic-section-logo {
    max-width: 300px;
    margin: -3rem auto 2rem;
    display: block;
    transform: rotate(-3deg);
    transition: transform 0.2s ease-out;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.comic-section-logo:hover {
    transform: rotate(3deg);
}

.comic-title {
    color: var(--dark-gold);
    font-size: 3.5rem;
    margin: 0;
    font-family: 'Bangers', 'Comic Sans MS', cursive;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding: 0.5rem 2rem;
    background: #fff;
    border: 3px solid var(--gold);
    border-radius: 15px;
    box-shadow: 5px 5px 0 var(--gold);
    transform: rotate(-2deg);
    text-shadow: 3px 3px 0 #fff, 6px 6px 0 var(--gold);
    transition: all 0.3s ease;
}

.comic-title:hover {
    transform: rotate(2deg) scale(1.05);
}

.comic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 3rem -1rem;
    position: relative;
    z-index: 1;
    padding: 2rem;
    background: linear-gradient(135deg, #fff8e7 0%, #ffe4b5 100%);
    border-radius: 15px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}

.comic-panel {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--gold);
    transition: all 0.2s ease-out;
    position: relative;
    transform: rotate(-1deg);
    padding: 0.4rem;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.comic-panel:hover {
    transform: scale(1.02) rotate(-1deg);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.comic-panel:nth-child(even) {
    transform: rotate(1deg);
}

.comic-panel:nth-child(even):hover {
    transform: scale(1.02) rotate(1deg);
}

.comic-panel img {
    margin: -0.4rem;
    margin-bottom: 0.4rem;
    width: calc(100% + 0.8rem);
    max-width: none;
}

.comic-panel .comic-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.4;
    color: #333;
    background: #fff;
    border-radius: 15px;
    border: 2px solid #ddd;
    margin: 0.5rem;
    position: relative;
    font-family: 'Comic Neue', 'Comic Sans MS', cursive;
}

.comic-panel .comic-text::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-left: 2px solid #ddd;
    border-top: 2px solid #ddd;
    transform: rotate(45deg);
}

.comic-panel h2, .comic-panel h3, .comic-panel p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.comic-panel:nth-child(even) {
    transform: rotate(1deg);
}

.comic-panel:hover {
    transform: translateY(-8px) rotate(0);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--dark-gold);
}

.comic-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border: 3px solid var(--gold);
    transition: transform 0.2s ease-out;
}

.comic-panel:hover .comic-image {
    transform: scale(1.02);
}


    border-color: var(--dark-gold);
    border-width: 4px;
}

.comic-text {
    padding: 1.5rem;
    background: #fff;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    min-height: 100px;
    display: flex;
    align-items: center;
    text-align: center;
    border-top: 2px solid var(--gold);
    font-family: Arial, sans-serif;
}



@media (max-width: 768px) {
    .newspaper-section {
        display: none;
    }

    .comic-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin: 1rem 0;
    }

    .comic-panel {
        margin-bottom: 2rem;
        transform: none !important;
    }

    .comic-panel:hover {
        transform: translateY(-5px) !important;
    }

    .comic-container {
        padding: 1.5rem;
    }

    .comic-title {
        font-size: 2rem;
        padding: 1rem;
    }

    .newspaper-section {
        padding: 1rem;
    }

    .articles-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .article-featured {
        grid-column: 1 / -1 !important;
        padding: 1.5rem;
        transform: none;
    }

    .article-medium,
    .article-small,
    .article-sidebar {
        grid-column: 1 / -1 !important;
        margin: 0.5rem 0;
        padding: 1rem;
    }

    .classified-ads {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 1rem;
    }

    .classified-ad {
        padding: 1rem;
        margin: 0.5rem 0;
    }
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 1.5rem;
    margin: 2rem 0;
}

.article-featured {
    grid-column: span 8;
    grid-row: span 2;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--dark-gold);
    padding: 2rem;
    border-radius: 8px;
    transform: rotate(-1deg);
    margin-bottom: 1rem;
}

.article-medium {
    grid-column: span 4;
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border: 1px solid var(--gold);
    border-radius: 6px;
    height: 100%;
}

.article-small {
    grid-column: span 3;
    background: rgba(255, 255, 255, 0.6);
    padding: 1rem;
    border: 1px dashed var(--gold);
    border-radius: 4px;
    height: 100%;
}

.article-wide {
    grid-column: span 6;
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-left: 4px solid var(--gold);
    height: 100%;
}

.article-tall {
    grid-row: span 2;
    grid-column: span 4;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 215, 0, 0.1));
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.article-special {
    transform: rotate(1deg);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.article-highlight {
    position: relative;
    overflow: hidden;
}

.article-highlight::before {
    content: '★';
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--gold);
    font-size: 24px;
    opacity: 0.5;
}

.newspaper-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/paper-texture.png');
    opacity: 0.1;
    pointer-events: none;
}

.newspaper-header {
    text-align: center;
    border-bottom: 2px double var(--dark-gold);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.newspaper-title {
    font-size: 3rem;
    color: var(--dark-gold);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.newspaper-date {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 1rem;
}

.newspaper-article {
    margin-bottom: 3rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--dark-gold);
    position: relative;
}

.article-header {
    margin-bottom: 1.5rem;
}

.article-title {
    font-size: 2rem;
    color: var(--dark-gold);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 0.5rem;
}

.article-subtitle {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 1rem;
}

.article-content {
    column-count: 2;
    column-gap: 2rem;
    text-align: justify;
    line-height: 1.6;
    color: var(--gray);
}

.article-image {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.article-quote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--dark-gold);
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
    margin: 1rem 0;
}

.classifieds-section {
    border-top: 2px solid var(--dark-gold);
    margin-top: 2rem;
    padding-top: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.classifieds-wrapper {
    position: relative;
    margin: 0 40px;
}

.classifieds-container {
    overflow: hidden;
}

.classifieds-track {
    display: flex;
    transition: transform 0.5s ease;
}

.classifieds-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
    min-width: 100%;
    flex: 0 0 100%;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: var(--dark-gold);
    color: white;
}

.nav-prev {
    left: -40px;
}

.nav-next {
    right: -40px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s;
}

.dot.active {
    opacity: 1;
}

.classifieds-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: var(--dark-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.classifieds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    font-family: 'Times New Roman', serif;
}

.classified-ad {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--dark-gold);
    padding: 0.8rem;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.classified-ad::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/paper-texture.png');
    opacity: 0.1;
    pointer-events: none;
}

.classified-ad h3 {
    color: var(--dark-gold);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    border-bottom: 1px dotted var(--gold);
    padding-bottom: 0.3rem;
}

.classified-ad p {
    margin: 0.5rem 0;
    line-height: 1.4;
}

.classified-ad .contact {
    font-style: italic;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    color: var(--gray);
}

.urgent-stamp {
    position: absolute;
    top: 5px;
    right: -15px;
    background: var(--gold);
    color: #fff;
    transform: rotate(15deg);
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    z-index: 1;
}

@media (max-width: 768px) {
    .article-content {
        column-count: 1;
    }
    
    .newspaper-title {
        font-size: 2rem;
    }

    .classifieds-grid {
        grid-template-columns: 1fr;
    }
}
.coming-soon .season-info li {
    background: #ffffff;
}

.coming-soon .season-info span {
    color: #000000;
    font-weight: normal;
}

.coming-soon .season-info h2 {
    color: #000000;
}

.coming-soon .season-info p {
    color: #000000;
}
.article-card {
    background: #ffffff;
}

.article-card h2, .article-card p, .article-preview h2, .article-preview p {
    color: #000000;
}

.article-preview {
    background: #ffffff;
}

.philosophy-item p {
    color: #000000;
}
.newspaper-section article {
    background: #ffffff;
}

.newspaper-section article h3, .newspaper-section article p {
    color: #000000;
}

.article-small, .article-medium, .article-wide, .article-featured {
    background: #ffffff;
}

.article-small h3, .article-medium h3, .article-wide h3, .article-featured h3,
.article-small p, .article-medium p, .article-wide p, .article-featured p {
    color: #000000;
}
body {
    color: var(--dark);
}

.article-section p, .info-section p {
    color: #000000;
}
:root {
    --dark: #000000;
    --light: #ffffff;
}
.newsletter {
    color: #ffffff !important;
    font-weight: bold;
}
.products-section .article-card {
    cursor: pointer;
}

.products-section .article-card.active {
    max-height: none;
    cursor: pointer;
}

/* Heilprodukte Section Styles */
#heilprodukte h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-family: 'Bangers', cursive;
    text-shadow: 2px 2px 0 #000, -2px 2px 0 #000, 2px -2px 0 #000, -2px -2px 0 #000;
    letter-spacing: 2px;
}

#heilprodukte > p {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 auto 2rem;
    max-width: 800px;
    color: #000;
    font-weight: 500;
}

@media (max-width: 480px) {
    .header-comic-logo {
        height: 45px !important;
        max-width: 70px !important;
    }
}

/* Comic Logo im Bee Comic */
.comic-logo {
    max-width: 200px;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 auto;
    display: block;
}

@media (max-width: 768px) {
    .comic-logo {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .comic-logo {
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .imprint-container {
        padding: 1.5rem;
        margin: 1rem;
        max-height: 35vh;
        border-radius: 10px;
    }
}

/* Season Info Container für Datenschutz */
.imprint-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    max-height: 40vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.imprint-container .season-info {
    width: 100%;
    margin: 0 auto 2rem;
    padding: 0;
}

.imprint-container .season-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.imprint-container .season-info h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--dark);
}

.imprint-container .season-info h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
    color: var(--dark);
}

.imprint-container .season-info p {
    margin: 1rem 0;
    line-height: 1.8;
    color: var(--dark);
    text-align: left;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .imprint-container .season-info {
        width: 100%;
        padding: 0;
    }
}
