* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    color: #fff;
    background-color: #000;
    line-height: 1.6;
}

/* --- FULLSCREEN YOUTUBE VIDEO --- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Ganze Bildschirmhöhe */
    overflow: hidden;
}

.hero iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

/* --- FULLSCREEN HERO MIT YOUTUBE VIDEO --- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* ganze Bildschirmhöhe */
    overflow: hidden;
}

.hero iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

/* Overlay-Text */
.hero-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35); /* leicht abgedunkelt für besseren Kontrast */
    z-index: 2;
}

.hero-text h1 {
    color: #ffffff;
    font-size: 6vw; /* responsive, skaliert mit Bildschirmgröße */
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    text-align: center;
}


/* Sections allgemein */
section {
    padding: 80px 10%;
}

.antrieb {
    background: #fff;
    color: #000;
    text-align: center;
}

.antrieb .quote {
    font-size: 1.3rem;
    margin: 30px auto;
    max-width: 800px;
    font-weight: 600;
}

.ueber-mich {
    background: #000;
    text-align: center;
}

.about-grid {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.about-grid img {
    width: 300px;
    border-radius: 10px;
}

.details {
    text-align: left;
    font-size: 1rem;
}

/* Kompetenz */
.kompetenz {
    background: #fff;
    color: #000;
}

.kompetenz-grid {
    display: flex;
    justify-content: center;
    align-items: stretch; /* sorgt für gleiche Höhe */
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.kompetenz-grid img {
    flex: 1;
    min-width: 300px;
    height: 400px; /* feste Höhe für gleichmäßige Darstellung */
    object-fit: cover; /* schneidet Bild passend zu */
    border-radius: 10px;
}


.kompetenz-text {
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* --- LEISTUNGEN UND SIEGE --- */
.leistungen {
    background: #f2f2f2;
    color: #000;
    padding: 100px 10%;
}

.leistungen h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.leistungen-block {
    margin-bottom: 80px;
}

.leistungen-block h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.item {
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px solid #aaa;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.4;
}

.item span {
    position: absolute;
    left: -40px;
    top: 0;
    font-size: 1rem;
    color: #555;
    font-weight: 400;
}

/* Für schmalere Bildschirme */
@media (max-width: 900px) {
    .leistungen-grid {
        grid-template-columns: 1fr;
    }
    .item span {
        left: 0;
        position: relative;
        margin-right: 10px;
    }
}


/* Kooperation */
.kooperation {
    background: #fff;
    color: #000;
    text-align: center;
}

.koop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.koop-grid img {
    width: 100%;
    aspect-ratio: 5 / 7;       /* Verhältnis 5:7 (Hochformat) */
    object-fit: cover;         /* Bild wird zugeschnitten, ohne verzerrt zu wirken */
    border-radius: 15px;       /* runde Ecken bleiben */
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3); /* optional: dezenter Schatten */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* optional: sanfter Hover-Effekt */
.koop-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}


/* --- MEDIALE BEACHTUNG --- */
.medien {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 100px 10%;
}

.medien h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.medien-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 25px;
}

.medien a {
    display: block;
    background: #555;
    color: #fff;
    text-decoration: none;
    padding: 20px;
    border-radius: 15px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.medien a:hover {
    background: #777;
    transform: translateY(-4px);
}

/* Responsiv */
@media (max-width: 600px) {
    .medien-grid {
        grid-template-columns: 1fr;
    }
}


/* Footer */
footer {
    background: #111;
    text-align: center;
    padding: 50px 10%;
    font-size: 0.9rem;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer .small {
    margin-top: 15px;
    color: #888;
}

/* --- Unterseiten: AGB & Datenschutz --- */
.subpage-header {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 100px 10% 50px 10%;
}

.subpage-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.text-content {
    background: #111;
    color: #fff;
    padding: 60px 10%;
    line-height: 1.7;
}

.text-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 10px;
    font-weight: 600;
}

.text-content p {
    margin-bottom: 20px;
    max-width: 900px;
}

.subpage-footer {
    background: #000;
    text-align: center;
    padding: 50px 10%;
}

.subpage-footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.subpage-footer a:hover {
    color: #aaa;
}
/* --- Footer Social Links --- */
.social-links {
    margin: 20px 0;
}

.social-links a {
    display: inline-block;
    background: #222;
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 30px;
    margin: 0 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #444;
    transform: translateY(-3px);
}

