/* Custom Properties / Variablen */
:root {
    --golden-yellow: #FFC107;
    --deep-charcoal: #2C3E50; /* Dunkles Blau-Grau */
    --light-gray: #F5F7FA;
    --light-coral: #F08080;
    --white: #FFFFFF;
    --black: #000000;
}

/* Reset using specific selectors (vermeidung von *) */
html, body, div, section, header, footer, h1, h2, h3, h4, p, a, ul, li, button, span, i, img, nav {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Body & Animierter Hintergrund */
.page-body {
    background: linear-gradient(120deg, var(--light-gray), #e8ecf1, var(--light-gray));
    background-size: 200% 200%;
    animation: gradientBG 10s ease infinite;
    overflow-x: hidden;
    color: var(--deep-charcoal);
}
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.loader-circle {
    width: 60px;
    height: 60px;
    border: 6px solid var(--light-gray);
    border-top-color: var(--golden-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.loader-text {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--deep-charcoal);
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* Ad Banner */
.ad-banner {
    background-color: var(--light-gray);
    text-align: center;
    padding: 8px;
}
.ad-text {
    font-size: 0.8rem;
    color: #555;
}

/* Header */
.main-header {
    background-color: var(--deep-charcoal);
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
}
.logo-highlight {
    color: var(--golden-yellow);
}

/* Navigation Desktop */
.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
}
.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--golden-yellow);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.btn-shop, .btn-primary {
    background-color: var(--golden-yellow);
    color: var(--deep-charcoal);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, background-color 0.3s;
    border: none;
    cursor: pointer;
}
.btn-shop:hover, .btn-primary:hover {
    background-color: #e0a800;
    transform: scale(1.05);
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
}
.close-menu {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    min-height: 80vh;
}
.hero-content {
    flex: 1;
    max-width: 600px;
}
.hero-title {
    font-size: 3.5rem;
    color: var(--deep-charcoal);
    margin-bottom: 20px;
    line-height: 1.1;
}
.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #444;
}
.hero-image-box {
    flex: 1;
    display: flex;
    justify-content: center;
}
.floating-img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    animation: floatImg 4s ease-in-out infinite;
}
@keyframes floatImg {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Generische Sektionen */
.about-section, .features-section, .testimonials-section, .faq-section {
    padding: 80px 5%;
}
.section-heading {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--deep-charcoal);
}
.text-center { text-align: center; }
.section-p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Grid Layouts */
.about-grid, .features-grid, .testimonials-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}
.about-grid { grid-template-columns: 1fr 1fr; }
.features-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.testimonials-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* Interaktive Bilder */
.about-img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.4s ease;
}
.hover-zoom:hover { transform: scale(1.03); }

/* Feature Cards */
.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.feature-card:hover { transform: translateY(-10px); }
.feature-icon {
    font-size: 3rem;
    color: var(--light-coral);
    margin-bottom: 15px;
}
.feature-title { margin-bottom: 15px; }

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}
.testimonial-avatar {
    width: 50px; height: 50px;
    background: var(--light-coral);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.testimonial-text { font-style: italic; margin-bottom: 15px; }
.testimonial-name { color: var(--deep-charcoal); }

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.faq-question { margin-bottom: 10px; color: var(--deep-charcoal); }
.faq-answer { color: #555; line-height: 1.5; }

/* Footer */
/* Footer Styles (Replace your old footer CSS with this) */
.main-footer {
    background: var(--deep-charcoal);
    color: var(--white);
    padding: 50px 5% 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Forces 3 columns */
    gap: 40px;
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Stacks columns on mobile */
    }
}
.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--golden-yellow);
}
.footer-p { margin-bottom: 10px; color: #ccc; }
.footer-link, .footer-link-block {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-link:hover, .footer-link-block:hover { color: var(--golden-yellow); }
.footer-link-block {
    display: block;
    margin-bottom: 10px;
}
.modal-trigger {
    background: transparent;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 1rem;
    display: block;
    margin-bottom: 10px;
    text-align: left;
    transition: color 0.3s;
    padding: 0;
}
.modal-trigger:hover { color: var(--golden-yellow); }

.footer-bottom-section {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}
.disclaimer {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 15px;
}
.footer-copy {
    font-size: 0.9rem;
    color: #aaa;
}

/* Modals */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}
.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    position: relative;
    color: var(--deep-charcoal);
}
.close-modal {
    position: absolute;
    top: 10px; right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--deep-charcoal);
}
.modal-body h3 { margin-bottom: 15px; color: var(--deep-charcoal); }
.modal-body p { margin-bottom: 10px; line-height: 1.5; }

/* Cookie Pop-up */
/* Cookie Pop-up - High Specificity */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 450px;
    background-color: #2C3E50; /* Deep Charcoal Gray */
    color: #FFFFFF;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    z-index: 10000; /* Extra high to beat any other element */
    display: none; /* JS will change this to flex */
    flex-direction: column;
    gap: 15px;
    text-align: center;
    border: 1px solid #FFC107; /* Golden Yellow border for flair */
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 5px;
}

.cookie-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-accept {
    background-color: #FFC107; /* Golden Yellow */
    color: #2C3E50;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-reject {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept:hover { background-color: #e0a800; }
.btn-reject:hover { opacity: 0.7; }

/* Responsive (Mobile) */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    .hero-title { font-size: 2.5rem; }
    .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .hamburger, .close-menu { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--deep-charcoal);
        flex-direction: column;
        padding: 80px 30px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }
    .nav-menu.active { right: 0; }
    .nav-list {
        flex-direction: column;
        gap: 30px;
    }
    .nav-link { font-size: 1.2rem; }
}