/* Variables */
:root {
    --primary-color: #c09154;
    /* Camel/Gold */
    --primary-dark: #916936;
    --text-main: #333333;
    --text-light: #666666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --bg-dark: #1a1a1a;
    --border-color: #eaeaea;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

/* Base Classes (No universal * or direct tag selectors used) */
.common-element {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

.common-body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.common-link {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.common-list {
    list-style: none;
}

.common-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.common-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.common-heading {
    font-weight: 700;
    line-height: 1.2;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

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

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

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

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

.loader-brand {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

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

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

/* Top Ad Note */
.top-ad-note {
    background-color: var(--bg-light);
    padding: 8px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.top-ad-text {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

/* Header */
.site-header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 1px;
}

.desktop-nav {
    display: flex;
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-main);
    font-size: 1rem;
}

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

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

.cta-button {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
}

.cta-button:hover {
    background-color: var(--primary-dark);
}

.hamburger-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-main);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: -75%;
    width: 75%;
    /* 75% width as requested */
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 1002;
    transition: 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.logo-text-mobile {
    font-size: 1.5rem;
    font-weight: 700;
}

.close-menu-btn {
    font-size: 1.5rem;
    color: var(--text-main);
}

.mobile-nav-list {
    padding: 20px;
}

.mobile-nav-item {
    margin-bottom: 15px;
}

.mobile-nav-link {
    display: block;
    font-size: 1.2rem;
    color: var(--text-main);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-cta-item {
    margin-top: 30px;
}

.mobile-cta-button {
    display: block;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
}

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

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 13px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.hero-image-wrapper {
    flex: 1;
}

.hero-img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image-wrapper {
    flex: 1;
}

.about-img {
    border-radius: 12px;
}

.about-content {
    flex: 1;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.features-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-main);
}

/* To replace element direct targeting inside class */
.feature-item i.fas {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

/* Why Us Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.benefit-text {
    color: var(--text-light);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-text {
    padding-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer */
.site-footer {
    background-color: var(--bg-dark);
    color: #d1d1d1;
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-widget-title {
    color: var(--bg-white);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.footer-widget-desc {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--bg-white);
}

.social-link:hover {
    background-color: var(--primary-color);
}

.footer-link-item,
.footer-contact-item {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-link {
    color: #d1d1d1;
}

.footer-link:hover,
.footer-email-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-email-link {
    color: #d1d1d1;
}

/* Replacement for direct <i> targeting */
.footer-contact-item i.fas {
    color: var(--primary-color);
    margin-top: 5px;
}

.impressum-text {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #a1a1a1;
}

.impressum-text strong {
    color: #d1d1d1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-disclaimer-box {
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
}

.footer-disclaimer-text {
    font-size: 0.85rem;
    color: #a1a1a1;
    margin-bottom: 10px;
}

.footer-ad-notice {
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-important-text {
    font-size: 0.9rem;
    font-weight: bold;
    color: #ffcccc;
}

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

.copyright-text {
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 400px;
    background: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    border-left: 5px solid var(--primary-color);
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.cookie-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-reject {
    background-color: var(--bg-light);
    color: var(--text-main);
}

.cookie-reject:hover {
    background-color: #e0e0e0;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .cta-button {
        display: none;
    }

    .hamburger-btn {
        display: block;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .about-container {
        flex-direction: column;
    }

    .about-image-wrapper {
        order: -1;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}