/* =================================
   Grundlegende Stile & Variablen
   ================================= */
:root {
    --charcoal: #414142;
    --accent-green: #41af3b;
    --light-background: #f8f9fa;
    --white: #ffffff;
    --light-text: #ecf0f1;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--charcoal);
    line-height: 1.7;
    background-color: var(--white);
}

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

h1, h2, h3, h4 {
    font-weight: 700;
}

.section-title, .section-title-left {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--charcoal);
}
.section-title { text-align: center; }
.section-title-left { text-align: left; }

.section-intro {
    text-align: center;
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: #6c757d;
}

section {
    padding: 80px 0;
    border-bottom: 1px solid #eef0f2;
}

/* =================================
   Header
   ================================= */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    font-size: 1.5em;
    font-weight: 700;
    white-space: nowrap;
}

.logo svg {
    width: 40px;
    height: auto;
    display: inline-block;
    margin-right: -10px;
    vertical-align: middle;
    overflow: hidden;
}

.logo span {
    font-size: 1.3em;
    font-weight: 600;
    line-height: 1;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

nav a {
    font-size: 1em;
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 600;
    transition: color 0.3s ease;
}
nav a:hover {
    color: var(--accent-green);
}

/* =================================
   Hero Sektion
   ================================= */
#hero {
    background-color: var(--charcoal);
    color: var(--white);
    text-align: center;
    padding: 120px 0;
}
#hero h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

/* =================================
   Leistungen Sektion
   ================================= */
#leistungen {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light-background);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eef0f2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(65, 65, 66, 0.1);
}

.service-card h4 {
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.service-target {
    font-style: italic;
    color: #6c757d;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
    flex-grow: 1;
}

.service-card ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}
.service-card ul li::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: 700;
    position: absolute;
    left: 0;
}

.service-price {
    font-weight: 600;
    margin-top: 20px;
    font-size: 1.1em;
    background-color: #e9f7ef;
    padding: 10px 15px;
    border-radius: 5px;
}

.service-price ul {
    margin-top: 10px;
    font-weight: 400;
    font-size: 0.9em;
}
.service-price strong {
    font-weight: 700;
}
.service-benefit {
    background-color: #e9f7ef;
    color: #1e6b41;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    border-left: 4px solid var(--accent-green);
}

/* =================================
   Über Mich Sektion
   ================================= */
#ueber-mich {
    background-color: var(--light-background);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
}
.about-image img {
    width: 100%;
    max-width: 320px;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(65, 65, 66, 0.15);
}

.about-text {
    flex: 1.8;
}
.about-text strong {
    color: var(--charcoal);
}

/* =================================
   Kundenstimmen Sektion
   ================================= */
#kundenstimmen {
    background-color: var(--white);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background-color: var(--light-background);
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid var(--accent-green);
    position: relative;
}
.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 5px;
    left: 15px;
    font-size: 5em;
    color: rgba(65, 65, 66, 0.08);
    z-index: 1;
}
.testimonial-card blockquote {
    margin: 0;
    padding: 0;
    font-size: 1.1em;
    font-style: italic;
    position: relative;
    z-index: 2;
}
.client-name {
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 0;
    color: var(--charcoal);
}
.client-company {
    font-size: 0.9em;
    margin-top: 0;
}

/* =================================
   Kontakt Sektion
   ================================= */
#kontakt {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.contact-box {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}
.contact-info p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2em;
}
.contact-info a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
}

.contact-button-wrapper {
    text-align: center;
}

.cta-button {
    background-color: var(--accent-green);
    color: var(--white);
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: inline-block;
}
.cta-button:hover {
    transform: scale(1.05);
    background-color: #4ed948;
}

/* =================================
   Footer
   ================================= */
footer {
    background: #f1f1f1;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
    color: #666;
}
footer p {
    margin: 5px 0;
}
footer a {
    color: #666;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* =================================
   Impressum etc.
   ================================= */
.content-section {
    background-color: var(--white);
    padding: 80px 0;
}
.content-section .container {
    max-width: 800px;
}
.content-section h1 {
    text-align: center;
    margin-bottom: 40px;
}
.content-section h2 {
    margin-top: 40px;
    border-bottom: 2px solid #eef0f2;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.content-section a {
    color: var(--accent-green);
    font-weight: 600;
    text-decoration: underline;
}
.content-section a:hover {
    text-decoration: none;
}

/* =================================
   Optional: Accessibility & Print
   ================================= */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation-duration: 0s !important;
    }
}
@media print {
    header, footer, nav {
        display: none;
    }
    section {
        padding: 0;
        border: none;
    }
    body {
        color: #000;
        background: #fff;
    }
}
/* ===============================
   Responsive Menü & Burger
   =============================== */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
}

.burger span,
.burger::before,
.burger::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    z-index: 999;
  }

  nav ul.active {
    display: flex;
  }

  .burger {
    display: flex;
  }
}
