/* ============================= */
/* === Global / Base Styles ==== */
/* ============================= */

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    margin: 0;
    background-color: #000;
    color: #eee;
    font-family: 'faricy-new-web', sans-serif;
    padding-top: 67.6px;
}

a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

main,
section,
.hero-content,
.brands,
.testimonial,
.youtube-promo {
    text-shadow: 1px 1px 2px #000;
    -webkit-text-stroke: 0.4px #000;
}


/* ============================= */
/* === Scroll to Top Button ==== */
/* ============================= */

#scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
    background-color: #FFD700;
    color: #000;
    border: none;
    border-radius: 50%;
    padding: 0.6rem 0.8rem;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 0 10px #000;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollToTop:hover {
    transform: scale(1.15);
    background-color: #fffacd;
}


/* ============================= */
/* ========= Header ============ */
/* ============================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #111;
    padding: 1rem 2rem;
    flex-wrap: wrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(to right, #00cc66, #e60000, #0066ff) 1;
    border-image-slice: 1;
    box-sizing: border-box;
    overflow-x: hidden;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'worker-3d', sans-serif;
    line-height: 1;
}

.logo-icon {
    width: 28px;
    height: auto;
    margin-right: 0.6rem;
    margin-left: -0.99rem;
}

.logo-richistyle {
    color: silver;
    -webkit-text-stroke: 0.5px black;
    text-rendering: optimizeLegibility;
}

.logo-007 {
    color: #FFD700;
    -webkit-text-stroke: 0.5px black;
    margin-left: 0.3rem;
    text-rendering: optimizeLegibility;
}


/* ============================= */
/* ======= Navigation ========== */
/* ============================= */

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    margin-right: 3rem;
}

nav li {
    display: flex;
    align-items: center;
}

nav a {
    color: #eeeeee;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s ease, text-shadow 0.2s ease, color 0.2s ease;
}

nav a:hover {
    transform: scale(1.06);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Farbige Hover-Effekte pro Abteilung */
.nav-michel:hover {
    color: #00cc66 !important;
    text-shadow: 0 0 10px #00cc66;
}

.nav-television:hover {
    color: #e60000 !important;
    text-shadow: 0 0 10px #e60000;
}

.nav-cinema:hover {
    color: #0066ff !important;
    text-shadow: 0 0 10px #0066ff;
}

/* Default Hover für sonstige Links */
nav a:not(.nav-michel):not(.nav-television):not(.nav-cinema):hover {
    color: #FFD700;
}


/* ============================= */
/* ===== Suche & Sprache ======= */
/* ============================= */

.header-search {
    position: relative;
    display: flex;
    align-items: center;
}

.search-toggle {
    background: none;
    border: none;
    color: #eee;
    font-size: 1.2rem;
    cursor: pointer;
    margin-right: 0.3rem;
    transition: color 0.3s ease;
}

.search-toggle:hover {
    color: #FFD700;
}

#search-input {
    width: 0;
    padding: 0.4rem 0;
    opacity: 0;
    border: none;
    background-color: #222;
    color: #eee;
    font-size: 0.9rem;
    border-radius: 5px;
    transition: width 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    overflow: hidden;
}

#search-input.visible {
    width: 160px;
    opacity: 1;
    padding: 0.4rem 0.7rem;
}

.language-switch {
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Fortsetzung folgt… */
/* ================================
   ✦ Global Settings & Defaults ✦
=================================== */

html {
    scroll-behavior: smooth;
}

html,
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    margin: 0;
    background-color: #000;
    color: #eee;
    font-family: 'faricy-new-web', sans-serif;
    padding-top: 67.6px;
}

a {
    color: #eeeeee;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffffff;
}

/* =====================
   ✦ Scroll-to-Top ✦
====================== */

#scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
    background-color: #FFD700;
    color: #000;
    border: none;
    border-radius: 50%;
    padding: 0.6rem 0.8rem;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 0 10px #000;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollToTop:hover {
    transform: scale(1.15);
    background-color: #fffacd;
}

/* =====================
   ✦ Intro Overlay ✦
====================== */

#introOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 1s ease-out 2.5s forwards;
}

#introLogo {
    width: 150px;
    animation: logoZoom 2s ease-out forwards;
}

/* =====================
   ✦ Header ✦
====================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #111;
    padding: 1rem 2rem;
    flex-wrap: wrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(to right, #00cc66, #e60000, #0066ff) 1;
    border-image-slice: 1;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'worker-3d', sans-serif;
    line-height: 1;
}

.logo-icon {
    width: 28px;
    height: auto;
    margin-right: 0.6rem;
    margin-left: -0.99rem;
}

.logo-richistyle {
    color: silver;
    -webkit-text-stroke: 0.5px black;
}

.logo-007 {
    color: #FFD700;
    -webkit-text-stroke: 0.5px black;
    margin-left: 0.3rem;
}

/* =====================
   ✦ Navigation ✦
====================== */

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    margin-right: 3rem;
}

