/* --- VARIABLES & BASE STYLES --- */
:root {
    /* Sonnenblumen-Palette */
    --bg-color: #FEFDF8;
    /* Very light, warm off-white */
    --text-color: #1a2e35;
    /* Very dark green-blue, almost black */
    --primary-accent: #F7B801;
    /* Sunflower Yellow */
    --secondary-accent: #588157;
    /* Calming Green */
    --secondary-bg: #E9F5DB;
    /* Very light green */
    --tertiary-bg: #FFF8E1;
    /* Light warm beige for About Me */
    --border-color: #DDE5B6;
    /* Light green border */
    --sky-blue: #588157;
    /* Sky Blue for hero */

    --heading-font: 'Oswald', sans-serif;
    --body-font: 'Lora', serif;
}

body {
    font-family: var(--body-font);
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    line-height: 1.8;
}

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

section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

section:last-of-type {
    border-bottom: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--heading-font);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary-accent);
    /* Green headings */
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 1.5rem;
}

/* Sub-heading in hero */
h3 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

/* Section titles */
h4 {
    font-size: 1.2rem;
}

ul {
    list-style: disc;
    padding-left: 20px;
}

ul li {
    padding-left: 0;
    position: relative;
    margin-bottom: 15px;
    list-style-position: inside;
}

ul li::marker {
    color: var(--primary-accent);
    /* Yellow bullet points */
}



/* --- AIDA SECTION STYLING --- */

/* [Sektion 1: ATTENTION - Hero] */
#attention {
    /* Background Color for ATTENTION section */
    background-color: var(--sky-blue);
    /* Assuming sky-blue is the new background */
    padding: 100px 0;
    text-align: center;
    color: var(--bg-color);
    /* Make all text in hero white */
}

#attention h1 {
    margin-bottom: 40px;
    color: var(--bg-color);
    /* Ensure h1 is white */
}

.hero-content-split {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
}

.hero h2 {
    font-weight: 400;
    font-family: var(--body-font);
    font-style: italic;
    text-transform: none;
    color: var(--bg-color);
    /* Ensure h2 is white */
    margin-bottom: 30px;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 0 40px 0;
    color: var(--bg-color);
    /* Ensure p is white */
}

/* Button specific styling within hero */
#attention .button {
    background-color: var(--primary-accent);
    color: var(--text-color);
    /* Dark text on yellow button */
}

#attention .button:hover {
    background-color: #fdd85d;
    /* Lighter yellow on hover */
    color: var(--text-color);
}

/* [Sektion 2: INTEREST - Problem] */
#interest {
    background-color: var(--bg-color);
}

/* [New Section: ABOUT ME] */
#about-me {
    background-color: var(--tertiary-bg);
}

.about-split {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 8px;
    object-fit: cover;
}


/* [Sektion 3: DESIRE - Story] */
#desire-story {
    background-color: var(--secondary-bg);
}

#desire-story .subheading {
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    margin-top: -20px;
    margin-bottom: 40px;
}

/* [Sektion 4: DESIRE - Offer] */
#desire-offer {
    background-color: var(--bg-color);
}

.offer-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 50px 0;
}

.step {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.step h4 {
    display: flex;
    align-items: center;
    margin-top: 0;
}

.step-icon {
    width: 40px;
    /* Slightly larger for icons */
    height: auto;
    margin-right: 15px;
    flex-shrink: 0;
}

blockquote {
    text-align: center;
    font-size: 1.4rem;
    font-style: italic;
    margin: 60px 0 0 0;
    padding: 20px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

blockquote::before,
blockquote::after {
    color: var(--secondary-accent);
}

/* [Sektion 5: SOCIAL PROOF - Trust] */
#social-proof {
    background-color: var(--secondary-bg);
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    text-align: center;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
}

.testimonial cite {
    display: block;
    margin-top: 10px;
    font-weight: 700;
    font-style: normal;
    color: var(--secondary-accent);
}

/* [Sektion 6: ACTION - CTA] */
#action {
    background-color: var(--secondary-accent);
    color: var(--bg-color);
    text-align: center;
}

