.elementor-254 .elementor-element.elementor-element-f8b38d0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-254 .elementor-element.elementor-element-fb25813{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-254 .elementor-element.elementor-element-774572b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-254 .elementor-element.elementor-element-2cde19e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-f3e1496 *//* ========================================================== */
/* --- OYMEDIA: ABOUT US (HERO & MANIFESTO) ---               */
/* ========================================================== */

body {
    background-color: #050505; /* Absolutes Deep Black für die About Page */
}

/* --- 1. HERO SEKTION --- */
.oy-about-hero {
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background: radial-gradient(circle at center, rgba(224, 43, 32, 0.05) 0%, transparent 60%);
    font-family: inherit;
}

.oy-hero-content {
    max-width: 900px;
    /* Animation Start */
    opacity: 0;
    transform: translateY(40px);
}

.oy-about-hero.oy-in-view .oy-hero-content {
    animation: oy-fade-up 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes oy-fade-up {
    to { opacity: 1; transform: translateY(0); }
}

.oy-hero-label {
    font-family: monospace;
    color: #E02B20;
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 20px;
}

.oy-hero-title {
    color: #ffffff;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.1;
    margin: 0 0 30px 0;
    text-transform: uppercase;
}

.oy-text-red {
    color: #E02B20;
    text-shadow: 0 0 20px rgba(224, 43, 32, 0.4);
}

.oy-hero-sub {
    color: #888;
    font-size: 18px;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}


/* --- 2. DAS MANIFEST (CORE VALUES) --- */
.oy-manifesto-section {
    width: 100%;
    padding: 100px 0;
    font-family: inherit;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.oy-manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 2fr; /* 1 Drittel Links, 2 Drittel Rechts */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 60px;
}

/* Linke Seite */
.oy-manifesto-left {
    position: sticky;
    top: 120px; /* Bleibt beim Scrollen kleben */
    height: fit-content;
    
    /* Animation Start */
    opacity: 0;
    transform: translateX(-30px);
}

.oy-manifesto-section.oy-in-view .oy-manifesto-left {
    animation: oy-slide-right 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes oy-slide-right { to { opacity: 1; transform: translateX(0); } }

.oy-manifesto-left h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
}

.oy-red-line {
    width: 60px;
    height: 4px;
    background: #E02B20;
    box-shadow: 0 0 10px rgba(224, 43, 32, 0.5);
}

/* Rechte Seite (Die Werte) */
.oy-manifesto-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.oy-core-value {
    display: flex;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    
    /* Animation Start */
    opacity: 0;
    transform: translateY(30px);
}

.oy-core-value:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Kaskaden-Aufbau */
.oy-manifesto-section.oy-in-view .oy-core-value {
    animation: oy-fade-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.oy-manifesto-section.oy-in-view .oy-core-value:nth-child(1) { animation-delay: 0.2s; }
.oy-manifesto-section.oy-in-view .oy-core-value:nth-child(2) { animation-delay: 0.4s; }
.oy-manifesto-section.oy-in-view .oy-core-value:nth-child(3) { animation-delay: 0.6s; }

.oy-value-num {
    font-family: monospace;
    font-size: 16px;
    font-weight: 800;
    color: #E02B20;
    margin-top: 5px; /* Angleichung an die Überschrift */
}

.oy-value-text h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    transition: color 0.4s ease;
}

.oy-value-text p {
    color: #777;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    transition: color 0.4s ease;
}

/* Minimal Hover (Kein Wackeln!) */
.oy-core-value:hover .oy-value-text h3 { color: #E02B20; }
.oy-core-value:hover .oy-value-text p { color: #aaaaaa; }

/* Mobile Optimierung */
@media (max-width: 900px) {
    .oy-hero-title { font-size: 38px; }
    .oy-manifesto-grid { grid-template-columns: 1fr; gap: 40px; }
    .oy-manifesto-left { position: relative; top: 0; }
    .oy-core-value { flex-direction: column; gap: 15px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-aafcd56 *//* ========================================================== */
/* --- OYMEDIA: TERMINAL FAQ (HACKER STYLE) ---               */
/* ========================================================== */

.oy-terminal-section {
    width: 100%;
    padding: 100px 0;
    font-family: 'Courier New', Courier, monospace; /* Echter Terminal Vibe */
    background: transparent;
}

.oy-terminal-header {
    text-align: center;
    margin-bottom: 60px;
    font-family: inherit;
}

.oy-terminal-header h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.oy-terminal-header p {
    color: #E02B20;
    font-size: 16px;
    letter-spacing: 1px;
}

/* --- THE WINDOW --- */
.oy-terminal-window {
    max-width: 900px;
    margin: 0 auto;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 20px rgba(224, 43, 32, 0.05);
    
    /* Scroll Reveal Start */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.oy-terminal-top {
    background: #111;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.oy-terminal-dots { display: flex; gap: 8px; }
.oy-terminal-dots span { width: 10px; height: 10px; border-radius: 50%; background: #333; }

.oy-terminal-title {
    margin-left: 20px;
    font-size: 10px;
    color: #444;
    letter-spacing: 2px;
    font-weight: 800;
}

/* --- THE BODY --- */
.oy-terminal-body {
    padding: 30px;
}

.oy-faq-item {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 20px;
}

.oy-faq-item:last-child { border-bottom: none; }

.oy-faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer; /* Hier ist ein Klick erwünscht! */
}

.oy-prompt {
    color: #E02B20;
    font-weight: 900;
    font-size: 18px;
}

.oy-faq-question h3 {
    color: #ffffff;
    font-size: 18px;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.oy-faq-answer {
    max-height: 0; /* Versteckt am Anfang */
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding-left: 32px;
}

.oy-faq-answer p {
    color: #888;
    font-size: 15px;
    line-height: 1.6;
    margin: 15px 0 0 0;
}

/* --- HOVER & ACTIVE --- */
.oy-faq-item:hover h3 {
    color: #E02B20;
    text-shadow: 0 0 10px rgba(224, 43, 32, 0.3);
}

.oy-faq-item.is-open .oy-faq-answer {
    max-height: 300px; /* Genug Raum für die Antwort */
}

.oy-faq-item.is-open h3 {
    color: #E02B20;
}

/* Scroll Reveal Trigger */
.oy-terminal-section.oy-in-view .oy-terminal-window {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .oy-terminal-body { padding: 20px; }
    .oy-faq-question h3 { font-size: 16px; }
}/* End custom CSS */