nav a {
    color: #eeeeee;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s ease, text-shadow 0.2s ease, color 0.2s ease;
}

nav a:hover {
    transform: scale(1.06);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

nav a:not(.nav-michel):not(.nav-television):not(.nav-cinema):hover {
    color: #FFD700;
}

nav a.nav-michel:hover {
    color: #00cc66 !important;
    text-shadow: 0 0 10px #00cc66;
}

nav a.nav-television:hover {
    color: #e60000 !important;
    text-shadow: 0 0 10px #e60000;
}

nav a.nav-cinema:hover {
    color: #0066ff !important;
    text-shadow: 0 0 10px #0066ff;
}

/* Responsive Burger */
.burger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #eee;
}

@media (max-width: 768px) {
    .burger {
        display: block;
    }

    nav {
        display: none;
    }

    nav.open {
        display: block;
        width: 100%;
        background-color: #111;
    }

    nav ul {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
}

/* ========== weitere Bereiche folgen hier ========== */
/* ==========================================================================
   1. Grundlegende Einstellungen & Typografie
   ========================================================================== */

/* Globales Verhalten */
html {
    scroll-behavior: smooth;
}

html,
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Basis-Layout */
body {
    margin: 0;
    background-color: #000000;
    color: #eeeeee;
    font-family: 'faricy-new-web', sans-serif;
    padding-top: 67.6px;
    /* Höhe des fixierten Headers ausgleichen */
}

a {
    color: #eeeeee;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffffff;
}

main,
section,
.hero-content,
.brands,
.testimonial,
.youtube-promo {
    text-shadow: 1px 1px 2px #000;
    -webkit-text-stroke: 0.4px #000;
}

/* ==========================================================================
   2. Header & Navigation
   ========================================================================== */

/* Header-Container */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #111;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(to right, #00cc66, #e60000, #0066ff) 1;
    border-image-slice: 1;
    box-sizing: border-box;
    flex-wrap: wrap;
    max-width: 100%;
    overflow-x: hidden;
}

/* Header-Bereiche */
.header-left,
.header-center,
.header-right {
    display: flex;
    align-items: center;
}

.header-left {
    gap: 0.6rem;
}

.header-center {
    justify-content: center;
    flex: 1;
}

.header-right {
    gap: 1rem;
    flex-shrink: 0;
    flex-wrap: wrap;
    max-width: 100%;
    overflow: hidden;
}

/* Burger-Menü für Mobile */
.burger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #eee;
}

@media (max-width: 768px) {
    .burger {
        display: block;
    }

    nav {
        display: none;
    }

    nav.open {
        display: block;
        width: 100%;
        background-color: #111;
    }

    nav ul {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding-top: 1rem;
    }

    .language-switch {
        width: 100%;
        text-align: left;
    }
}

/* Logo-Stil */
.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'worker-3d', sans-serif;
    line-height: 1;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 28px;
    height: auto;
    margin-right: 0.6rem;
    margin-left: -0.99rem;
}

.logo-richistyle {
    color: silver;
    -webkit-text-stroke: 0.5px black;
    font-family: 'worker-3d', sans-serif;
    text-rendering: optimizeLegibility;
}

.logo-007 {
    color: #FFD700;
    margin-left: 0.3rem;
    -webkit-text-stroke: 0.5px black;
    font-family: 'worker-3d', sans-serif;
    text-rendering: optimizeLegibility;
}

/* Navigationsliste */
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    margin-right: 3rem;
}

nav li {
    display: flex;
    align-items: center;
}

nav a {
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s ease, text-shadow 0.2s ease, color 0.2s ease;
    color: #eeeeee;
}

