* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #1a1a1a;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff6b35;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    background: url('../assets/images/hero-bg-hq.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.0);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hero h1 {
    font-size: 2rem;
    color: white;
    background: #ff6b35;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-align: center;
    margin: 0;
}

.hero .phone {
    font-size: 2rem;
    font-weight: bold;
    background: #ff6b35;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    margin: 0;
}

/* Sections */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.offer-card {
    background: #f9f9f9;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 300px;
    margin: 0 auto;
}

.offer-card img {
    max-width: 100%;
    height: auto;
}

.price-badge {
    background: #ff6b35;
    color: white;
    padding: 8px 20px;
    display: inline-block;
    border-radius: 50px;
    font-weight: bold;
}

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

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom a {
    color: #ff6b35;
    text-decoration: none;
}

/* ============================================ */
/* BURGER-MENÜ (für alle Geräte bis 1200px) */
/* ============================================ */

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

@media (max-width: 1200px) {
    .burger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        height: calc(100vh - 80px);
        background: #1a1a1a;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        transition: right 0.3s ease;
        z-index: 100;
        padding-top: 40px;
        gap: 25px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
        list-style: none;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        color: white;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .nav-links a:hover {
        color: #ff6b35;
    }
    
    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger.toggle .line2 {
        opacity: 0;
    }
    
    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Speziell für sehr schmale Geräte */
@media (max-width: 500px) {
    .nav-links a {
        font-size: 1.1rem;
    }
    
    .nav-links li {
        margin: 12px 0;
    }
    
    .burger div {
        width: 22px;
        height: 2px;
    }
}
