    /* ================= CSS - landing.css ================= */

/* Inhaltsverzeichnis */
/* -------------------- */
/* 1.  THEME VARIABLEN */
/* 2.  ALLGEMEINES STYLING */
/* 3.  HERO SECTION */
/* 4.  WAS IST NEU SECTION */
/* 5.  CONTACT SECTION */
/* 6.  FOOTER */
/* 7.  DARK MODE TOGGLE */
/* 8.  COOKIE BANNER */
/* 9.  RESPONSIVE ADJUSTMENTS */
/* 10. DARK MODE ANPASSUNGEN */
/* -------------------- */

/* ================= 1. THEME VARIABLEN ================= */
:root {
    --bloodred: #A81802;
    --lowred: #A53942;
    --green: #4C956C;
    --grey: #7D7D7D;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F5F5;
    --text-primary: #333333;
    --text-secondary: #666666;
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 50px;
}

[data-theme="dark"] {
    --bg-primary: #121212;
    --bg-secondary: #1E1E1E;
    --text-primary: #FFFFFF;
    --text-secondary: #AAAAAA;
    --border-color: #333333;
}

/* ================= 2. ALLGEMEINES STYLING ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto-Light', sans-serif;
    background-color: #FFFFFF;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ================= 3. HERO SECTION ================= */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/Web/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-family: 'JosefinSlab-SemiBold', serif;
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--green); /* Änderung hier */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--lowred); /* Änderung hier */
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'JosefinSlab-SemiBold', serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--bloodred);
    color: white;
    border-color: var(--bloodred);
}

.btn-primary:hover {
    background-color: transparent;
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary); /* Änderung hier: von white zu var(--text-primary) */
    border-color: var(--text-primary); /* Änderung hier: von white zu var(--text-primary) */
}

.btn-secondary:hover {
    background-color: rgba(0, 0, 0, 0.1); /* Änderung hier: von rgba(255, 255, 255, 0.1) zu rgba(0, 0, 0, 0.1) */
    color: var(--text-primary); /* Änderung hier: Sicherheitshalber Farbe beim Hover auch anpassen */
}

[data-theme="dark"] .btn-secondary {
    color: white; /* Stellen Sie sicher, dass es im Dark Mode weiß bleibt */
    border-color: white;
}

[data-theme="dark"] .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ================= 4. WAS IST NEU SECTION ================= */
.whats-new {
    padding: 100px 20px;
    background-color: var(--bg-primary);
}

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

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.news-card {
    display: flex;
    background-color: var(--bg-secondary);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-card.featured {
    border-left: 4px solid var(--bloodred);
}

.news-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-color: var(--bloodred);
    color: white;
    width: 80px;
    text-align: center;
}

.day {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
}

.month {
    font-size: 1rem;
    text-transform: uppercase;
}

.news-content {
    padding: 20px;
    flex-grow: 1;
}

.news-title {
    font-family: 'JosefinSlab-SemiBold', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.news-excerpt {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-size: 0.8rem;
    padding: 3px 10px;
    background-color: rgba(168, 24, 2, 0.1);
    color: var(--bloodred);
    border-radius: 15px;
}

.see-all-news {
    text-align: center;
    margin-top: 30px;
}

/* ================= 5. CONTACT SECTION ================= */
.contact {
    padding: 100px 20px;
    background-color: var(--bg-secondary);
    text-align: center;
}

.section-title {
    text-align: center;
    font-family: 'JosefinSlab-SemiBold', serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--bloodred);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--bloodred);
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.contact-method {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 30px;
    background-color: var(--bg-primary);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--bloodred);
}

.contact-title {
    font-family: 'JosefinSlab-SemiBold', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.contact-info {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    color: var(--bloodred);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.contact-link:hover i {
    transform: translateX(5px);
}

/* ================= 6. FOOTER ================= */
.footer {
    padding: 50px 20px;
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 30px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--bloodred);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--bloodred);
    transform: translateY(-5px);
}

.copyright {
    color: #777;
    font-size: 0.9rem;
}


/* ================= 8. COOKIE BANNER ================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    padding: 20px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

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

.cookie-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'JosefinSlab-SemiBold', serif;
    transition: all 0.3s ease;
}

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

.cookie-button.reject {
    background-color: #ccc;
    color: #333;
}

/* ================= 9. RESPONSIVE ADJUSTMENTS ================= */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .contact-method {
        width: 100%;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .btn {
        width:100%;
    margin-bottom: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .news-date {
        width: 60px;
    }
    
    .day {
        font-size: 1.5rem;
    }
    
    .month {
        font-size: 0.8rem;
    }
    
    .news-title {
        font-size: 1.1rem;
    }
}

/* ================= 10. DARK MODE ANPASSUNGEN ================= */
/* Explizite Dark Mode Anpassungen für den Body */
[data-theme="dark"] body {
    background-color: #121212 !important;
    color: #FFFFFF;
}

/* Explizite Dark Mode Anpassungen für Hero Section */
[data-theme="dark"] .hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/Web/hero-bg.jpg');
}