nav a:hover {
    transform: scale(1.06);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Farbige Hover-Effekte */
nav a.nav-michel:hover {
    color: #00cc66 !important;
    text-shadow: 0 0 10px #00cc66;
}

nav a.nav-television:hover {
    color: #e60000 !important;
    text-shadow: 0 0 10px #e60000;
}

nav a.nav-cinema:hover {
    color: #0066ff !important;
    text-shadow: 0 0 10px #0066ff;
}

/* Standard-Gold-Hover */
nav a:not(.nav-michel):not(.nav-television):not(.nav-cinema):hover {
    color: #FFD700;
}

/* Aktiver Link */
nav a.active {
    border-bottom: 2px solid #FFD700;
    font-weight: bold;
}

/* Spracheinstellung */
.language-switch {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    font-size: 0.95rem;
}

/* Zentrierte Navigation */
.nav-centered {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .nav-centered {
        position: static;
        transform: none;
    }
}

/* ==========================================================================
   3. Hero-Bereich (Startseite)
   ========================================================================== */

/* Hero-Hintergrund und Layout */
.hero {
    height: 76.5vh;
    /* 80% der Bildschirmhöhe */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("images/background.png") center/cover no-repeat;
}

/* Hero-Inhalt Container */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Haupttitel */
.hero-title {
    position: relative;
    top: -280px;
    margin-bottom: 0.3rem;
    font-size: 4rem;
    line-height: 1.2;
    font-family: 'worker-3d', sans-serif;
    color: #fff;
    animation: slideInTitle 1.2s ease-out forwards;
    opacity: 0;
}

/* Markentitel */
.hero-brand {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    display: inline-block;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .hero-brand {
        font-size: 2.8rem;
    }
}

/* Logo */
.hero-logo {
    width: 550px;
    max-width: 100%;
    margin-bottom: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInLogo 2s ease-out forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

/* Glanzanimation über Logo */
.hero-logo::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
    animation: logoShine 3s infinite;
    z-index: 1;
}

/* Taglines Wrapper */
.hero-tagline-wrapper {
    margin-top: -270px;
}

/* Taglines */
.hero-tagline {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'faricy-new-web', sans-serif;
    transition: text-shadow 0.3s ease, color 0.3s ease;
    position: relative;
    z-index: 2;
    font-variant: small-caps;
}

.hero-tagline:hover {
    color: #fff;
    text-shadow: 0 0 10px #aaa, 0 0 20px #ccc;
}

.tagline-1 {
    margin-bottom: 0.5rem;
}

.tagline-2 {
    margin-bottom: 2;
}

.hero-button-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hero-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(90deg, #444444, #777777);
    background-size: 200%;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-position 0.5s ease, color 0.3s ease;
}

.hero-button:hover {
    background: linear-gradient(90deg, #FFD700, #fffac0);
    color: #111;
}

/* Link-Stil im Hero-Bereich */
.hero-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: transform 0.2s ease;
}

.hero-link:hover {
    transform: scale(1.07);
}

/* Silbernes Leuchten für RICHISTYLE */
.hero-link:hover .logo-richistyle {
    text-shadow:
        0 0 10px #cccccc,
        0 0 20px #cccccc,
        0 0 30px #ffffff;
}

/* Goldenes Leuchten für 007 */
.hero-link:hover .logo-007 {
    text-shadow:
        0 0 10px #FFD700,
        0 0 20px #FFD700,
        0 0 30px #ffea8a;
}

/* ==========================================================================
   4. CTA-Button (Call to Action)
   ========================================================================== */

.cta-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #444444, #777777);
    background-size: 200%;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    transition: background-position 0.5s ease;
}

.cta-button:hover {
    background: linear-gradient(90deg, #999999, #cccccc);
    color: #111;
}

/* Glanzstreifen beim Hover */
.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
    animation: buttonShine 2.5s infinite;
}

