/* 
  Design-System für Starkmix
  Premium, Modern, Deutsch-zentriert
*/

:root {
    --primary-color: #2d3436;
    --secondary-color: #636e72;
    --accent-color: #00b894;
    /* Frisches Smoothie-Grün */
    --text-color: #2d3436;
    --light-text: #636e72;
    --bg-color: #ffffff;
    --section-bg: #f5f6fa;
    --footer-bg: #1e272e;
    --footer-text: #d2dae2;
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --max-width: 1200px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hilfsklassen, um direktes Styling von Elementen zu vermeiden */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

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

/* Werbe-Leiste oben */
.top-ad-bar {
    background-color: #f1f2f6;
    color: #57606f;
    font-size: 13px;
    text-align: center;
    padding: 8px 10px;
    border-bottom: 1px solid #dfe4ea;
}

.ad-text-top {
    margin: 0;
    font-weight: 500;
}

/* Lade-Bildschirm */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Kopfzeile */
.header-main {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

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

.logo-link {
    text-decoration: none;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-color);
}

.header-cta {
    background-color: var(--accent-color);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 184, 148, 0.4);
}

/* Mobiles Menü */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background-color: white;
    z-index: 2000;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
}

.mobile-overlay.active {
    right: 0;
}

.close-menu-btn {
    align-self: flex-end;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    margin-bottom: 25px;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
}

/* Haupt-Bereich (Hero) */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f6fa 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    max-width: 550px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(0, 184, 148, 0.1);
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 35px;
    display: block;
}

.hero-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.hero-cta:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

.hero-image-wrapper {
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

/* Über uns Bereich */
.about-section {
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-container {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
}

.about-heading {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 20px;
}

/* Warum wir Bereich */
.features-section {
    background-color: var(--section-bg);
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 184, 148, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    color: var(--accent-color);
    font-size: 30px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-desc {
    color: var(--light-text);
    font-size: 15px;
}

/* Kundenmeinungen */
.testimonials-section {
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: var(--section-bg);
}

.testimonial-stars {
    color: #f1c40f;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
}

/* FAQ-Bereich (Häufige Fragen) */
.faq-section {
    background-color: var(--section-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.faq-question-btn {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--light-text);
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 300px;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Fußzeile */
.footer-main {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo-box {
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

.footer-about-text {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.8;
}

.footer-heading {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-item {
    margin-bottom: 12px;
}

.footer-link {
    text-decoration: none;
    color: var(--footer-text);
    font-size: 14px;
    transition: var(--transition);
}

.footer-link:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact-info {
    font-size: 14px;
}

.contact-line {
    margin-bottom: 10px;
    display: block;
}

.ad-note-footer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
}

/* Cookie-Fenster */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 500px;
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 3000;
    display: none;
    /* Wird via JS angezeigt */
}

.cookie-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cookie-text {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 20px;
}

.cookie-btns {
    display: flex;
    gap: 15px;
}

.cookie-accept-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    flex: 1;
}

.cookie-reject-btn {
    background-color: #f1f2f6;
    color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    flex: 1;
}

/* Modale Fenster für Impressum etc. */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 4000;
    display: none;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
}

.modal-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
}

.modal-body {
    line-height: 1.8;
}

.modal-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.modal-list-item {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.modal-list-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Responsive Anpassungen */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .header-cta,
    .nav-menu {
        display: none;
    }

    .hamburger-btn {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}