/* Variablen */
:root {
    --color-maroon: #800000;
    --color-sky-blue: #8CC7E2;
    --color-turquoise: #2E9BB9;
    --color-slate-blue: #0B2F49;
    --color-gold: #FFB900;
    --color-amber: #FF8C00;
    --color-white: #FFFFFF;
    --color-light-bg: #F5FAFC;
}

/* Base Styles ohne * Selektor - Nur über Klassen */
.html-root, .site-body, .main-header, .hero-section, .content-section, .site-footer, .header-container, .desktop-nav, .nav-list, .nav-item, .nav-link, .btn-shop-now, .hero-image-wrapper, .hero-content, .hero-title, .hero-subtitle, .btn-hero-cta, .container, .section-title, .section-text, .grid-3-col, .feature-card, .feature-icon, .feature-title, .feature-desc, .grid-2-col, .testimonial-card, .testimonial-top, .avatar, .customer-name, .customer-review, .faq-wrapper, .faq-item, .faq-question, .faq-answer, .footer-container, .footer-column, .footer-heading, .footer-text, .footer-link, .footer-nav-list, .footer-nav-item, .btn-modal-trigger, .footer-disclaimer, .disclaimer-text, .footer-copyright, .copyright-text, .modal-overlay, .modal-box, .btn-modal-close, .modal-title, .modal-info, .modal-link, .cookie-banner, .cookie-text, .cookie-actions, .btn-cookie, .top-ad-banner, .ad-text {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

/* Seitenhintergrund mit fließender Animation */
.site-body {
    background: linear-gradient(135deg, var(--color-sky-blue), var(--color-light-bg), var(--color-turquoise));
    background-size: 300% 300%;
    animation: gradientShift 15s ease infinite;
    color: var(--color-slate-blue);
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Ladebildschirm */
.page-loader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--color-sky-blue); z-index: 9999;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: opacity 0.5s ease;
}
.loader-circle {
    width: 60px; height: 60px; border: 5px solid var(--color-turquoise);
    border-top: 5px solid var(--color-gold); border-radius: 50%;
    animation: spinRotate 1s linear infinite; margin-bottom: 20px;
}
.loader-text { font-size: 1.2rem; font-weight: 600; color: var(--color-slate-blue); }
@keyframes spinRotate { 100% { transform: rotate(360deg); } }

/* Anzeige Banner */
.top-ad-banner { background-color: var(--color-slate-blue); text-align: center; padding: 10px; }
.ad-text { color: var(--color-white); font-size: 0.85rem; font-weight: 300; }

/* Header */
.main-header {
    background-color: var(--color-maroon); padding: 15px 5%;
    position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.header-container { display: flex; justify-content: space-between; align-items: center; }
.brand-logo {
    font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 800;
    color: var(--color-gold); text-decoration: none; letter-spacing: 1px;
}
.desktop-nav .nav-list { list-style: none; display: flex; gap: 30px; }
.nav-link { color: var(--color-white); text-decoration: none; font-weight: 600; transition: color 0.3s; }
.nav-link:hover { color: var(--color-sky-blue); }
.header-action { display: flex; align-items: center; gap: 20px; }
.btn-shop-now {
    background-color: var(--color-gold); color: var(--color-maroon);
    padding: 10px 25px; border-radius: 25px; text-decoration: none; font-weight: 600;
    transition: all 0.3s; box-shadow: 0 4px 6px rgba(0,0,0,0.1); display: inline-block;
}
.btn-shop-now:hover { background-color: var(--color-amber); color: var(--color-white); transform: scale(1.05); }

/* Mobile Menu */
.btn-hamburger { display: none; background: none; border: none; font-size: 2rem; color: var(--color-gold); 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;
    padding: 60px 30px; box-shadow: -5px 0 20px rgba(0,0,0,0.3);
}
.mobile-sidebar.is-open { right: 0; }
.btn-close-sidebar {
    position: absolute; top: 15px; right: 20px; background: none; border: none;
    font-size: 2.5rem; color: var(--color-gold); cursor: pointer;
}
.mobile-nav-list { list-style: none; display: flex; flex-direction: column; gap: 25px; margin-top: 30px;}
.mobile-nav-link { color: var(--color-white); text-decoration: none; font-size: 1.5rem; font-weight: 600; }

/* Hero Sektion */
.hero-section {
    display: flex; align-items: center; justify-content: space-between; padding: 60px 5%; min-height: 80vh; gap: 40px;
}
.hero-image-wrapper { flex: 1; text-align: center; }
.hero-product-image {
    max-width: 90%; border-radius: 15px; box-shadow: 0 15px 35px rgba(11, 47, 73, 0.2);
    animation: floatingPanel 4s ease-in-out infinite;
}
@keyframes floatingPanel { 0% { transform: translateY(0); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0); } }

.hero-content { flex: 1; }
.hero-title {
    font-family: 'Montserrat', sans-serif; font-size: 3.5rem; color: var(--color-slate-blue); margin-bottom: 25px; line-height: 1.2;
}
.hero-subtitle { font-size: 1.1rem; color: var(--color-turquoise); margin-bottom: 40px; font-weight: 600; }
.btn-hero-cta {
    background-color: var(--color-amber); 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; box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}
