/* ===== GRUNDLEGENDE EINSTELLUNGEN ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    overflow-x: hidden;
}

/* ===== HERO-BEREICH MIT VOLLBILDHINTERGRUND ===== */
.hero {
    background: 
        linear-gradient(rgba(40, 40, 40, 0.7), rgba(20, 20, 20, 0.8)),
        url(image/flockbsp.jpg) 
        center/cover no-repeat fixed;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
}

.hero-title {
    font-family: 'Source Serif Pro', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFA726;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-tagline strong {
    color: #FFA726;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-button {
    display: inline-block;
    background-color: #FF8A00;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 138, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-button:hover {
    background-color: #FF9800;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 138, 0, 0.4);
}

.hero-button.secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    box-shadow: none;
}

.hero-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    color: white;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.arrow-down {
    width: 20px;
    height: 20px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(45deg);
    margin-top: 5px;
}

/* ===== STRUKTURIERTER GRAUER HINTERGRUND FÜR DEN INHALT ===== */
.content-background {
    background-color: #f8f9fa;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(200, 200, 200, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 85% 30%, rgba(150, 150, 150, 0.05) 0%, transparent 20%);
    position: relative;
    z-index: 1;
}

/* ===== ALLGEMEINE SEKTIONEN ===== */
.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Source Serif Pro', serif;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #FF8A00, #FF5252);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
    color: #555;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.accent-text {
    color: #D84315;
    font-weight: 700;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #444;
}

/* ===== PROBLEM-SEKTION ===== */
.problem-section {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    margin-top: -4rem;
    position: relative;
    z-index: 2;
}

.problem-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.problem-card {
    background: linear-gradient(to bottom, #ffffff, #fafafa);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #FF8A00;
    transition: all 0.4s ease;
    text-align: center;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 138, 0, 0.1);
}

.problem-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.problem-card p {
    color: #666;
    line-height: 1.7;
}

.highlight-quote {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.8;
    padding: 3rem;
    background: linear-gradient(135deg, #FFF3E0, #FFECB3);
    border-left: 6px solid #FF8A00;
    border-radius: 0 12px 12px 0;
    max-width: 900px;
    margin: 3rem auto 0;
    font-style: italic;
    color: #5D4037;
}

.highlight-quote cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: #795548;
    font-style: normal;
    font-weight: 600;
}

/* ===== ANGEBOT-SEKTION ===== */
.offer-section {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.offer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.offer-category {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
}

.offer-category h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.offer-icon {
    font-size: 1.8rem;
}

.offer-list {
    list-style-type: none;
    padding-left: 0;
}

.offer-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.offer-list li:before {
    content: "•";
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.offer-note {
    background-color: #FFF3E0;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #FF8A00;
    margin-top: 2rem;
}

/* ===== REFERENZEN-SEKTION ===== */
.references-section {
    padding-top: 4rem;
}

.references-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.reference-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #2196F3;
}

.reference-item h3 {
    color: #2c3e50;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.reference-item ul {
    list-style-type: none;
    padding-left: 0;
}

.reference-item li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.reference-item li:before {
    content: "✓";
    color: #2196F3;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.experience-note {
    background-color: #E8F5E9;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    border-left: 5px solid #4CAF50;
}

.experience-note h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* ===== LÖSUNGS-SEKTION ===== */
.solution-section {
    padding-top: 4rem;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit {
    background-color: white;
    padding: 2rem 1.8rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #4CAF50;
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    margin-right: 10px;
    font-weight: bold;
}

.benefit h3 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.benefit p {
    color: #666;
    line-height: 1.6;
}

/* ===== KONTAKT-SEKTION ===== */
.contact-section {
    padding-bottom: 8rem;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 5px solid #2196F3;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.1);
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.contact-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 1.5rem 0 !important;
}

.contact-highlight a {
    color: #2196F3;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-highlight a:hover {
    color: #0D47A1;
    text-decoration: underline;
}

/* ===== FOOTER ===== */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 0;
}

footer p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

footer strong {
    color: #FF8A00;
    font-weight: 700;
}

.footer-links {
    margin-top: 2rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FF8A00;
}

/* ===== RESPONSIVE ANPASSUNGEN ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.2rem;
    }
    .hero-subtitle {
        font-size: 1.8rem;
    }
    .section {
        padding: 5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.7rem;
    }
    .hero-subtitle {
        font-size: 1.6rem;
    }
    .section-title {
        font-size: 2.3rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-button, .hero-button.secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    .problem-container,
    .offer-container,
    .references-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .problem-section {
        margin-top: -2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.4rem;
    }
    .hero-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    .section {
        padding: 4rem 1rem;
    }
    .highlight-quote {
        padding: 2rem 1rem;
        font-size: 1.2rem;
    }
    .offer-category, .reference-item {
        padding: 1.2rem;
    }
}