/* Global Styles & Variables */
:root {
    --color-bg-dark: #0a0a0a;
    --color-bg-card: #141414;
    --color-text-primary: #f0f0f0;
    --color-text-secondary: #a0a0a0;

    --color-gold-light: #e6c88b;
    --color-gold-primary: #d4af37;
    --color-gold-dark: #996515;

    --gold-gradient: linear-gradient(135deg, #e6c88b 0%, #d4af37 50%, #996515 100%);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2.5rem;
    --spacing-lg: 5rem;
    --spacing-xl: 8rem;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--color-text-primary);
    background-color: var(--color-bg-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    /* Subtle noise texture */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    margin-top: 0;
    color: var(--color-text-primary);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.bg-secondary {
    background-color: var(--color-bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Luxury Buttons */
.btn-cta {
    display: inline-block;
    position: relative;
    background: transparent;
    color: var(--color-gold-light);
    padding: 0.8rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    border: 1px solid var(--color-gold-dark);
    transition: color 0.3s;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gold-gradient);
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.btn-cta:hover {
    color: var(--color-bg-dark);
    border-color: var(--color-gold-light);
}

.btn-cta:hover::before {
    width: 100%;
}

/* Advertisement Note (Top) */
.ad-notification-top {
    background-color: #000;
    border-bottom: 1px solid #222;
    color: #666;
    font-size: 0.7rem;
    text-align: center;
    padding: 0.5rem;
    font-weight: 400;
    font-family: var(--font-body);
}

/* Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: transparent;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    letter-spacing: 4px;
    border-bottom: 1px solid var(--color-gold-dark);
    padding-bottom: 0.5rem;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* Header */
.main-header {
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-list {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--color-text-secondary);
}

.nav-link:hover {
    color: var(--color-gold-light);
}

.header-cta {
    padding: 0.6rem 1.8rem;
    font-size: 0.7rem;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    padding: 0;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
}

.bar {
    width: 100%;
    height: 1px;
    background-color: var(--color-gold-light);
    transition: all 0.4s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background-color: #0f0f0f;
    border-left: 1px solid var(--color-gold-dark);
    z-index: 1000;
    transition: right 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text-primary);
    letter-spacing: 1px;
}

/* Hamburger Animation */
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
    padding: var(--spacing-xl) 0;
    background: radial-gradient(circle at top right, #1a1a1a 0%, var(--color-bg-dark) 60%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    max-width: 450px;
    font-weight: 300;
}

.hero-promo {
    margin-top: 2rem;
    color: var(--color-gold-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    border: 1px solid var(--color-gold-dark);
    z-index: -1;
    opacity: 0.5;
}

.hero-image {
    width: 100%;
    height: auto;
    filter: brightness(0.9) contrast(1.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Sections */
.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    letter-spacing: 1px;
}

.section-text {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    font-weight: 300;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.feature-card {
    background-color: var(--color-bg-card);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: transform 0.4s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold-dark);
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-gold-light);
}

.feature-text {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.testimonial-card {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    position: relative;
    transition: background 0.3s;
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.testimonial-text {
    font-style: italic;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--color-text-primary);
}

.testimonial-author {
    font-weight: 400;
    color: var(--color-gold-primary);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

/* FAQ List */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 0;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--color-text-primary);
}

.faq-answer {
    color: var(--color-text-secondary);
    font-weight: 300;
}

/* Footer */
.main-footer {
    background-color: #050505;
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-heading {
    color: var(--color-gold-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.footer-text,
.footer-text a {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    font-weight: 300;
}

.footer-nav li {
    margin-bottom: 0.8rem;
}

.footer-nav a {
    color: #888;
    font-weight: 300;
}

.footer-nav a:hover {
    color: var(--color-gold-light);
}

.impressum-text {
    color: #555;
    font-size: 0.8rem;
    line-height: 1.6;
}

.ad-notification-footer {
    border-top: 1px solid #1a1a1a;
    padding-top: var(--spacing-md);
    margin: 0 var(--spacing-sm) var(--spacing-md);
    text-align: center;
    color: #444;
    font-size: 0.75rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom {
    text-align: center;
    color: #333;
    font-size: 0.7rem;
    padding-top: var(--spacing-sm);
    letter-spacing: 1px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-gold-dark);
    padding: 2rem;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    margin: 20px;
}

.cookie-content p {
    margin: 0 0 1.5rem 0;
    color: var(--color-text-secondary);
    font-weight: 300;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    flex: 1;
    padding: 0.6rem;
    border: 1px solid var(--color-gold-dark);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.7rem;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--gold-gradient);
    color: var(--color-black);
    border: none;
}

.btn-reject {
    background: transparent;
    color: var(--color-text-primary);
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Media Queries */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1.5rem;
    }

    .desktop-nav {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding-top: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-image-wrapper::after {
        right: 10px;
        left: 10px;
    }

    .features-grid,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}