.btn-hero-cta:hover { background-color: var(--color-gold); color: var(--color-slate-blue); transform: translateY(-3px); }

/* Allgemeine Sektionen */
.content-section { padding: 80px 5%; }
.container { max-width: 1200px; margin: 0 auto; text-align: center; }
.section-title { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; color: var(--color-slate-blue); margin-bottom: 30px; }
.section-text { font-size: 1.1rem; max-width: 800px; margin: 0 auto; line-height: 1.8; color: var(--color-slate-blue); }
.text-white { color: var(--color-white); }
.dark-bg { background-color: rgba(11, 47, 73, 0.9); }
.light-bg { background-color: rgba(255, 255, 255, 0.6); border-radius: 20px;}

/* Grids */
.grid-3-col, .grid-2-col { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; margin-top: 40px; }
.feature-card, .testimonial-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.1); transition: transform 0.3s;
}
.feature-card:hover, .testimonial-card:hover { transform: translateY(-10px); }
.feature-icon { font-size: 3rem; display: block; margin-bottom: 20px; color: var(--color-gold); }
.feature-title, .customer-name { font-size: 1.3rem; color: var(--color-slate-blue); margin-bottom: 15px; font-weight: 600; }
.feature-desc, .customer-review { color: var(--color-turquoise); font-size: 1rem; }

.testimonial-top { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 20px; }
.avatar {
    width: 60px; height: 60px; background-color: var(--color-turquoise); color: var(--color-white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 1.3rem;
}

/* FAQs */
.faq-wrapper { max-width: 800px; margin: 40px auto 0; text-align: left; }
.faq-item {
    background-color: var(--color-white); padding: 20px 25px; margin-bottom: 15px;
    border-radius: 10px; cursor: pointer; transition: background 0.3s;
}
.faq-item:hover { background-color: var(--color-light-bg); }
.faq-question { font-size: 1.1rem; color: var(--color-slate-blue); font-weight: 600; }
.faq-answer { display: none; margin-top: 15px; color: var(--color-turquoise); font-size: 1rem; }

/* Footer */
.site-footer { background-color: var(--color-slate-blue); color: var(--color-white); padding: 60px 5% 20px; }
.footer-container { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; max-width: 1200px; margin: 0 auto 40px; }
.footer-column { flex: 1; min-width: 250px; }
.footer-heading { color: var(--color-gold); margin-bottom: 20px; font-size: 1.4rem; font-family: 'Montserrat', sans-serif;}
.footer-text, .footer-nav-item { margin-bottom: 12px; font-size: 0.95rem; }
.footer-nav-list { list-style: none; }
.footer-link { color: var(--color-sky-blue); text-decoration: none; transition: color 0.3s; }
.footer-link:hover { color: var(--color-gold); }
.btn-modal-trigger {
    background: none; border: none; color: var(--color-sky-blue); font-size: 0.95rem;
    cursor: pointer; text-align: left; transition: color 0.3s;
}
.btn-modal-trigger:hover { color: var(--color-gold); }

.footer-disclaimer { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 25px; text-align: center; margin-bottom: 15px; }
.disclaimer-text { font-size: 0.8rem; color: var(--color-sky-blue); max-width: 1000px; margin: 0 auto; }
.footer-copyright { text-align: center; }
.copyright-text { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

/* Modals */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(11, 47, 73, 0.8);
    display: none; justify-content: center; align-items: center; z-index: 3000;
}
.modal-overlay.is-active { display: flex; }
.modal-box {
    background-color: var(--color-white); padding: 40px; border-radius: 15px;
    width: 90%; max-width: 600px; position: relative; color: var(--color-slate-blue);
}
.btn-modal-close {
    position: absolute; top: 15px; right: 20px; background: none; border: none;
    font-size: 1.8rem; cursor: pointer; color: var(--color-turquoise);
}
.modal-title { color: var(--color-slate-blue); margin-bottom: 20px; font-family: 'Montserrat', sans-serif;}
.modal-info { margin-bottom: 10px; font-size: 0.95rem; }
.modal-link { color: var(--color-maroon); text-decoration: none; font-weight: 600;}

/* Cookie Banner */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; width: 100%; background-color: var(--color-slate-blue);
    color: var(--color-white); padding: 20px 5%; display: none; justify-content: space-between;
    align-items: center; z-index: 4000; box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
}
.cookie-text { flex: 1; margin-right: 30px; font-size: 0.9rem; }
.cookie-actions { display: flex; gap: 15px; }
.btn-cookie { padding: 10px 25px; border-radius: 5px; border: none; font-weight: 600; cursor: pointer; transition: opacity 0.3s;}
.btn-cookie:hover { opacity: 0.8; }
.btn-accept { background-color: var(--color-gold); color: var(--color-slate-blue); }
.btn-reject { background-color: transparent; border: 1px solid var(--color-sky-blue); color: var(--color-sky-blue); }

/* Responsive */
@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-nav, .btn-shop-now { display: none; }
    .btn-hamburger { display: block; }
    .cookie-banner { flex-direction: column; text-align: center; gap: 20px; }
    .cookie-text { margin-right: 0; }
    .hero-product-image { max-width: 100%; }
}