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

:root {
    --primary: #a8d530;
    --primary-dark: #8fb821;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --dark-medium: #252525;
    --text-white: #ffffff;
    --text-gray: #aaaaaa;
    --shadow: 0 4px 20px rgba(0,0,0,0.5);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: var(--dark);
}

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

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: var(--primary); transition: 0.3s; }
a:hover { color: var(--primary-dark); }

/* Header - Dunkel */
.site-header {
    background: var(--dark-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.8);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(168,213,48,0.1);
}

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

.logo a {
    font-size: 0;
    font-weight: bold;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img { height: 80px; width: auto; }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

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

.main-nav a {
    color: var(--text-white);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav a:hover { color: var(--primary); }

/* Hero - Dunkel mit Overlay */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?w=1920&h=1080&fit=crop') center/cover;
    color: var(--text-white);
    padding: 150px 20px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, var(--dark) 100%);
    pointer-events: none;
}

.hero h1 { 
    font-size: 56px; 
    margin-bottom: 20px; 
    position: relative; 
    z-index: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p { 
    font-size: 22px; 
    margin-bottom: 40px; 
    opacity: 0.95; 
    position: relative; 
    z-index: 1;
    color: var(--text-gray);
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(168,213,48,0.3);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(168,213,48,0.5);
}

/* Sections - Dunkel */
section { padding: 100px 20px; }
section h2 { 
    font-size: 42px; 
    text-align: center; 
    margin-bottom: 60px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bg-light { 
    background: var(--dark-light);
    border-top: 1px solid rgba(168,213,48,0.1);
    border-bottom: 1px solid rgba(168,213,48,0.1);
}

section p {
    color: var(--text-gray);
}

/* Service Grid - Dunkel */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--dark-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
    border: 1px solid rgba(168,213,48,0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(168,213,48,0.3);
    border-color: var(--primary);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card-content { padding: 30px; }
.service-card h3 { 
    font-size: 24px; 
    margin-bottom: 15px;
    color: var(--text-white);
    font-weight: 700;
}
.service-card p { 
    color: var(--text-gray); 
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card a {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Single Page - Dunkel */
.single-page { padding: 100px 20px; }
.single-page h1 { 
    font-size: 48px; 
    margin-bottom: 40px;
    font-weight: 800;
    text-transform: uppercase;
}
.content { 
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.content h2 { 
    font-size: 36px; 
    margin: 50px 0 25px; 
    color: var(--primary);
    font-weight: 700;
}
.content h3 { 
    font-size: 26px; 
    margin: 35px 0 20px;
    color: var(--text-white);
    font-weight: 600;
}
.content p { 
    margin-bottom: 25px;
    color: var(--text-gray);
    line-height: 1.8;
}
.content ul { margin: 25px 0; padding-left: 30px; }
.content li { 
    margin-bottom: 12px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* FAQ - Dunkel */
.faq-item {
    max-width: 800px;
    margin: 0 auto 30px;
    background: var(--dark-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--primary);
    box-shadow: var(--shadow);
}

.faq-item h3 { 
    color: var(--primary); 
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 20px;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Contact - Dunkel */
.contact-preview { 
    text-align: center;
    background: var(--dark-light);
}
.contact-preview h3 { 
    font-size: 38px; 
    color: var(--primary); 
    margin: 25px 0;
    font-weight: 800;
}

/* Footer - Dunkel */
.footer {
    background: var(--dark);
    color: var(--text-gray);
    padding: 80px 20px 30px;
    border-top: 1px solid rgba(168,213,48,0.1);
}

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

.footer h3 { 
    color: var(--primary); 
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; }
.footer a { color: var(--text-gray); }
.footer a:hover { color: var(--primary); }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(168,213,48,0.1);
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .logo img { height: 60px; }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-light);
        box-shadow: 0 4px 20px rgba(0,0,0,0.9);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid rgba(168,213,48,0.1);
    }
    
    .main-nav.active { max-height: 500px; }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .main-nav li {
        border-bottom: 1px solid rgba(168,213,48,0.1);
    }
    
    .main-nav a {
        display: block;
        padding: 18px 0;
    }
    
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 18px; }
    section { padding: 0; padding-top: 20px; }
    section h2 { font-size: 32px; margin-bottom: 40px; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    
    .header-content {
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        padding: 0;
    }
    
    .logo {
        order: 2;
        flex: 1 0 100%;
        text-align: center;
    }
    
    .logo img { height: 90px; }
    
    .mobile-toggle {
        order: 1;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .logo { 
        position: relative; 
        z-index: 1; /* Logo unter dem Hamburger */
    }
    
    .mobile-toggle {
        position: absolute;
        top: 50%;
        right: 20px; /* Abstand vom Rand */
        transform: translateY(-50%);
        z-index: 10; /* Hamburger immer über Logo */
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .main-nav.active { max-height: 500px; }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .main-nav a {
        display: block;
        padding: 15px 0;
    }
    
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
}

  
  .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
  }
  

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .service-grid, .contact-grid {
        grid-template-columns: 1fr;  /* Einspaltig */
    }
    .service-card img, .faq-item {
        height: auto;  /* flexible Höhe */
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }
}