#action h3 {
    color: var(--primary-accent);
}

/* Text above the form */
#action .container>p {
    font-size: 1.5rem;
    /* Change this value to adjust the text size */
    margin-bottom: 30px;
}

#action a {
    color: var(--bg-color);
}

#action a:hover {
    color: var(--primary-accent);
}

.contact-direct {
    margin-top: 30px;
    font-size: 0.9rem;
}

.contact-direct a {
    text-decoration: underline;
}


/* --- BUTTONS & FOOTER --- */
.button {
    display: inline-block;
    background-color: var(--primary-accent);
    color: var(--text-color);
    padding: 18px 40px;
    border-radius: 5px;
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.button:hover {
    transform: translateY(-3px);
    background-color: #fdd85d;
    /* Lighter yellow on hover */
}

footer {
    padding: 40px 0;
    text-align: center;
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: #999;
}

/* --- RESPONSIVE --- */
@media (min-width: 769px) {
    .offer-steps {
        flex-direction: row;
        gap: 30px;
    }

    .hero-image {
        display: block;
        /* Shown on large screens */
    }
}

/* --- MOBILE INTERACTIVE ELEMENTS --- */
/* Default state (Desktop): Everything visible, no carousels */
.mobile-toggle-btn {
    display: none;
}

.carousel-nav {
    display: none;
}

/* Mobile overrides for interactive elements */
@media (max-width: 768px) {

    /* Collapse lists on mobile */
    ul li.hidden-mobile {
        display: none;
    }

    .mobile-toggle-btn {
        display: block;
        margin: 20px auto 0;
        background: transparent;
        border: 2px solid var(--primary-accent);
        color: var(--text-color);
        padding: 10px 20px;
        border-radius: 20px;
        cursor: pointer;
        font-family: var(--heading-font);
        font-size: 0.9rem;
    }

    /* Carousel Styles */
    .carousel-container {
        overflow: hidden;
        position: relative;
        padding-bottom: 40px;
        /* Space for dots */
    }

    .carousel-track {
        display: flex;
        transition: transform 0.3s ease-in-out;
        width: 100%;
    }

    .carousel-slide {
        min-width: 100%;
        box-sizing: border-box;
        padding: 0 10px;
    }

    .carousel-nav {
        display: flex;
        justify-content: center;
        gap: 10px;
        position: absolute;
        bottom: 0;
        width: 100%;
    }

    .carousel-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ddd;
        cursor: pointer;
    }

    .carousel-dot.active {
        background-color: var(--primary-accent);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
        /* Reduced from 2.8rem */
        margin-bottom: 20px;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.8rem;
        /* Reduced from 2rem */
        margin-bottom: 30px;
    }

    section {
        padding: 40px 0;
        /* Reduced from 60px */
    }

    .hero-content-split {
        flex-direction: column;
        gap: 30px;
    }

    .hero-text {
        text-align: center;
    }

    .about-split {
        flex-direction: column;
        gap: 30px;
    }

    /* Reduce margin for lists on mobile */
    ul {
        margin-bottom: 20px;
    }

    .hero p {
        margin-bottom: 30px;
    }
}

/* --- CONTACT FORM --- */
.contact-form {
    margin-top: 40px;
    padding-top: 30px;
}

.contact-form p {
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-form input[type="email"] {
    padding: 18px 20px;
    border-radius: 5px;
    border: none;
    width: 100%;
    max-width: 300px;
    font-family: var(--body-font);
    font-size: 1rem;
    outline: none;
}

.contact-form input[type="email"]:focus {
    box-shadow: 0 0 0 3px rgba(247, 184, 1, 0.5);
}

/* Ensure button works for <button> elements */
button.button {
    border: none;
    cursor: pointer;
    font-size: 1rem;
}