/* ===========================================
   MLM Verwalter Basis-Stylesheet
   Version: 1.0
   Letzte Aktualisierung: 2024
   =========================================== */

/* 
   1. Grundlegende Variablen
   ------------------------- */
:root {
    /* Erweitertes Farbsystem */
    
    /* Primärfarbe (Türkis) und Varianten */
    --color-primary: #0CC0DF;
    --color-primary-100: #E6F9FC; /* Sehr hell */
    --color-primary-200: #B3EEFF;
    --color-primary-300: #66D9F2;
    --color-primary-400: #33CDE8;
    --color-primary-500: #0CC0DF; /* Basis - identisch mit --color-primary */
    --color-primary-600: #0999B2;
    --color-primary-700: #077386;
    --color-primary-800: #044C59;
    --color-primary-900: #02262D; /* Sehr dunkel */

    /* Sekundärfarbe (Dunkelblau) und Varianten */
    --color-secondary: #001373;
    --color-secondary-100: #E6E7F0; /* Sehr hell */
    --color-secondary-200: #B3B5D9;
    --color-secondary-300: #666AAD;
    --color-secondary-400: #333D99;
    --color-secondary-500: #001373; /* Basis - identisch mit --color-secondary */
    --color-secondary-600: #000F5C;
    --color-secondary-700: #000B44;
    --color-secondary-800: #00072D;
    --color-secondary-900: #000417; /* Sehr dunkel */

    /* Weitere Basis-Farben */
    --color-accent: #CADCEC;
    --color-text: #555;
    --color-background: #FFFFFF;
    --white: #FFFFFF;

    /* Layout */
    --site-max-width: 1200px;
    --site-padding: 2rem;
    --section-spacing: 4rem;

    /* Debug Farben */
    --debug-container: rgba(255, 0, 0, 0.15);
    --debug-grid: rgba(0, 0, 255, 0.15);
    --debug-section: rgba(0, 255, 0, 0.15);

    --primary: #0056b3;
    --primary-light: #f0f7ff;
    --text-dark: #333;
    --text-muted: #666;
}

/* 
   2. Reset und Basis
   ----------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h2 {
    position: relative;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0;
    display: inline-block;
    font-weight: 600;
    text-align: center;
    color: #001373;
}

h3 {
    font-size: 1.75rem;
    text-align: center;
    color: #001373;
    font-weight: 600;
}

/* Header und Navigation */
.header.header-main.layout-sticky {
    height: 80px;
    background-color: var(--color-secondary);
}

/* Logo */
.navbar-brand {
    padding: 0;
    margin-right: 2rem; /* Abstand zwischen Logo und Navigation */
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
}

.nav-menu li {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Button Styles */
.button-group {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1.5rem;
}

.std-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    height: 40px;
    line-height: 1;
}

.nav-menu .std-btn-primary {
    background-color: var(--color-primary);
    color: var(--white);
    border: 2px solid var(--color-primary);
}

.nav-menu .std-btn-outline-light {
    color: var(--white);
    border: 2px solid var(--white);
    background: transparent;
}

/* Button-Gruppe spezifisch */
.nav-menu .button-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: auto;
    margin-left: auto;
}

/* Debug-Styles zum Testen */
.nav-menu .button-group {
    border: none;
}

.nav-menu li {
    border: none;
}

.button-group-container {
    margin-left: auto;
}

.button-group {
    display: flex;
    gap: 1rem;
}

.nav-buttons {
    margin-left: auto; /* Schiebt die Buttons nach rechts */
    display: flex;
    gap: 0.5rem;
}

.nav-buttons .std-btn {
    white-space: nowrap;
}

section {
    padding: 2rem 0;
}
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    color: var(--color-secondary);
    /*font-size: 2.5rem;*/
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

/* Stilisierter Unterstrich */
.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 3px;
    background: linear-gradient(90deg,
    transparent 0%,
    var(--color-primary) 15%,
    var(--color-primary) 85%,
    transparent 100%
    );
    clip-path: polygon(5% 0, 95% 0, 100% 100%, 0% 100%);
}

.mdcard-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    transition: transform 0.3s ease;
}

.mdcard-icon i {
    color: white;
    font-size: 2rem;
}

.mdcard:hover .mdcard-icon {
    transform: scale(1.1) /*rotate(5deg)*/;
}

.mdcardborders {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.mdcard h3 {
    color: var(--color-secondary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(12, 192, 223, 0.08);
    border: 1px solid rgba(12, 192, 223, 0.1);
    transition: all 0.3s ease;
    align-items: center;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(12, 192, 223, 0.12);
    border-color: var(--color-primary);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), #0AA0BF);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: white;
    font-size: 1.3rem;
}

.feature-content h3 {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: left;
}

.feature-content p {
    color: var(--color-text);
    margin: 0;
    line-height: 1.6;
    text-align: left;
}

@media (max-width: 767px) {
    .feature-item {
        padding: 1.25rem;
    }
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    .feature-icon i {
        font-size: 1.2rem;
    }
}

.block-font-lg {
    color: var(--color-text);
    line-height: 1.8;
    font-size: 1.1rem;
}

.block-font-md {
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

/* FAQ-Seite Styles */
@import 'custom/pages/fragen-und-antworten.css';