/* Gold-Stil bei Hover (globale Ergänzung) */
.cta-button:hover {
    background: linear-gradient(90deg, #FFD700, #fffac0);
}

/* Glanzeffekt angepasst */
.cta-button::before {
    background: rgba(255, 215, 0, 0.3);
}


/* ==========================================================================
   5. Animationen (Hero + CTA)
   ========================================================================== */

@keyframes fadeInLogo {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInTitle {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes buttonShine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

@keyframes logoShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes logoZoom {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* ==========================================================================
   6. MARKENÜBERSICHT – Im Stil des News-Bereichs
   ========================================================================== */
.brands {
    padding: 2rem;
    background-color: #111;
    color: #eee;
    text-align: center;
}

.brands h2 {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 2rem;
}

.brand-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.brand-card {
    background-color: #1c1c1c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    width: 400px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.2);
}

.brand-card img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.brand-card h3 {
    font-size: 1.2rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
    text-align: center;

}

.brand-card p {
    font-size: 1rem;
    color: #ccc;
    font-weight: bold;
    text-align: center;

}

/* Button-Stil (übernimmt News-Design) */
.news-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.news-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(90deg, #444444, #777777);
    background-size: 200%;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-position 0.5s ease, color 0.3s ease;
    text-align: center;
}

.news-button:hover {
    background: linear-gradient(90deg, #FFD700, #fffac0);
    color: #111;
}

.brand-thumbnail {
    width: 50px;
    height: auto;
    margin: 0.5rem auto;
    display: block;
}

/* ==========================================================================
   7. Farbige Rahmen für Markenbereiche
   ========================================================================== */

/* Michel – grün */
.brand-card.michel {
    border: 2px solid #00cc66;
}

.brand-card.michel:hover {
    box-shadow: 0 0 15px rgba(0, 204, 102, 0.6);
}

/* Television – rot */
.brand-card.television {
    border: 2px solid #e60000;
}

.brand-card.television:hover {
    box-shadow: 0 0 15px rgba(230, 0, 0, 0.6);
}

/* Cinema – blau */
.brand-card.cinema {
    border: 2px solid #0066ff;
}

.brand-card.cinema:hover {
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.6);
}

/* Optional: zusätzlicher Gold-Rahmen (global) */
.brand-card {
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.brand-subtitle {
    font-weight: bold;
    font-size: 0.85rem;
    color: #eee;
    text-align: center;
    margin-bottom: 1rem;
}

/* ==========================================================================
   8. Testimonial – Zitat / Motto
   ========================================================================== */

.testimonial {
    background-color: #000;
    padding: 3rem 2rem;
    text-align: center;
    font-style: italic;
}

.testimonial blockquote {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
    font-family: 'worker-3d', sans-serif;
}

.testimonial p {
    color: #888;
    margin: 0;
}

/* ==========================================================================
   9. News-Bereich – Neuigkeiten / Updates
   ========================================================================== */

/* === NEWS & UPDATES NEU === */
.news-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    background-color: #111;
    color: #eee;
    text-align: center;
}

.news-section h2 {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 2rem;
    /*outline: 2px dashed red;*/
}

.news-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.news-card {
    background-color: #1c1c1c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    width: 100%;
    max-width: 400px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

/* Hover-Effekte pro Abteilung */
.news-card.michel:hover {
    transform: scale(1.03);
    box-shadow: 0 0 10px rgba(0, 204, 102, 0.5);
    /* Grün */
}

.news-card.television:hover {
    transform: scale(1.03);
    box-shadow: 0 0 10px rgba(230, 0, 0, 0.5);
    /* Rot */
}

.news-card.cinema:hover {
    transform: scale(1.03);
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
    /* Blau */
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.5rem;
    align-items: center;
    /* 🧠 sorgt für vertikale Ausrichtung */

}

.news-date {
    font-weight: bold;
    font-size: 0.85rem;
    /* z. B. leicht größer als .news-meta */
    color: #eee;
    /* optional heller als Kategorie */
}

.news-title {
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.news-summary {
    font-size: 1rem;
    color: #ccc;
    font-weight: bold;

}

/* ===== News Card Hover Colors by Brand ===== */
.news-card.news-cinema:hover {
    transform: scale(1.03);
    box-shadow: 0 0 12px rgba(0, 102, 255, 0.6);
    border: 1px solid #0066ff;
}

.news-card.news-television:hover {
    transform: scale(1.03);
    box-shadow: 0 0 12px rgba(230, 0, 0, 0.6);
    border: 1px solid #e60000;
}

.news-card.news-michel:hover {
    transform: scale(1.03);
    box-shadow: 0 0 12px rgba(0, 204, 102, 0.6);
    border: 1px solid #00cc66;
}

/* Optional: Standard für alle News-Cards */
.news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    text-align: left;
    /* Behalte normale Ausrichtung */
}

/* === Farbige Abteilungsnamen in News === */
.news-card .news-category {
    font-weight: bold;
}

/* Cinema: Blau */
.news-cinema .news-category {
    color: #0066ff;
}

/* Television: Rot */
.news-television .news-category {
    color: #e60000;
}

/* Michel: Grün */
.news-michel .news-category {
    color: #00cc66;
}

.news-platform {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 1rem;
}

/* Button-Stil */
.news-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(90deg, #444444, #777777);
    /* wie im Hero */
    background-size: 200%;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-position 0.5s ease, color 0.3s ease;
    text-align: center;
}

.news-button:hover {
    background: linear-gradient(90deg, #FFD700, #fffac0);
    /* Gold wie im Hero */
    color: #111;
}

.news-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

/* ==========================================================================
   10. Call-to-Action Buttons (z. B. „Jetzt entdecken“)
   ========================================================================== */

.cta-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #444444, #777777);
    background-size: 200%;
    transition: background-position 0.5s ease, color 0.3s ease;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    font-family: 'faricy-new-web', sans-serif;
}

.cta-button:hover {
    background: linear-gradient(90deg, #FFD700, #fffac0);
    color: #111;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
    animation: buttonShine 2.5s infinite;
}

@keyframes buttonShine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}


/* ==========================================================================  
   11. Finaler Footer – Zentriert mit vertikalen & horizontaler Trennlinie  
   ========================================================================== */

footer {
    background-color: #111;
    color: #888;
    font-size: 0.9rem;
    text-align: initial;
    border-top: 4px solid transparent;
    border-image: linear-gradient(to right, #00cc66, #e60000, #0066ff);
    border-image-slice: 1;
    box-sizing: border-box;
}

/* Wrapper für alles */
.footer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Sichtbarer Bereich für Spalten + horizontale Linie */
.footer-columns {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Drei-Spalten-Container */
.footer-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    padding: 0 2rem;
    flex-wrap: nowrap;
}

/* Vertikale Trennlinien */
.divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    align-self: stretch;
}

/* Horizontale Linie unterhalb der Spalten */
.footer-line {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    width: 100%;
    max-width: none;
    margin-top: 2rem;
}

/* Footer-Sektion */
.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    white-space: nowrap;
    height: fit-content;
}

/* Titel (Richistyle 007) */
.footer-brand {
    font-family: 'worker-3d', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1.4rem;
    line-height: 1.2;
}

.footer-brand .logo-richistyle {
    color: silver;
    -webkit-text-stroke: 0.4px black;
}

.footer-brand .logo-007 {
    color: #FFD700;
    margin-left: 0.3rem;
    -webkit-text-stroke: 0.4px black;
}

/* Spaltenüberschriften */
.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
    font-family: 'worker-3d', sans-serif;
    -webkit-text-stroke: 0.4px black;
    line-height: 1.2;
}

/* Listen */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

/* Kontakt-Links */
.footer-section p a {
    color: #ccc;
    text-decoration: underline;
}

.footer-section p a:hover {
    color: #FFD700;
}

/* Social Media Gruppen */
.social-groups {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
}

.social-group h4 {
    font-size: 1rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.social-group a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #eee;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
}

.social-group a:hover {
    color: #FFD700;
}

.social-group a img {
    width: 20px;
    height: 20px;
    filter: invert(70%);
    transition: filter 0.3s;
}

.social-group a:hover img {
    filter: invert(100%);
}

/* Copyright */
.footer-bottom {
    width: 100%;
    max-width: fit-content;
    margin: 2rem auto 0;
    padding: 0;
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    /* Abstand zwischen Linien und Text */
}

.footer-line-top,
.footer-line-bottom {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    margin: 0;
}

.footer-logo-icon {
    height: 20px;
    vertical-align: middle;
    margin: 0 0.4rem;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .divider {
        display: none;
    }

    .footer-section {
        align-items: center;
        text-align: center;
    }

    .social-groups {
        flex-direction: column;
        align-items: center;
    }

    .footer-line {
        width: 90%;
    }
}

/* ==========================================================================
   12. Animationen & Spezialeffekte
   ========================================================================== */

/* === Logo Shine Animation === */
@keyframes logoShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* === Hero Logo Fade In === */
@keyframes fadeInLogo {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* === Hero Titel Slide In === */
@keyframes slideInTitle {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Glänzender CTA-Button Effekt === */
@keyframes buttonShine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

/* === Zoom-Effekt beim Logo im Intro === */
@keyframes logoZoom {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

/* === Ausblenden des Overlays === */
@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* ==========================================================================
   13. Medienabfragen & Responsive Design
   ========================================================================== */

/* === Responsives Verhalten für Header & Navigation === */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .burger {
        display: block;
        font-size: 1.2rem;
    }

    nav {
        display: none;
        width: 100%;
        background-color: #111;
    }

    nav.open {
        display: block;
    }

    nav ul {
        padding: 1rem;
    }

    .header-right {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding-top: 1rem;
    }

    .language-switch {
        width: 100%;
        text-align: left;
    }

    .nav-centered {
        position: static;
        transform: none;
    }
}

/* === Responsives Verhalten im Hero-Bereich === */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 1rem;
    }

    .hero-logo {
        width: 220px;
    }

    .hero-content h1,
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-brand {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}

/* === Responsives Verhalten für Footer === */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .social-groups {
        flex-direction: column;
        gap: 1.5rem;
    }

    footer p {
        font-size: 0.8rem;
    }

    footer .social-links img {
        width: 20px;
        height: 20px;
    }
}

/* ==========================================================================
   14. Schriftarten & Typografie-Spezialeffekte
   ========================================================================== */

/* === Standard-Schriftarten für Grundtext === */
body {
    font-family: 'faricy-new-web', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* === Headline-Schrift für Logos, Titel etc. === */
.worker {
    font-family: 'worker-3d', sans-serif;
}

/* === Richistyle Logo-Farben im Header === */
.logo-richistyle {
    color: silver;
    -webkit-text-stroke: 0.5px black;
    text-rendering: optimizeLegibility;
}

.logo-007 {
    color: #FFD700;
    -webkit-text-stroke: 0.5px black;
    margin-left: 0.3rem;
    text-rendering: optimizeLegibility;
}

/* === Typografie im Footer (Logo) === */
.footer-brand {
    font-family: 'worker-3d', sans-serif;
    font-size: 1.4rem;
    line-height: 1.2;
    text-align: left;
}

.footer-brand .logo-richistyle {
    color: silver;
    -webkit-text-stroke: 0.4px black;
}

.footer-brand .logo-007 {
    color: #FFD700;
    -webkit-text-stroke: 0.4px black;
    margin-left: 0.3rem;
}

/* === Hover-Leuchteffekte im Hero-Bereich === */
.hero-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: transform 0.2s ease;
}

.hero-link:hover {
    transform: scale(1.07);
}

.hero-link:hover .logo-richistyle {
    text-shadow:
        0 0 10px #cccccc,
        0 0 20px #cccccc,
        0 0 30px #ffffff;
}

.hero-link:hover .logo-007 {
    text-shadow:
        0 0 10px #FFD700,
        0 0 20px #FFD700,
        0 0 30px #ffea8a;
}

/* === Taglines – scharf, elegant und auffällig bei Hover === */
.tagline {
    font-family: 'faricy-new-web', sans-serif;
    font-weight: bold;
    font-size: 1.3rem;
    text-align: center;
    transition: text-shadow 0.3s ease, color 0.3s ease;
    position: relative;
    z-index: 2;
}

.tagline:hover {
    color: #fff;
    text-shadow: 0 0 10px #aaa, 0 0 20px #ccc;
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Container für Spalten */
.footer-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    padding: 0 2rem;
    flex-wrap: nowrap;
    width: max-content;
}

/* Divider (zwischen Spalten) */
.divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    align-self: stretch;
    margin-top: 1.5rem;
    /* passt die Höhe oben an, ggf. feintunen */

}

/* Footer-Bottom exakt so breit wie .footer-container */
.footer-bottom {
    width: 100%;
    max-width: max-content;
    font-size: 0.85rem;
    color: #888;
    margin: 1rem auto 1rem;
    /* Abstand nach unten */
    padding: 0.25rem 0;
    display: flex;
    justify-content: center;
}

/* Footer-Inhaltshöhen angleichen */
/* .footer-nav .footer-content-inner {
  margin-top: 0rem;
}

.footer-social .footer-content-inner{
  margin-top: -1.5rem;
}

.footer-contact .footer-content-inner {
  margin-top: -1rem;
} */

/*.footer-content-inner {
    outline: 1px dotted limegreen;
}*/

.footer-content-inner {
    height: auto;
    margin: 0;
    padding: 0;
    align-self: flex-start;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    display: block;
    /* wichtig, um Verhalten vom Flex-Container zu lösen */
}

.footer-content-inner>*:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.footer-social .social-groups {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.footer-social .footer-content-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
}

.footer-social .social-groups {
    margin: 0;
    padding: 0;
    align-self: flex-start;
}

.footer-social .social-group h4 {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Nur zum Testen – Rahmen für Debug-Zwecke */
/*.footer-container {
    outline: 2px dashed lime;
}

.footer-content {
    outline: 2px dashed cyan;
}

.footer-section {
    outline: 2px solid orange;
    background-color: rgba(255, 255, 255, 0.03);
}

.footer-nav {
    background-color: rgba(0, 255, 0, 0.05);
    /* grünlich
}

.footer-social {
    background-color: rgba(0, 0, 255, 0.05);
    /* bläulich
}

.footer-contact {
    background-color: rgba(255, 0, 0, 0.05);
    /* rötlich
}
*/

/* Farbige Social-Kanal-Titel (normal) */
.footer-social .social-group:nth-child(1) h4 {
    color: #00cc66;
    text-shadow: none;
    transition: text-shadow 0.3s ease;
}

.footer-social .social-group:nth-child(2) h4 {
    color: #e60000;
    text-shadow: none;
    transition: text-shadow 0.3s ease;
}

.footer-social .social-group:nth-child(3) h4 {
    color: #0066ff;
    text-shadow: none;
    transition: text-shadow 0.3s ease;
}

/* Leuchteffekt bei Hover */
.footer-social .social-group:nth-child(1):hover h4 {
    text-shadow: 0 0 8px #00cc66;
}

.footer-social .social-group:nth-child(2):hover h4 {
    text-shadow: 0 0 8px #e60000;
}

.footer-social .social-group:nth-child(3):hover h4 {
    text-shadow: 0 0 8px #0066ff;
}

/* ==========================================================================  
   ✦ Neue Startseiten-Sektionen: Videos, Zitate, CTA  
========================================================================== */

.showcase {
    background-color: #000;
    padding: 4rem 2rem;
    text-align: center;
}

.showcase h2 {
    font-family: 'worker-3d', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.showcase-videos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.video-item {
    max-width: 500px;
    flex: 1;
}

.video-item iframe {
    width: 100%;
    height: 280px;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
}

.video-item p {
    margin-top: 0.5rem;
    color: #ccc;
}

.quotes {
    background-color: #111;
    padding: 3rem 2rem;
    text-align: center;
}

.quotes h2 {
    font-family: 'worker-3d', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.quote-items blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: #FFD700;
    margin: 1rem auto;
    max-width: 600px;
}

.cta {
    background-color: #222;
    padding: 4rem 2rem;
    text-align: center;
}

.cta h2 {
    font-family: 'worker-3d', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 2rem;
}

/* ==========================================================================
   13. Erweiterung: Startseite Inhalte & Struktur (NEU)
   ========================================================================== */

/* === Video Showcase === */
.showcase {
    padding: 3rem 2rem;
    text-align: center;
    background-color: #1a1a1a;
}

.showcase-videos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.video-item {
    max-width: 400px;
    width: 100%;
}

.video-item iframe {
    width: 100%;
    height: 225px;
    border-radius: 6px;
}

.video-item p {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #ccc;
}

/* === Testimonials === */
.quotes {
    padding: 3rem 2rem;
    background-color: #111;
    text-align: center;
}

.quote-items blockquote {
    font-style: italic;
    color: #ccc;
    margin-bottom: 1rem;
}

/* === Call to Action === */
.cta {
    padding: 3rem 2rem;
    background-color: #1a1a1a;
    text-align: center;
}

.cta h2 {
    margin-bottom: 1rem;
    color: #fff;
}

.cta p {
    margin-bottom: 1.5rem;
    color: #aaa;
}

/* === Highlight-Projekt / Merch-Teaser === */
.highlight-project {
    padding: 3rem 2rem;
    background-color: #111;
    text-align: center;
}

.highlight-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-box img {
    max-width: 300px;
    border-radius: 8px;
}

.highlight-info h3 {
    margin-bottom: 0.5rem;
    color: #FFD700;
}

/* === Multiverse-Links === */
.multiverse {
    padding: 3rem 2rem;
    text-align: center;
    background-color: #1a1a1a;
}

.multiverse-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.multiverse-links a {
    padding: 0.8rem 1.5rem;
    background-color: #222;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    color: #ccc;
    transition: background-color 0.3s;
}

.multiverse-links a:hover {
    background-color: #333;
    color: #FFD700;
}

/* === Media-Wall === */
.media-wall {
    padding: 3rem 2rem;
    background-color: #111;
    text-align: center;
}

.media-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.media-item {
    max-width: 300px;
}

.media-item img,
.media-item iframe {
    width: 100%;
    border-radius: 6px;
}

/* === Community Call / Fan-Aktion === */
.community-call {
    padding: 3rem 2rem;
    background-color: #1a1a1a;
    text-align: center;
}

.community-buttons {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.community-buttons .cta-button {
    padding: 0.8rem 1.4rem;
}

/* === Mottobereich Episch === */
.motto-epic {
    background: linear-gradient(to bottom, #000000dd, #111111ee),
        url("images/stars.jpg") center/cover no-repeat fixed;
    color: #FFD700;
    text-align: center;
    padding: 3rem 2rem;
    font-family: 'worker-3d', sans-serif;
    position: relative;
    overflow: hidden;
}

.motto-epic blockquote {
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
    margin-bottom: 1rem;
}

.motto-epic .translation {
    font-size: 1rem;
    color: #ccc;
    font-style: italic;
    margin-bottom: 2rem;
}

.motto-icon {
    font-size: 1.6rem;
    animation: glowPulse 2.5s infinite ease-in-out;
    opacity: 0.7;
    display: none;
}

/* 🔥 Animation für Glut-Icon */
@keyframes glowPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

.wave-divider {
    position: relative;
    height: 60px;
    overflow: hidden;
    margin-top: -40px;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}


/* ==========================================================================
   ✦ Responsive Anpassungen für alle Bereiche (max-width: 600px)
   ========================================================================== */

@media (max-width: 600px) {

    /* Motto-Bereich */
    .motto-epic {
        padding: 2rem 1rem;
    }

    .motto-epic blockquote {
        font-size: 1.3rem;
    }

    /* Testimonials */
    .quote-items blockquote {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    /* Brand-Kacheln */
    .brand-cards {
        flex-direction: column;
        gap: 1.5rem;
    }

    .brand-card {
        max-width: 100%;
    }

    /* News-Karten */
    .news-items {
        flex-direction: column;
        gap: 1.5rem;
    }

    .news-item {
        max-width: 100%;
    }

    /* Video-Showcase */
    .video-item iframe {
        height: 180px;
    }

    /* Highlight-Box */
    .highlight-box {
        flex-direction: column;
    }

    .highlight-box img {
        max-width: 90%;
    }

    /* Media Grid */
    .media-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .media-item {
        max-width: 100%;
    }

    /* CTA Buttons */
    .cta-button {
        width: 100%;
        text-align: center;
    }

    .community-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* === Rahmen mit linken und rechten Hintergrundbildern === */
.content-background-frame {
    background-image: url("images/side-left-clean.png"), url("images/side-right-clean.png");
    background-position: left top, right top;
    background-repeat: repeat-y, repeat-y;
    background-size: auto 100%;
    padding: 0 2rem;
    /* Innenabstand für Inhaltsluft */
    transform: translateZ(0);
    will-change: transform;
    image-rendering: pixelated;

}

/* Optional: Begrenze den Inhaltsbereich */
.content-background-frame>section {
    max-width: 1500px;
    margin: 0 auto;
}

/* === VIDEO SHOWCASE im News-Stil === */
.showcase-section {
    padding: 2rem;
    background-color: #111;
    color: #eee;
    text-align: center;
}

.showcase-section h2 {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 2rem;
}

.showcase-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.showcase-card {
    background-color: #1c1c1c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    width: 400px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.showcase-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.2);
}

.showcase-card.michel:hover {
    transform: scale(1.03);
    box-shadow: 0 0 12px rgba(0, 204, 102, 0.6);
    border: 1px solid #00cc66;
}

.showcase-card.television:hover {
    transform: scale(1.03);
    box-shadow: 0 0 12px rgba(230, 0, 0, 0.6);
    border: 1px solid #e60000;
}

.showcase-card.cinema:hover {
    transform: scale(1.03);
    box-shadow: 0 0 12px rgba(0, 102, 255, 0.6);
    border: 1px solid #0066ff;
}

.showcase-card iframe {
    width: 100%;
    height: 225px;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.showcase-caption {
    font-size: 1rem;
    color: #ccc;
    font-weight: bold;
}

.showcase-title {
    font-size: 1.2rem;
    color: #FFD700;
    margin-top: 0.5rem;
    margin-bottom: 0.3rem;
}

.showcase-tagline {
    font-size: 1rem;
    color: #ccc;
    font-style: italic;
    margin-bottom: 0.8rem;
}

.showcase-info {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    color: #aaa;
    text-align: left;
}

.showcase-info li {
    margin-bottom: 0.3rem;
}

.showcase-category {
    font-weight: bold;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 1rem;
    text-align: center;
}

.showcase-card.cinema .showcase-category {
    color: #0066ff;
    /* Blau */
}

.showcase-card.television .showcase-category {
    color: #e60000;
    /* Rot */
}

.showcase-card.michel .showcase-category {
    color: #00cc66;
    /* Grün */
}

/* ==========================================================================  
   10. Call-to-Action – Werde Teil von RICHISTYLE 007!
   ========================================================================== */

.cta-section {
    padding-top: 2rem;
    /* oder exakt wie bei .news-section */
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    background-color: #111;
    text-align: center;
    color: #eee;
}

.cta-section h2 {
    font-family: 'worker-3d', sans-serif;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 2rem;
    color: #FFD700;
}

.cta-section p {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.news-button-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.news-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(90deg, #444444, #777777);
    background-size: 200%;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-position 0.5s ease, color 0.3s ease;
}

.news-button:hover {
    background: linear-gradient(90deg, #FFD700, #fffac0);
    color: #111;
}

.cta-image {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    background: linear-gradient(180deg, #111 0%, #151515 100%);

}

/* ==========================================================================
   ✦ Trennlinie zwischen Sektionen ✦
   ========================================================================== */
/* ✦ Trennlinie zwischen Sektionen ✦ */
.section-divider-wrapper {
    background-color: #111;
    /* exakt gleich wie deine Sektionen */
}

.section-divider-wrapper.outer {
    background-color: transparent;
    /* durchsichtig */
}

.section-divider {
    height: 3px;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.07);
}

.content-inner {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    background-color: #111;
}

/* Vertikale Trennlinien links und rechts */
.content-inner::before,
.content-inner::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: rgba(255, 255, 255, 0.07);
}

.content-inner::before {
    left: 0;
}

.content-inner::after {
    right: 0;
}