/* ==========================================================================
   RESET & BASICS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #050505;
    color: white;
    overflow-x: hidden;
}

/* ==========================================================================
   NAVBAR / HEADER
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    max-width: 1300px;
    margin: auto;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo img {
    height: 60px;
}

.logo h1 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    color: #ffd400;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #ffd400;
    transition: 0.3s;
}

nav a:hover {
    color: #ffd400;
}

nav a:hover::after {
    width: 100%;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 80px;
    background:
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)),
        url('hero-bg.png') center/cover no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: #ffd400;
    filter: blur(180px);
    opacity: 0.15;
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
}

.hero h2 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero h2 span {
    color: #ffd400;
}

.hero p.hero-desc {
    font-size: 20px;
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero p.hero-sub {
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 15px;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn {
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block;
}

.btn-yellow {
    background: #ffd400;
    color: black;
}

.btn-yellow:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255,212,0,0.4);
}

.btn-outline {
    border: 2px solid #ffd400;
    color: #ffd400;
}

.btn-outline:hover {
    background: #ffd400;
    color: black;
}

/* ==========================================================================
   GLOBAL SECTIONS
   ========================================================================== */
.section {
    padding: 50px 20px;
}

.container {
    max-width: 1300px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h3 {
    color: #ffd400;
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 800;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.service-card {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 40px 30px;
    transition: 0.35s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 160px;
    height: 160px;
    background: #ffd400;
    border-radius: 50%;
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #ffd400;
    box-shadow: 0 20px 40px rgba(255, 212, 0, 0.15);
}

.service-icon {
    font-size: 46px;
    margin-bottom: 25px;
}

.service-card h4 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-card p {
    color: #bdbdbd;
    line-height: 1.7;
}

/* ==========================================================================
   ABOUT (ÜBER UNS)
   ========================================================================== */
.about {
    background: #0b0b0b;
    margin-top: 40px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-text h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.about-text p {
    color: #cfcfcf;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 25px;
    border: 2px solid rgba(255, 212, 0, 0.2);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-box {
    background: #0f0f0f;
    border-radius: 30px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.contact-box h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.contact-item {
    background: #161616;
    padding: 30px;
    border-radius: 18px;
}

.contact-item h4 {
    color: #ffd400;
    margin-bottom: 12px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.contact-item a:hover {
    color: #ffd400;
}

/* Modernes Kontaktformular */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 30px auto;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 18px;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: 0.3s;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: #ffd400;
    background: #1f1f1f;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    cursor: pointer;
    border: none;
    font-size: 16px;
    margin-top: 10px;
}
/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    padding: 35px 20px;
    text-align: center;
    background: black;
    color: #888;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE DESIGN)
   ========================================================================== */

/* TABLET-ANSICHT */
@media (max-width: 900px) {
    .hero h2 {
        font-size: 52px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE-ANSICHT (SMARTPHONES) */
@media (max-width: 600px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h2 {
        font-size: 38px;
        line-height: 1.2;
    }

    /* Nativer, sauberer Umbruch ohne Kasten */
    .hero p.hero-desc {
        font-size: 16px;
        color: #d0d0d0;
        background: none;
        padding: 0;
        box-shadow: none;
        max-width: 290px; /* Erzwingt den optimalen Umbruch vor "für Privat-" */
        margin: 0 auto 20px auto;
        line-height: 1.5;
    }

    .hero p.hero-sub {
        font-size: 15px;
        color: #ffffff;
        opacity: 0.8;
        margin-bottom: 35px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 20px;
    }

    .hero-buttons .btn {
        width: 85%;
        max-width: 280px;
        text-align: center;
        padding: 14px 25px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    /* Zentrierung für mobile Service-Karten */
    .service-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-icon {
        margin-bottom: 15px;
    }

    .contact-box {
        padding: 35px 25px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
