/* ==================================================
   CBHIMO GMBH – CORPORATE DESIGN
   Logo-based | Industrial | Export Business
================================================== */

/* ===============================
   Corporate Color Palette
================================ */
:root {
    --primary: #39B6FF;          /* Logo Blau / Cyan */
    --primary-dark: #1E8FD6;     /* Dunkleres Logo Blau */
    --secondary: #0F1720;        /* Industrial Black */
    --secondary-light: #141F2B;
    --accent: #F2F8FC;           /* Sehr helles Blau */
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --border-light: #E1E8EE;
}

/* ===============================
   Global Reset
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #ffffff;
    color: var(--text-dark);
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===============================
   Header & Navigation
================================ */
header {
    background: linear-gradient(
        90deg,
        var(--secondary),
        var(--secondary-light)
    );
    border-bottom: 4px solid var(--primary);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.logo {
    height: 68px;
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(0,0,0,0.25);
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.5px;
}

nav ul li a:hover {
    color: var(--primary);
}

.language-switch a {
    color: var(--text-light);
    border: 1px solid var(--primary);
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 25px;
    transition: 0.3s ease;
}

.language-switch a:hover {
    background: var(--primary);
    color: #fff;
}

/* ===============================
   Hero Section
================================ */
.hero {
    height: 82vh;
    background: linear-gradient(
        rgba(15, 23, 32, 0.94),
        rgba(15, 23, 32, 0.94)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: auto;
}

/* ===============================
   Buttons
================================ */
.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 34px;
    background: var(--primary);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===============================
   Sections
================================ */
.section {
    padding: 80px 0;
}

.section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    border-left: 5px solid var(--primary);
    padding-left: 15px;
}

.bg-light {
    background: var(--accent);
}

.bg-dark {
    background: var(--secondary);
    color: var(--text-light);
}

/* ===============================
   Services
================================ */
.services {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.service-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 6px;
    flex: 1;
    border-top: 5px solid var(--primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.service-box h3 {
    margin-bottom: 15px;
}

/* ===============================
   Benefits
================================ */
.benefits {
    list-style: none;
    margin-top: 25px;
}

.benefits li {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

/* ===============================
   Brands / Manufacturers
================================ */
.brands {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.brands img {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: all 0.3s ease;
}

.brands img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.brands-text,
.brands-note {
    text-align: center;
    margin-top: 15px;
}

.brands-note {
    font-size: 0.9rem;
    color: #777;
}

/* ===============================
   Legal Pages (Impressum & DSGVO)
================================ */
.legal h1 {
    margin-bottom: 30px;
}

.legal h3 {
    margin-top: 35px;
    color: var(--primary-dark);
}

.legal p,
.legal li {
    margin-top: 12px;
}

.legal ul {
    margin-left: 20px;
}

/* ===============================
   Footer
================================ */
footer {
    background: #000000;
    color: var(--text-light);
    text-align: center;
    padding: 18px 0;
    font-size: 0.95rem;
}

/* ===============================
   Responsive
================================ */
@media (max-width: 900px) {
    .services {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
    }

    nav ul {
        margin-top: 18px;
    }

    nav ul li {
        margin-left: 15px;
    }

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