/* Globale Variablen */
:root {
    --color-cream: #F3E9DC;
    --color-caramel: #C08552;
    --color-brownie: #5E3023;
    --color-coffee: #895737;
    --color-slate-blue: #708090; /* Für den Header wie gewünscht */
    --color-white: #FFFFFF;
    --color-dark: #1A1A1A;
}

/* Reset-Logik OHNE * Selektor */
html, body, div, span, h1, h2, h3, h4, p, a, ul, li, header, nav, section, footer, button, img {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Animierter Hintergrund für die Website */
body.site-body {
    background: linear-gradient(135deg, var(--color-cream), #faeedc, var(--color-cream));
    background-size: 400% 400%;
    animation: bgAnimation 15s ease infinite;
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes bgAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Loader */
.page-loader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--color-cream);
    z-index: 9999; display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    transition: opacity 0.6s ease;
}
.loader-spinner {
    width: 60px; height: 60px;
    border: 5px solid var(--color-caramel);
    border-top: 5px solid var(--color-brownie);
    border-radius: 50%;
    animation: spinLoader 1s linear infinite;
    margin-bottom: 20px;
}
.loader-text {
    font-size: 1.2rem; font-weight: 600; color: var(--color-brownie);
}
@keyframes spinLoader { 100% { transform: rotate(360deg); } }

/* Ad Banner */
.top-ad-banner {
    background-color: var(--color-brownie);
    text-align: center; padding: 10px;
}
.ad-banner-text {
    color: var(--color-white); font-size: 0.85rem; font-weight: 300;
}

/* Header */
.main-header {
    background-color: var(--color-slate-blue);
    padding: 15px 5%;
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.header-inner {
    display: flex; justify-content: space-between; align-items: center;
}
.brand-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-style: italic; font-weight: 700;
    color: var(--color-white); text-decoration: none;
    letter-spacing: 1px;
}
.desktop-navigation .nav-menu {
    list-style: none; display: flex; gap: 30px;
}
.nav-link {
    color: var(--color-white); text-decoration: none; font-weight: 400;
    transition: color 0.3s;
}
.nav-link:hover { color: var(--color-cream); }

.shop-btn {
    background-color: var(--color-caramel); color: var(--color-white);
    padding: 10px 25px; border-radius: 25px; text-decoration: none;
    font-weight: 600; transition: background 0.3s, transform 0.2s;
    display: inline-block;
}
.shop-btn:hover {
    background-color: var(--color-brownie); transform: scale(1.05);
}

/* Mobile Menu */
.menu-toggle-btn {
    display: none; background: none; border: none;
    font-size: 2rem; color: var(--color-white); cursor: pointer;
}
.mobile-sidebar {
    position: fixed; top: 0; right: -100%;
    width: 75%; height: 100vh;
    background-color: var(--color-slate-blue);
    z-index: 2000; transition: right 0.4s ease-in-out;
    padding: 60px 30px; box-shadow: -5px 0 20px rgba(0,0,0,0.2);
}
.mobile-sidebar.open { right: 0; }
.close-sidebar-btn {
    background: none; border: none; font-size: 2.5rem; color: var(--color-white);
    position: absolute; top: 15px; right: 20px; cursor: pointer;
}
.mobile-menu-list { list-style: none; display: flex; flex-direction: column; gap: 25px; }
.mobile-nav-link {
    color: var(--color-white); text-decoration: none; font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    display: flex; align-items: center; justify-content: space-between;
    padding: 60px 5%; min-height: 80vh; gap: 40px;
}
.hero-image-box { flex: 1; text-align: center; }
.hero-product-img {
    max-width: 90%; border-radius: 15px;
    box-shadow: 0 15px 35px rgba(94, 48, 35, 0.2);
    animation: floatImage 4s ease-in-out infinite;
}
@keyframes floatImage {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

.hero-text-box { flex: 1; }
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; color: var(--color-brownie); margin-bottom: 20px; line-height: 1.2;
}
.hero-subtitle {
    font-size: 1.1rem; color: var(--color-coffee); margin-bottom: 35px;
}
.hero-cta-btn {
    background-color: var(--color-brownie); color: var(--color-white);
    padding: 15px 40px; border-radius: 30px; text-decoration: none;
    font-size: 1.2rem; font-weight: 600; display: inline-block;
    transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(94, 48, 35, 0.3);
}
.hero-cta-btn:hover {
    background-color: var(--color-caramel); transform: translateY(-3px);
}

/* Allgemeine Sektionen */
.content-section { padding: 80px 5%; }
.why-us-bg { background-color: rgba(255, 255, 255, 0.4); }
.section-wrapper { max-width: 1200px; margin: 0 auto; text-align: center; }
.section-heading {
    font-family: 'Playfair Display', serif; font-size: 2.5rem;
    color: var(--color-brownie); margin-bottom: 30px;
}
.section-paragraph {
    font-size: 1.1rem; max-width: 800px; margin: 0 auto; color: var(--color-coffee);
}

/* Grid Layouts (Warum wir & Kundenstimmen) */
.feature-grid, .review-grid {
    display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; margin-top: 40px;
}
.feature-item, .review-card {
    background-color: var(--color-white); padding: 40px 30px;
    border-radius: 15px; flex: 1; min-width: 280px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.feature-item:hover, .review-card:hover { transform: translateY(-10px); }
.feature-icon { font-size: 3rem; display: block; margin-bottom: 20px; }
.feature-title, .review-name {
    font-size: 1.3rem; color: var(--color-brownie); margin-bottom: 15px; font-weight: 600;
}
.feature-desc, .review-text { color: var(--color-coffee); font-size: 1rem; }

.review-header { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 20px; }
.review-avatar {
    width: 60px; height: 60px; background-color: var(--color-caramel);
    color: var(--color-white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 1.3rem;
}

/* FAQs */
.faq-container { max-width: 800px; margin: 40px auto 0; text-align: left; }
.faq-box {
    background-color: var(--color-white); padding: 20px 25px;
    margin-bottom: 15px; border-radius: 10px; cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05); transition: background 0.3s;
}
.faq-box:hover { background-color: var(--color-cream); }
.faq-question { font-size: 1.1rem; color: var(--color-brownie); font-weight: 600; }
.faq-answer { display: none; margin-top: 15px; color: var(--color-coffee); font-size: 1rem; }

/* Footer */
.main-footer {
    background-color: var(--color-dark); color: var(--color-white);
    padding: 60px 5% 20px;
}
.footer-inner {
    display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; max-width: 1200px; margin: 0 auto 40px;
}
.footer-block { flex: 1; min-width: 250px; }
.footer-title { color: var(--color-caramel); margin-bottom: 20px; font-size: 1.4rem; font-family: 'Playfair Display', serif;}
.footer-text, .footer-list-item { margin-bottom: 12px; font-size: 0.95rem; }
.footer-list { list-style: none; }
.footer-link {
    color: var(--color-white); text-decoration: none; transition: color 0.3s;
}
.footer-link:hover { color: var(--color-cream); }
.footer-modal-btn {
    background: none; border: none; color: var(--color-white);
    font-size: 0.95rem; cursor: pointer; text-align: left; padding: 0; transition: color 0.3s;
}
.footer-modal-btn:hover { color: var(--color-cream); }

.footer-disclaimer-box {
    border-top: 1px solid #333; padding-top: 25px; text-align: center; margin-bottom: 15px;
}
.footer-disclaimer-text { font-size: 0.8rem; color: #aaa; max-width: 1000px; margin: 0 auto; }
.footer-copy-box { text-align: center; }
.footer-copy-text { font-size: 0.9rem; color: #888; }

/* Modals */
.modal-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7); display: none;
    justify-content: center; align-items: center; z-index: 3000;
}
.modal-bg.show { display: flex; }
.modal-card {
    background-color: var(--color-cream); padding: 40px; border-radius: 15px;
    width: 90%; max-width: 600px; position: relative; color: var(--color-dark);
}
.modal-close-btn {
    position: absolute; top: 15px; right: 20px; background: none;
    border: none; font-size: 1.8rem; cursor: pointer; color: var(--color-brownie);
}
.modal-heading { color: var(--color-brownie); margin-bottom: 20px; font-family: 'Playfair Display', serif;}
.modal-info { margin-bottom: 10px; font-size: 0.95rem; }
.modal-link { color: var(--color-caramel); text-decoration: none; font-weight: bold;}

/* Cookie Banner */
.cookie-popup {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background-color: var(--color-dark); color: var(--color-white);
    padding: 20px 5%; display: flex; justify-content: space-between; align-items: center;
    z-index: 4000; box-shadow: 0 -5px 15px rgba(0,0,0,0.3); display: none;
}
.cookie-message { flex: 1; margin-right: 30px; font-size: 0.9rem; }
.cookie-buttons { display: flex; gap: 15px; }
.cookie-btn { padding: 10px 25px; border-radius: 5px; border: none; font-weight: 600; cursor: pointer; transition: opacity 0.3s;}
.cookie-btn:hover { opacity: 0.8; }
.cookie-accept { background-color: var(--color-caramel); color: var(--color-white); }
.cookie-reject { background-color: transparent; border: 1px solid var(--color-white); color: var(--color-white); }

/* Responsive (Mobile) */
@media (max-width: 992px) {
    .hero-section { flex-direction: column; text-align: center; padding-top: 40px; }
    .hero-title { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .desktop-navigation, .shop-btn { display: none; }
    .menu-toggle-btn { display: block; }
    .cookie-popup { flex-direction: column; text-align: center; gap: 20px; }
    .cookie-message { margin-right: 0; }
    .hero-product-img { max-width: 100%; }
}