/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary-color: #c9a050;
    /* Elegant Gold */
    --secondary-color: #1a1a1a;
    /* Sophisticated Black */
    --text-color: #333333;
    --light-bg: #fdfbf7;
    --white: #ffffff;
    --accent-color: #f4e9d8;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;
    --container-width: 1200px;
}

.page-body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.heading-font {
    font-family: 'Playfair Display', serif;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.loader-logo {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 20px;
    animation: fade-up 1.5s infinite alternate;
}

@keyframes fade-up {
    from {
        opacity: 0.3;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Top Bar (Advertisement) --- */
.top-adv-bar {
    background-color: #f8f8f8;
    color: #666;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
}

/* --- Header --- */
.main-header {
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

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

.nav-item-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
}

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

.header-cta-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--primary-color);
}

.header-cta-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    background-color: var(--accent-color);
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

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

.hero-subtitle-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image-wrap {
    flex: 1;
    position: relative;
    height: 100%;
}

.hero-img-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 769px) {
    .hero-img-item {
        mask-image: linear-gradient(to right, transparent, black 20%);
    }
}

/* --- About Us --- */
.about-section {
    background-color: var(--white);
}

.about-grid-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img-item {
    width: 100%;
    border-radius: 8px;
    box-shadow: 20px 20px 0 var(--accent-color);
}

/* --- Why Us --- */
.why-section {
    background-color: var(--light-bg);
}

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

.why-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

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

/* --- Testimonials --- */
.testimonials-section {
    background-color: var(--white);
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    min-width: 350px;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 12px;
    scroll-snap-align: start;
}

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

/* --- FAQ --- */
.faq-section {
    background-color: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

/* --- Cookies Popup --- */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 25px;
    border-radius: 12px;
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

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

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

.cookie-btn {
    padding: 10px 25px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    font-weight: 600;
}

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

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

/* --- Footer --- */
.main-footer {
    background-color: var(--secondary-color);
    color: #999;
    padding: 80px 0 30px;
}

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

.footer-title {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-link-item {
    margin-bottom: 12px;
}

.footer-link {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
}

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

.adv-note-footer {
    background: #252525;
    padding: 20px;
    text-align: center;
    font-size: 0.85rem;
    margin-bottom: 30px;
    border-radius: 8px;
    color: #777;
}

.footer-notice {
    color: #666;
    font-size: 0.8rem;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
}

.copyright-bar {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 30px;
    font-size: 0.9rem;
}

/* --- Mobile Menu --- */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -75%;
    width: 75%;
    height: 100%;
    background-color: var(--white);
    z-index: 1000;
    transition: var(--transition);
    display: none;
    flex-direction: column;
    padding: 100px 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav.open {
    display: flex;
    right: 0;
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-items {
    list-style: none;
    padding: 0;
}

.mobile-menu-link {
    display: block;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

@media (max-width: 768px) {

    .nav-menu,
    .header-cta-btn-desktop {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .hero-section {
        height: auto;
        padding-top: 30px;
    }

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

    .hero-content {
        padding: 40px 20px;
        text-align: center;
    }

    .hero-title-text {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero-subtitle-text {
        margin: 0 auto 30px;
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
    }

    .hero-btns .header-cta-btn {
        width: 100%;
        max-width: 280px;
        margin-right: 0 !important;
        text-align: center;
    }

    .hero-image-wrap {
        width: 100%;
        height: 300px;
    }

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

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

/* Modals for Impressum, Legal etc. */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.modal-content-area {
    background: var(--white);
    padding: 40px;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 8px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.m-b-50 {
    margin-bottom: 50px;
}

.m-b-40 {
    margin-bottom: 40px;
}

.m-b-20 {
    margin-bottom: 20px;
}

.fs-2-5 {
    font-size: 2.5rem;
}

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

.w-100 {
    width: 100%;
}

.m-r-15 {
    margin-right: 15px;
}

.m-t-20 {
    margin-top: 20px;
}

.m-b-10 {
    margin-bottom: 10px;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.rounded {
    border-radius: 8px;
}

.lh-1-8 {
    line-height: 1.8;
}

.cta-secondary {
    background: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.color-primary {
    color: var(--primary-color);
}

.list-none {
    list-style: none;
    padding: 0;
}