/* Globale Variablen - Farbschema */
:root {
    --charcoal-grey: #2C3033;
    --leather-brown: #6A4026;
    --gold-accent: #D4AF37;
    --gold-hover: #b5952f;
    --cream: #FFFDD0;
    --white: #FFFFFF;
    --text-dark: #1a1a1a;
}

/* Base / Reset (ohne '*') */
html, body, div, span, h1, h2, h3, h4, p, a, img, ul, li, header, section, footer, nav, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

.site-body {
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Animation */
@keyframes bgShift {
    0% { background-color: #FFFDD0; }
    50% { background-color: #fcf9b8; }
    100% { background-color: #FFFDD0; }
}
.site-body {
    animation: bgShift 15s infinite ease-in-out;
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--charcoal-grey);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
.loader-circle {
    border: 5px solid var(--leather-brown);
    border-top: 5px solid var(--gold-accent);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}
.loader-text {
    color: var(--gold-accent);
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: bold;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Ad Banner */
.ad-banner {
    background-color: var(--white);
    color: #555;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
    border-bottom: 1px solid #ddd;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--gold-accent);
    color: var(--charcoal-grey);
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
}
.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--charcoal-grey);
    padding: 10px 22px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid var(--charcoal-grey);
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}
.btn-secondary:hover {
    background-color: var(--charcoal-grey);
    color: var(--white);
}

/* Header */
.main-header {
    background-color: var(--charcoal-grey);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 5%;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.logo-text {
    color: var(--gold-accent);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}
.nav-list {
    list-style: none;
    display: flex;
    gap: 25px;
}
.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}
.nav-link:hover {
    color: var(--gold-accent);
}

/* Mobile Menu */
.hamburger-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.bar {
    width: 25px;
    height: 3px;
    background-color: var(--gold-accent);
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background-color: var(--charcoal-grey);
    z-index: 2000;
    transition: right 0.4s ease;
    padding: 40px 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
}
.mobile-menu.active {
    right: 0;
}
.close-btn {
    color: var(--gold-accent);
    font-size: 2.5rem;
    position: absolute;
    top: 20px;
    right: 25px;
    cursor: pointer;
}
.mobile-nav-list {
    list-style: none;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.3rem;
}
.mobile-shop-btn {
    text-align: center;
    margin-top: 20px;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 80vh;
}
.hero-content {
    flex: 1;
    padding-right: 40px;
}
.hero-heading {
    font-size: 3.5rem;
    color: var(--charcoal-grey);
    margin-bottom: 20px;
    line-height: 1.1;
}
.hero-subheading {
    font-size: 1.2rem;
    color: var(--leather-brown);
    margin-bottom: 30px;
}
.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}
.animated-product-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    animation: floatImage 4s ease-in-out infinite;
    filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.2));
}
@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* About Section */
.about-section {
    padding: 80px 5%;
    background-color: var(--white);
}
.about-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}
.about-text-content, .about-image-content {
    flex: 1;
}
.section-heading {
    font-size: 2.5rem;
    color: var(--charcoal-grey);
    margin-bottom: 20px;
}
.text-center {
    text-align: center;
}
.section-paragraph {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #444;
}
.price-tag {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--leather-brown);
    margin-top: 20px;
    padding: 10px;
    border-left: 4px solid var(--gold-accent);
    background-color: var(--cream);
}
.about-product-image {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s;
}
.about-product-image:hover {
    transform: scale(1.05);
}

/* Why Us Section */
.why-us-section {
    padding: 80px 5%;
    background-color: var(--cream);
}
.features-grid {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 40px auto 0;
    gap: 30px;
}
.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.feature-card:hover {
    transform: translateY(-10px);
}
.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}
.feature-title {
    color: var(--leather-brown);
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 5%;
    background-color: var(--charcoal-grey);
    color: var(--white);
}
.testimonials-section .section-heading {
    color: var(--gold-accent);
}
.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}
.testimonial-card {
    background-color: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 8px;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}
.customer-avatar {
    width: 60px;
    height: 60px;
    background-color: var(--gold-accent);
    color: var(--charcoal-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 10px;
}
.customer-name {
    font-weight: bold;
    color: var(--gold-accent);
}

/* FAQs */
.faq-section {
    padding: 80px 5%;
    background-color: var(--white);
}
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}
.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.faq-question {
    width: 100%;
    text-align: left;
    background-color: #f9f9f9;
    padding: 15px 20px;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--charcoal-grey);
    cursor: pointer;
    transition: background-color 0.3s;
}
.faq-question:hover {
    background-color: #eee;
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: var(--white);
}
.faq-answer.open {
    padding: 15px 20px;
    max-height: 300px; /* arbitrary max-height for animation */
}

/* Footer */
.site-footer {
    background-color: #1a1c1e; /* Darker charcoal */
    color: var(--white);
    padding: 60px 5% 20px;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
    gap: 30px;
    flex-wrap: wrap;
}
.footer-column {
    flex: 1;
    min-width: 250px;
}
.footer-heading {
    color: var(--gold-accent);
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.footer-text {
    margin-bottom: 10px;
    color: #ccc;
}
.footer-link, .modal-link {
    color: var(--gold-accent);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-link:hover, .modal-link:hover {
    color: var(--white);
}
.footer-nav-list {
    list-style: none;
}
.footer-nav-item {
    margin-bottom: 10px;
}
.footer-btn-link {
    background: none;
    border: none;
    color: var(--gold-accent);
    cursor: pointer;
    font-size: 1rem;
    text-decoration: underline;
    text-align: left;
    padding: 0;
}
.footer-btn-link:hover {
    color: var(--white);
}
.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    max-width: 800px;
    margin: 0 auto 20px;
}
.footer-copyright {
    text-align: center;
    font-size: 0.9rem;
    color: #ccc;
}

/* Modals */
.modal-overlay {
    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-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
    color: var(--charcoal-grey);
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--leather-brown);
}
.modal-title {
    margin-bottom: 20px;
    color: var(--leather-brown);
}
.modal-text {
    margin-bottom: 15px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--charcoal-grey);
    color: var(--white);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 2500;
    border-left: 5px solid var(--gold-accent);
}
.cookie-text {
    flex: 1;
    margin-right: 20px;
    font-size: 0.9rem;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
}
.cookie-accept {
    padding: 8px 16px;
}
.cookie-reject {
    border-color: var(--white);
    color: var(--white);
    padding: 8px 16px;
}

/* Responsive (Media Queries) */
@media (max-width: 900px) {
    .desktop-nav, .shop-btn {
        display: none;
    }
    .hamburger-icon {
        display: flex;
    }
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .hero-heading {
        font-size: 2.5rem;
    }
    .about-container {
        flex-direction: column;
    }
    .features-grid {
        flex-direction: column;
    }
    .testimonials-grid {
        flex-direction: column;
    }
    .cookie-popup {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .cookie-text {
        margin-right: 0;
    }
}