/* Grundlegende Stile und Farbpalette */
:root {
    --bg-color: #f9f9f9;
    --text-color: #333;
    --header-footer-bg: #ffffff;
    --accent-color: #00AEEF; /* Das Blau aus deinem Logo */
    --white: #ffffff;
    --border-color: #eaeaea;
}

/* Allgemeine Body-Stile und Typografie */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    font-size: 16px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header und Navigation */
.site-header {
    background-color: var(--header-footer-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
    color: var(--text-color);
}

.logo img {
    height: 40px;
    width: auto;
    vertical-align: middle;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav li {
    margin-left: 25px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent-color);
}

/* Hero Sektion */
.hero {
    padding: 80px 0;
    text-align: left;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 2.8em;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero .subtitle {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Button-Stile */
.button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.button:hover {
    background-color: #008fbf; /* Etwas dunklere Variante des Blaus */
    transform: translateY(-2px);
}

/* Allgemeine Sektions-Stile */
.content-section, .offer-section, .contact-section, .benefits-section, .learning-section {
    padding: 80px 0;
}

.content-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.content-section.reverse .container {
    flex-direction: row-reverse;
}

.section-content {
    flex: 1;
}

.section-image {
    flex: 1;
}

.section-image img {
    max-width: 100%;
    border-radius: 8px;
}

h2 {
    font-size: 2.2em;
    margin-bottom: 30px;
}

/* Sektionstitel (zentriert) */
.section-title {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px auto;
}


/* Angebots-Sektion */
.offer-section {
    background-color: var(--header-footer-bg);
}

.offer-section h2 {
    text-align: center;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.offer-card {
    background-color: var(--bg-color);
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.offer-card > *:last-child {
    margin-top: auto;
}


.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.offer-card h3 {
    margin-top: 0;
    font-size: 1.4em;
    color: var(--accent-color);
}

.offer-card .price {
    font-size: 1.4em;
    color: var(--accent-color);
    font-weight: bold;
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Kontakt-Sektion */
.contact-section {
    text-align: center;
    background: url('https://www.transparenttextures.com/patterns/cubes.png') var(--bg-color);
}

.contact-section h2 {
    font-size: 2.2em;
    text-align: center;
}

.contact-section p {
    max-width: 600px;
    margin: 0 auto 30px;
}

.contact-buttons {
    margin-top: 30px;
}
.contact-buttons .button {
    margin: 5px 10px;
}

.button.whatsapp {
    background-color: #25D366;
}
.button.whatsapp:hover {
    background-color: #1DA851;
}

/* "Dein Nutzen" Sektion */
.benefits-section {
    background-color: var(--header-footer-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
}

.benefit-card {
    background-color: var(--bg-color);
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.benefit-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4em;
    color: var(--text-color);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-icon svg {
    width: 48px;
    height: 48px;
    color: var(--accent-color);
}

/* Fusszeile */
.site-footer {
    background-color: var(--header-footer-bg);
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    font-size: 0.9em;
    color: #777;
}

.site-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.site-footer li {
    margin-left: 20px;
}

.site-footer a {
    text-decoration: none;
    color: #777;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: var(--accent-color);
}

/* Stil für den LinkedIn-Link */
.profile-link {
    margin-top: 25px;
}
.profile-link a {
    font-weight: bold;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}
.profile-link a:hover {
    color: #008fbf;
    text-decoration: underline;
}

/* *** NEUE REGEL: Links in Inhalts-Sektionen *** */
.section-content p a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
.section-content p a:hover {
    color: #008fbf;
    text-decoration: underline;
}

/* Stile für den Hamburger-Button */
.nav-toggle {
    display: none; /* Auf Desktop standardmässig unsichtbar */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001; /* Stellt sicher, dass er über anderen Elementen liegt */
}

.nav-toggle .close-icon {
    display: none; /* Schliessen-Icon standardmässig unsichtbar */
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Hamburger-Button auf Mobile anzeigen */
    .nav-toggle {
        display: block;
    }
    .site-header.is-open .nav-toggle .hamburger-icon {
        display: none;
    }
    .site-header.is-open .nav-toggle .close-icon {
        display: block;
    }

    /* Desktop-Navigation in ein mobiles Dropdown umwandeln */
    .main-nav {
        display: none; /* Menü standardmässig verstecken */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--header-footer-bg);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    /* Menü anzeigen, wenn es offen ist */
    .main-nav.is-open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        margin: 0;
        padding: 10px 0;
        width: 100%;
    }

    .main-nav li {
        margin: 0;
    }

    .main-nav a {
        display: block;
        padding: 15px 20px;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }
    .main-nav li:last-child a {
        border-bottom: none;
    }

    .site-header .container {
        flex-direction: row; /* Stellt sicher, dass Logo und Button nebeneinander sind */
        justify-content: space-between;
    }

    .hero .container,
    .content-section .container,
    .content-section.reverse .container {
        flex-direction: column;
        text-align: center;
    }

    /* Passt die Reihenfolge im "Für Wen"-Abschnitt auf Mobile an */
    #fuer-wen .section-content {
        order: 1; /* Textblock bekommt Priorität 1 */
    }
    #fuer-wen .section-image {
        order: 2; /* Bildblock bekommt Priorität 2 und erscheint danach */
    }

    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 2.2em;
    }

    .hero-content {
        margin-bottom: 30px;
    }
}
/* ==========================================================================
   Listen mit blauen Häkchen
   ========================================================================== */

/* Gemeinsame Basis für alle Listen, die blaue Häkchen verwenden sollen */
.learning-list,
.offer-card .features {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Gemeinsame Stile für die Listenelemente */
.learning-list li,
.offer-card .features li {
    position: relative;
    padding-left: 35px; /* Schafft Platz für das Häkchen */
    margin-bottom: 15px; /* Abstand zwischen den Punkten */
    font-size: 1em;
    line-height: 1.6;
}

/* Das ::before Pseudo-Element erzeugt das Häkchen für beide Listen */
.learning-list li::before,
.offer-card .features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px; /* Positioniert das Häkchen vertikal */
    width: 24px;
    height: 24px;
    
    background-color: var(--accent-color);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    mask-size: contain;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    -webkit-mask-size: contain;
}

.learning-list li strong {
    color: var(--text-color);
}