/* --- TAB LOGIK --- */
.tab-content {
    display: none; /* Standardmäßig alles weg */
    animation: fadeIn 0.5s ease; /* Schöner Übergang beim Wechsel */
}

.active-tab {
    display: block; /* Nur der aktive Tab wird gezeigt */
}

/* Styling für den aktiven Button */
.nav-btn.active {
    background-color: #D40000;
    border-color: #D40000;
    color: #fff;
}

/* Animation für den Wechsel */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Button Korrektur (kleiner & nebeneinander) */
.pricing-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.nav-btn {
    cursor: pointer;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #888;
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: 0.3s;
}

/* --- ABOUT PAGE VALUES GRID --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #D40000;
    transform: translateY(-5px); /* Kleiner Lift-Effekt */
}

.value-card h3 {
    color: #D40000;
    margin-top: 0;
}

.value-card p {
    color: #ffffff;
    line-height: 1.6;
}

/* Layout für die obere Sektion */
.about-hero-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
}



/* Dein Grid für die Werte unten */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Bestehende about.css ergänzen */

.about-hero-section {
    gap: 60px; /* Mehr Platz zwischen Text und Bild */
    margin-bottom: 80px;
}

.text-content h1 {
    font-weight: 900; /* Nutzt deine geladene Montserrat-Black */
    margin-bottom: 30px;
    line-height: 1.2;
}

.philosophy-highlight {
    border-left: 3px solid #D40000; /* Ninja-Akzentlinie */
    padding-left: 20px;
    margin: 30px 0;
    background: rgba(212, 0, 0, 0.05); /* Ganz dezenter Rotschimmer */
    padding-top: 10px;
    padding-bottom: 10px;
}

.philosophy-highlight h2 {
    font-size: 1.2rem;
    color: #D40000;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Die Mission-Sektion zentrieren für mehr Ruhe */
.centered-title {
    text-align: center;
    font-size: 2.2rem;
    margin-top: 100px;
    margin-bottom: 20px;
}

.centered-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #888; /* Etwas dezenter als Haupttext */
}


/* Mobile Ansicht: Untereinander */
@media (max-width: 900px) {
    .about-hero-section { flex-direction: column; text-align: center; }
}