/* Google Fonts Setup */
:root {
    --primary-color: #8B5A2B;
    --primary-color-dark: #643D1A;
    --secondary-color: #D4AF37;
    --dark-bg: #121212;
    --darker-bg: #0A0A0A;
    --grey-bg: #1E1E1E;
    --text-color: #F8F8F8;
    --text-muted: #B3B3B3;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --glass-bg: rgba(30, 30, 30, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Class-based Resets */
.body-container {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.body-container .page-loader,
.body-container .top-advertisement-bar,
.body-container .main-header,
.body-container .mobile-menu-overlay,
.body-container .hero-section,
.body-container .module-section,
.body-container .banner-section,
.body-container .main-footer,
.body-container .cookie-popup,
.body-container .modal-overlay {
    box-sizing: border-box;
}

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

.nav-link,
.mobile-nav-link,
.cta-button,
.large-btn,
.footer-link,
.text-link,
.brand-logo {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.hero-bg-img,
.about-img,
.banner-image,
.faq-image,
.footer-bg-img {
    margin: 0;
    padding: 0;
    max-width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
}

.hamburger-btn,
.close-menu-btn,
.accordion-header,
.cookie-btn,
.modal-close-btn {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.hero-title,
.hero-subtitle,
.section-title,
.section-description,
.feature-title,
.feature-desc,
.testimonial-text,
.author-name,
.author-role,
.accordion-title,
.accordion-text,
.footer-heading,
.footer-text,
.footer-text-small,
.cookie-title,
.cookie-text,
.modal-title,
.modal-text,
.top-ad-text,
.footer-ad-note,
.copyright-text {
    margin: 0;
    padding: 0;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--darker-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

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

.loader-brand {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--secondary-color);
    margin: 0 0 20px 0;
    letter-spacing: 2px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--text-muted);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s infinite linear;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Advertisement Top Bar */
.top-advertisement-bar {
    background-color: var(--darker-bg);
    text-align: center;
    padding: 8px 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--glass-border);
}

.top-ad-text {
    font-weight: 300;
}

/* Header & Navigation */
.main-header {
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.desktop-nav {
    display: flex;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: var(--transition);
    text-align: center;
}

.primary-btn {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(139, 90, 43, 0.3);
}

.primary-btn:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 90, 43, 0.5);
}

.header-actions {
    display: flex;
    align-items: center;
}

/* Mobile Menu */
.hamburger-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-color);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.95);
    z-index: 2000;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    width: 75%;
    height: 100%;
    background-color: var(--dark-bg);
    padding: 30px 20px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.close-menu-btn {
    align-self: flex-end;
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 40px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-color);
}

.mt-custom {
    margin-top: 30px;
}

.mobile-cta {
    display: block;
    width: calc(100% - 40px);
}

/* Common Section Styles */
.module-section {
    padding: 100px 20px;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.dark-bg {
    background-color: var(--darker-bg);
}

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

.centered-desc {
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.8));
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin: 0 0 40px 0;
    font-weight: 300;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.large-btn {
    padding: 15px 40px;
    font-size: 1rem;
}

.glow-btn {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 20px rgba(139, 90, 43, 0.6);
}

.glow-btn:hover {
    box-shadow: 0 0 30px rgba(139, 90, 43, 0.8);
    background-color: var(--primary-color-dark);
}

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

.styled-image {
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.styled-image:hover {
    transform: scale(1.02);
}

/* Why Us Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background-color: rgba(139, 90, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    font-size: 2rem;
    color: var(--secondary-color);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-desc {
    color: var(--text-muted);
}

/* Image Banner */
.banner-section {
    height: 400px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

/* Testimonials Section */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--grey-bg);
    padding: 40px;
    border-radius: 10px;
    border-top: 4px solid var(--primary-color);
}

.stars-container {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.faq-image {
    margin-top: 30px;
}

.accordion-item {
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 15px;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    color: var(--text-color);
    text-align: left;
}

.accordion-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.accordion-icon {
    transition: var(--transition);
    color: var(--secondary-color);
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-text {
    padding-bottom: 20px;
    color: var(--text-muted);
}

/* Footer Section */
.main-footer {
    position: relative;
    color: var(--text-color);
    overflow: hidden;
}

.footer-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.92);
}

.footer-content-wrapper {
    padding: 80px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.footer-text,
.footer-text-small {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-text-small {
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-icon {
    color: var(--primary-color);
    width: 20px;
}

.footer-link,
.footer-info {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--secondary-color);
}

.c-pointer {
    cursor: pointer;
}

.mt-3 {
    margin-top: 20px;
}

.impressum-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.footer-bottom-area {
    border-top: 1px solid var(--glass-border);
    padding-top: 25px;
    text-align: center;
}

.footer-ad-note {
    font-size: 0.8rem;
    color: #888;
    margin: 0 auto 15px auto;
    max-width: 800px;
}

.copyright-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.ad-tag {
    color: var(--secondary-color);
    font-weight: 600;
}

.text-link {
    color: var(--secondary-color);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10000;
    font-family: var(--font-body);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-content {
    background-color: var(--grey-bg);
    border: 1px solid var(--glass-border);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    max-width: 400px;
}

.cookie-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.cookie-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    flex: 1;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
}

.cookie-accept:hover {
    background-color: var(--primary-color-dark);
}

.cookie-reject {
    background-color: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
}

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: #fff;
}

/* Modal Overlay (Return Policy) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background-color: var(--dark-bg);
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transform: scale(0.9);
    transition: var(--transition);
}

.modal-overlay.show .modal-card {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--glass-border);
    background-color: var(--grey-bg);
}

.modal-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    transition: var(--transition);
    cursor: pointer;
}

.modal-close-btn:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 25px;
}

.modal-text {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.95rem;
    margin-top: 0;
}

.modal-text:last-child {
    margin-bottom: 0;
}

/* Media Queries */
@media screen and (max-width: 992px) {

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

    .hero-title {
        font-size: 3rem;
    }

    .desktop-nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .hamburger-btn {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .module-section {
        padding: 70px 20px;
    }
}