/* Explizite Dark Mode Anpassungen für News Section */
[data-theme="dark"] .whats-new {
    background-color: #121212;
}

[data-theme="dark"] .news-card {
    background-color: #1E1E1E;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
}

[data-theme="dark"] .news-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .news-card.featured {
    border-left: 4px solid var(--bloodred);
}

[data-theme="dark"] .news-title {
    color: #FFFFFF;
}

[data-theme="dark"] .news-excerpt {
    color: #AAAAAA;
}

[data-theme="dark"] .tag {
    background-color: rgba(168, 24, 2, 0.3);
    color: #FFFFFF;
}

/* Explizite Dark Mode Anpassungen für Contact Section */
[data-theme="dark"] .contact {
    background-color: #1E1E1E;
}

[data-theme="dark"] .contact-method {
    background-color: #2A2A2A;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
}

[data-theme="dark"] .contact-method:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .contact-title {
    color: #FFFFFF;
}

[data-theme="dark"] .contact-info {
    color: #AAAAAA;
}

[data-theme="dark"] .contact-link {
    color: var(--lowred);
}

/* Explizite Dark Mode Anpassungen für Buttons */
[data-theme="dark"] .btn-outline {
    color: var(--lowred);
    border-color: var(--lowred);
}

[data-theme="dark"] .btn-outline:hover {
    background-color: var(--lowred);
    color: #FFFFFF;
}

/* Cookie Banner im Dark Mode */
[data-theme="dark"] .cookie-banner {
    background-color: #1E1E1E;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    border-top: 1px solid #333333;
}

[data-theme="dark"] .cookie-button.reject {
    background-color: #444444;
    color: #FFFFFF;
}

/* Allgemeine Text-Anpassungen für Dark Mode */
[data-theme="dark"] h1, 
[data-theme="dark"] h2, 
[data-theme="dark"] h3 {
    color: #FFFFFF;
}

[data-theme="dark"] p {
    color: #AAAAAA;
}

[data-theme="dark"] .section-title {
    color: var(--lowred);
}

[data-theme="dark"] .section-title::after {
    background-color: var(--lowred);
}

/* Typewriter Text-Highlight mit guter Lesbarkeit in beiden Modi */
.hero-title .code-highlight {
    color: #A81802;  /* Dunkleres Rot */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Dezenter Schatten für Lesbarkeit */
    font-weight: bold;
}

[data-theme="dark"] .hero-title .code-highlight {
    color: #FF4500; /* Helleres Orange-Rot für Dark Mode */
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7); /* Stärkerer Schatten im Dark Mode */
}
/* Coming Soon Section */
.coming-soon {
    padding: 100px 20px;
    background-color: var(--bg-primary);
}



/* Pix Teaser Section */
.pix-teaser {
    background-color: var(--bg-secondary);
    padding: 80px 20px;
    text-align: center;
    border-radius: 12px;
    margin-top: 60px; /* Abstand zu vorheriger Section */
    margin-bottom: 60px; /* Abstand zur nächsten Section */
}

.pix-teaser-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.pix-teaser-text {
    flex: 1;
    text-align: left;
}

