/* --- DESIGN VARIABLEN --- */
:root {
    /* Die Hauptfarbe */
    --bs-primary: #0a4f80;

    /* Der RGB-Wert (notwendig für Bootstraps Transparenz-Effekte) */
    --bs-primary-rgb: 10, 79, 128;
    --accent-color: #C5A065;
    /* Bronze/Gold (Prosperity) */
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --radius: 8px;
}

/* 2. Die spezifische Button-Logik (Hier wird 'bs-btn-bg' überschrieben) */
.btn-primary {
    /* Basis-Zustand */
    --bs-btn-bg: #0a4f80;
    --bs-btn-border-color: #0a4f80;

    /* Hover-Zustand (etwas heller für Feedback) */
    --bs-btn-hover-bg: #0d629e;
    --bs-btn-hover-border-color: #0c598f;

    /* Active/Geklickt-Zustand (etwas dunkler) */
    --bs-btn-active-bg: #083d63;
    --bs-btn-active-border-color: #073658;

    /* Fokus-Ring (der leuchtende Rand beim Tabben) */
    --bs-btn-focus-shadow-rgb: 10, 79, 128;

    /* Falls der Text weiß sein soll (Standard bei dunklem Blau) */
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
    --bs-btn-active-color: #fff;
}

/* 2. Die spezifische Button-Logik für Secondary (Orange) */
.btn-secondary {
    /* Basis-Zustand */
    --bs-btn-bg: #ff9924;
    --bs-btn-border-color: #ff9924;

    /* Hover-Zustand (etwas dunkler/kräftiger für den Kontrast) */
    --bs-btn-hover-bg: #e68a20;
    --bs-btn-hover-border-color: #d9821e;

    /* Active/Geklickt-Zustand */
    --bs-btn-active-bg: #cc7a1c;
    --bs-btn-active-border-color: #bf721a;

    /* Fokus-Ring (in Orange) */
    --bs-btn-focus-shadow-rgb: 255, 153, 36;

    /* Textfarbe (Schwarz bietet meist besseren Kontrast auf Orange als Weiß) */
    --bs-btn-color: #000;
    --bs-btn-hover-color: #000;
    --bs-btn-active-color: #000;
    
    /* Falls du doch weißen Text bevorzugst, ändere #000 zu #fff */
}

/* --- GRUNDLEGENDE EINSTELLUNGEN --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    scroll-behavior: smooth;
}

/* --- HEADER & NAVIGATION --- */
/* header {
            background: var(--white);
            padding: 1rem 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
        } */

/* .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--accent-color);
        } */

.title {
    font-family: 'Uniform Regular', sans-serif;
    font-size: 70px;
}

/* .cta-button {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #b08d55;
} */

/* Standard-Zustand: Wenn der Inhalt EINGEKLAPPT ist */
.collapse-btn::before {
    content: "Mehr..";
}

/* Zustand: Wenn der Inhalt AUSGEKLAPPT ist (aria-expanded="true") */
.collapse-btn[aria-expanded="true"]::before {
    content: "Weniger anzeigen";
}

/* Optional: Falls du die Farbe ändern willst, wenn er offen ist */
.collapse-btn[aria-expanded="true"] {
    background-color: #6c757d !important;
    /* Wechselt zu Grau */
    border-color: #6c757d !important;
}

.collapse.collapsing {
    transition: height 0.35s ease;
    /* Standard Bootstrap Zeit */
}

/* --- HERO SECTION --- */
.hero {
    height: 90vh;
    background: linear-gradient(135deg, rgba(11, 30, 59, 0.95) 0%, rgba(11, 30, 59, 0.8) 100%), url('office.avif');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    color: #cbd5e1;
    font-weight: 300;
}

.content-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
        }

.content-container h1 {
    color: #0b1e3b;
    font-size: 2.0rem;
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.content-container h2 {
    color: #0b1e3b;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* --- SECTIONS ALLGEMEIN --- */
section {
    padding: 6rem 5%;
}

/* --- SECTIONS ALLGEMEIN --- */
expert-section {
    padding: 6rem 0rem 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title .line {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto;
}

/* --- USP SECTION --- */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    text-align: center;
}

.usp-item h3 {
    margin: 1rem 0;
    color: var(--primary-color);
}

.usp-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* --- BRANCHEN & LEISTUNGEN (Cards) --- */
.bg-light {
    background-color: var(--bg-light);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 2rem;
}

.expert-card {
    background: var(--white);
    display: flex;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 2px solid transparent;
}

.expert-card ul {
    padding-left: 25px;
    /* Oder ein Wert deiner Wahl */
    margin-left: 0;
}

.expert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--accent-color);
}

.c-card {
    background: var(--white);
    padding: 2rem;
    display: flex;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 2px solid transparent;
}

.expert-card .text-box {
    margin: 15px
}

.expert-card h3 {
    font-size: clamp(1.3rem, 2.5vw + 0.2rem, 1.8rem);
    font-weight: 700;
    /* Extra bold für den Namen */
    margin-bottom: 0.25rem;
}

.expert-card h5 {
    /* Minimum: 1.1rem (Handy)
            Ideal: 2vw (2% der Bildschirmbreite)
            Maximum: 1.75rem (Desktop H3) */
    font-size: clamp(1.0rem, 2vw + 0.5rem, 1.1rem);
}

.text-box-infotext {
    margin: 10px 0px;
}

.c-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--accent-color);
}

.c-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.c-card ul {
    list-style: none;
}

.c-card ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.c-card ul li::before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

/* --- KONTAKT --- */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 1.5rem;
}

input,
textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

input:focus,
textarea:focus {
    border-color: var(--accent-color);
}

/* button[type="submit"] {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-size: 1rem;
            cursor: pointer;
            border-radius: 4px;
            transition: background 0.3s;
        } 

        button[type="submit"]:hover {
            background-color: var(--accent-color);
        } */

/* --- FOOTER --- */
footer {
    background: var(--bs-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 5%;
    text-align: center;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 1rem;
}

/* --- MOBILE ANPASSUNG --- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    nav ul {
        display: none;
    }

    /* Einfaches Menü-Ausblenden für Demo */
    header {
        padding: 1rem;
    }

    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }
}