.pix-teaser h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.pix-teaser p {
    font-size: 1.1em;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.pix-teaser-image {
    flex: 1;
    max-width: 400px;
}

.pix-teaser-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Media Queries */
@media (max-width: 768px) {
    .pix-teaser-content {
        flex-direction: column;
        text-align: center;
    }
    .pix-teaser-text {
        text-align: center;
    }
    .pix-teaser-image {
        max-width: 100%;
    }
    .pix-teaser h2 {
        font-size: 2em;
    }
}

/* Besucherzahlen Teaser Section */
.visitor-teaser {
    background-color: var(--bg-secondary);
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.visitor-teaser-content {
    max-width: 800px;
    margin: 0 auto;
}

.visitor-teaser h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.visitor-teaser p {
    font-size: 1.1em;
    color: var(--text-secondary);
    line-height: 1.6;
}

#total-visitors {
    font-weight: bold;
    color: var(--bloodred);
}

/* Media Queries (optional) */
@media (max-width: 768px) {
    .visitor-teaser h2 {
        font-size: 1.7em;
    }
}


/* Kundenreferenzen Teaser Section */
.references-teaser {
    background-color: var(--bg-secondary);
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.references-teaser-content {
    max-width: 900px;
    margin: 0 auto;
}

.references-teaser h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.references-teaser p {
    font-size: 1.1em;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.reference-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.reference-logos img {
    max-height: 80px; /* Passe die Höhe nach Bedarf an */
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.reference-logos img:hover {
    opacity: 1;
}

/* Testimonials (optional) */
.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.testimonial {
    background-color: var(--bg-primary);
    border-left: 4px solid var(--lowred);
    padding: 20px;
    font-style: italic;
    text-align: left;
    max-width: 400px;
}

.testimonial cite {
    display: block;
    text-align: right;
    font-style: normal;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* Media Queries (optional) */
@media (max-width: 768px) {
    .references-teaser h2 {
        font-size: 1.7em;
    }
    .reference-logos {
        gap: 20px;
    }
}

/* ================= DARK MODE ANPASSUNGEN (HELLER MODUS) ================= */

/* Diese Styles stellen sicher, dass die Elemente im Hellen Modus korrekt dargestellt werden,
   auch wenn der Browser oder ein anderes Skript versucht, Dark-Mode-Styles anzuwenden. */

/* Explizite Styles für den Body im Hellen Modus (eigentlich redundant, aber zur Sicherheit) */
:root:not([data-theme="dark"]) body,
[data-theme="light"] body {
    background-color: #FFFFFF !important;
    color: #333333;
}

/* Explizite Styles für die Hero Section im Hellen Modus */
:root:not([data-theme="dark"]) .hero-bg,
[data-theme="light"] .hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/Web/hero-bg.jpg');
}

:root:not([data-theme="dark"]) .hero-title,
[data-theme="light"] .hero-title {
    color: var(--green); /* Oder #fff, je nach Design */
}

:root:not([data-theme="dark"]) .hero-subtitle,
[data-theme="light"] .hero-subtitle {
    color: var(--lowred); /* Oder #fff, je nach Design */
}

/* Explizite Styles für die News Section im Hellen Modus */
:root:not([data-theme="dark"]) .whats-new,
[data-theme="light"] .whats-new {
    background-color: var(--bg-primary); /* #FFFFFF */
}

:root:not([data-theme="dark"]) .news-card,
[data-theme="light"] .news-card {
    background-color: var(--bg-secondary); /* #F5F5F5 */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: none; /* Oder eine andere Standard-Border, falls vorhanden */
}

:root:not([data-theme="dark"]) .news-card:hover,
[data-theme="light"] .news-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

:root:not([data-theme="dark"]) .news-title,
[data-theme="light"] .news-title {
    color: var(--text-primary); /* #333333 */
}

:root:not([data-theme="dark"]) .news-excerpt,
[data-theme="light"] .news-excerpt {
    color: var(--text-secondary); /* #666666 */
}

:root:not([data-theme="dark"]) .tag,
[data-theme="light"] .tag {
    background-color: rgba(168, 24, 2, 0.1);
    color: var(--bloodred);
}

/* Explizite Styles für die Contact Section im Hellen Modus */
:root:not([data-theme="dark"]) .contact,
[data-theme="light"] .contact {
    background-color: var(--bg-secondary); /* #F5F5F5 */
}

:root:not([data-theme="dark"]) .contact-method,
[data-theme="light"] .contact-method {
    background-color: var(--bg-primary); /* #FFFFFF */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: none; /* Oder Standard-Border */
}

:root:not([data-theme="dark"]) .contact-method:hover,
[data-theme="light"] .contact-method:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

:root:not([data-theme="dark"]) .contact-title,
[data-theme="light"] .contact-title {
    color: var(--text-primary); /* #333333 */
}

:root:not([data-theme="dark"]) .contact-info,
[data-theme="light"] .contact-info {
    color: var(--text-secondary); /* #666666 */
}

:root:not([data-theme="dark"]) .contact-link,
[data-theme="light"] .contact-link {
    color: var(--bloodred);
}

/* Explizite Styles für Buttons im Hellen Modus */
:root:not([data-theme="dark"]) .btn-outline,
[data-theme="light"] .btn-outline {
    color: var(--bloodred);
    border-color: var(--bloodred);
}

:root:not([data-theme="dark"]) .btn-outline:hover,
[data-theme="light"] .btn-outline:hover {
    background-color: var(--bloodred);
    color: #FFFFFF;
}

/* Explizite Styles für den Cookie Banner im Hellen Modus */
:root:not([data-theme="dark"]) .cookie-banner,
[data-theme="light"] .cookie-banner {
    background-color: var(--bg-primary); /* #FFFFFF */
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    border-top: none; /* Oder Standard-Border */
}

:root:not([data-theme="dark"]) .cookie-button.reject,
[data-theme="light"] .cookie-button.reject {
    background-color: #ccc;
    color: #333;
}

/* Explizite Styles für allgemeine Textelemente im Hellen Modus */
:root:not([data-theme="dark"]) h1,
:root:not([data-theme="dark"]) h2,
:root:not([data-theme="dark"]) h3,
[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3 {
    color: var(--text-primary); /* #333333 */
}

:root:not([data-theme="dark"]) p,
[data-theme="light"] p {
    color: var(--text-secondary); /* #666666 */
}

:root:not([data-theme="dark"]) .section-title,
[data-theme="light"] .section-title {
    color: var(--bloodred);
}

:root:not([data-theme="dark"]) .section-title::after,
[data-theme="light"] .section-title::after {
    background-color: var(--bloodred);
}

/* Typewriter Text-Highlight im Hellen Modus */
:root:not([data-theme="dark"]) .hero-title .code-highlight,
[data-theme="light"] .hero-title .code-highlight {
    color: #A81802;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Coming Soon Section */
.coming-soon {
    padding: 100px 20px;
    background-color: var(--bg-primary);
}

.coming-soon-actions {
    text-align: center; /* Zentriert den Button horizontal */
    margin-top: 30px; /* Optional: Fügt Abstand zum vorherigen Inhalt hinzu */
}

/* Styles für "Alle kommenden Projekte" Button */
.coming-soon-actions .btn-primary {
    background-color: var(--green);
    color: white;
    border-color: var(--green);
}

.coming-soon-actions .btn-primary:hover {
    background-color: transparent;
    color: var(--green);
}

/* Dark Mode Styles für "Alle kommenden Projekte" Button */
[data-theme="dark"] .coming-soon-actions .btn-primary {
    background-color: var(--green); /* Behält die Farbe bei */
    color: white;
    border-color: var(--green);
}

[data-theme="dark"] .coming-soon-actions .btn-primary:hover {
    background-color: transparent;
    color: var(--green);
}

Absolut! Hier sind die CSS-Styles, die sicherstellen, dass deine "Pix Teaser" Section sowohl im hellen als auch im dunklen Modus gut aussieht.

CSS

/* Pix Teaser Section */
.pix-teaser {
    background-color: var(--bg-secondary);
    padding: 80px 20px;
    text-align: center;
    border-radius: 12px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.pix-teaser-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.pix-teaser-text {
    flex: 1;
    text-align: left;
}

.pix-teaser h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.pix-teaser p {
    font-size: 1.1em;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.pix-teaser-image {
    flex: 1;
    max-width: 400px;
}

.pix-teaser-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pix-teaser .btn-primary { /* Stil für den Button innerhalb der Pix Teaser Section */
    background-color: var(--bloodred);
    color: white;
    border-color: var(--bloodred);
}

.pix-teaser .btn-primary:hover {
    background-color: transparent;
    color: var(--bloodred);
}

/* Media Queries */
@media (max-width: 768px) {
    .pix-teaser-content {
        flex-direction: column;
        text-align: center;
    }

    .pix-teaser-text {
        text-align: center;
    }

    .pix-teaser-image {
        max-width: 100%;
    }

    .pix-teaser h2 {
        font-size: 2em;
    }
}

/* Dark Mode Styles */
[data-theme="dark"] .pix-teaser {
    background-color: var(--bg-secondary); /* #1E1E1E */
}

[data-theme="dark"] .pix-teaser h2 {
    color: var(--text-primary); /* #FFFFFF */
}

[data-theme="dark"] .pix-teaser p {
    color: var(--text-secondary); /* #AAAAAA */
}

[data-theme="dark"] .pix-teaser .btn-primary { /* Dark Mode Stil für den Button */
    background-color: var(--bloodred);
    color: white;
    border-color: var(--bloodred);
}

[data-theme="dark"] .pix-teaser .btn-primary:hover {
    background-color: transparent;
    color: var(--bloodred);
}

.pix-teaser .btn-primary { /* Stil für den Button innerhalb der Pix Teaser Section */
    background-color: var(--bloodred);
    color: white;
    border-color: var(--bloodred);
}

.pix-teaser .btn-primary:hover {
    background-color: transparent;
    color: var(--bloodred);
}

/* Dark Mode Styles */
[data-theme="dark"] .pix-teaser .btn-primary { /* Dark Mode Stil für den Button */
    background-color: var(--bloodred);
    color: white;
    border-color: var(--bloodred);
}

[data-theme="dark"] .pix-teaser .btn-primary:hover {
    background-color: transparent;
    color: var(--bloodred);
}