@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@200;300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Kritisch: Verhindere horizontales Scrollen nur auf mobil */
html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
}

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --luxury-gold: #d4af37;
    --light-gold: #f4e4c1;
    --dark-gold: #9d8446;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-muted: #707070;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-body);
    background: var(--primary-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
    letter-spacing: 0.5px;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.navbar.scrolled {
    padding: 1rem 5%;
    background: rgba(10, 10, 10, 0.99);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.8rem;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--luxury-gold);
    text-transform: uppercase;
    letter-spacing: 5px;
}

.logo-placeholder {
    width: 55px;
    height: 55px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 500;
    font-family: var(--font-heading);
    color: var(--primary-dark);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.logo-placeholder img{
    width: 40px;
}

.logo-placeholder .placeholder-text {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-dark);
    opacity: 0.8;
}

.logo-placeholder:hover {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 3.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 300;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--dark-gold));
    transition: width 0.4s ease;
}

.nav-links a:hover {
    color: var(--luxury-gold);
}

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

/* Navigation Actions (Language Switcher & Hamburger) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language Toggle Button with Globe Icon */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    color: var(--luxury-gold);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.language-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.language-toggle:hover::before {
    width: 200px;
    height: 200px;
}

.language-toggle .globe-icon {
    width: 18px;
    height: 18px;
    stroke: var(--luxury-gold);
    transition: all 0.4s ease;
    z-index: 1;
}

.language-toggle:hover .globe-icon {
    transform: rotate(15deg) scale(1.1);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

.language-toggle #current-lang {
    z-index: 1;
    transition: all 0.4s ease;
}

.language-toggle:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--luxury-gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3),
                inset 0 0 20px rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
}

.language-toggle:hover #current-lang {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    letter-spacing: 2px;
}

.language-toggle:active {
    transform: translateY(0);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Legacy Language Switcher (kept for compatibility) */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.6rem 1rem;
    color: var(--luxury-gold);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
}

.language-switcher svg {
    width: 18px;
    height: 18px;
}

.language-switcher:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--luxury-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--luxury-gold);
    transition: all 0.4s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section with Parallax */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 2rem;
}

.hero h1 {
    font-size: 5.5rem;
    font-weight: 400;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: 10px;
    text-transform: uppercase;
    animation: slideInDown 1.2s ease-out;
}

.hero h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
    margin: 2rem auto 0;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
    animation: slideInUp 1.2s ease-out 0.3s both;
    line-height: 1.9;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: transparent;
    color: var(--luxury-gold);
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--luxury-gold);
    transition: all 0.5s ease;
    animation: slideInUp 1.2s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--luxury-gold);
    transition: left 0.5s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: var(--primary-dark);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Section Styles */
section {
    padding: 10rem 5%;
    position: relative;
    transition: filter 0.5s ease;
}

.section-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 400;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: 8px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background: var(--luxury-gold);
    margin: 2rem auto 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.9;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 3.5rem;
    max-width: 1600px;
    margin: 0 auto;
}

.service-card {
    background: rgba(26, 26, 26, 0.5);
    padding: 5rem 3.5rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-height: 550px;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 200px;
    height: 100px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--luxury-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    position: relative;
    transition: all 0.5s ease;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.service-icon .placeholder-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--luxury-gold);
    opacity: 0.6;
    z-index: 2;
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    background: var(--luxury-gold);
    opacity: 0.05;
    transition: all 0.5s ease;
    border-radius: 8px;
}

.service-card:hover .service-icon {
    border-color: var(--light-gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.service-card:hover .service-icon img {
    transform: scale(1.05);
}

.service-card:hover .service-icon::before {
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--luxury-gold);
    font-weight: 400;
    font-family: var(--font-heading);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* About Section */
#uber-uns {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #0a0a0a);
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.stat-card {
    background: rgba(26, 26, 26, 0.5);
    padding: 3rem 2rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.stat-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 200;
    color: var(--luxury-gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

/* Contact Section */
.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(26, 26, 26, 0.5);
    padding: 5rem 4rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.contact-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.5s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: transparent;
    border: 1px solid var(--luxury-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.5s ease;
    position: relative;
}

.contact-icon .placeholder-text {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--luxury-gold);
    opacity: 0.6;
    z-index: 2;
    position: relative;
}

.contact-icon::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    background: var(--luxury-gold);
    opacity: 0.1;
    transition: all 0.5s ease;
}

.contact-item:hover .contact-icon {
    border-color: var(--light-gold);
}

.contact-item:hover .contact-icon::before {
    width: 100%;
    height: 100%;
}

/* Contact Icon SVG/IMG Styles */
.contact-icon img,
.contact-icon svg {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(87%) sepia(15%) saturate(1058%) hue-rotate(359deg) brightness(99%) contrast(88%);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.contact-item:hover .contact-icon img,

.contact-item h4 {
    color: var(--luxury-gold);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1rem;
}

.contact-item p {
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

/* Contact Form */
.contact-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--luxury-gold);
    margin-bottom: 3rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--luxury-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    color: var(--luxury-gold);
    border: 1px solid var(--luxury-gold);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--luxury-gold);
    transition: left 0.5s ease;
    z-index: -1;
}

.submit-button:hover::before {
    left: 0;
}

.submit-button:hover {
    color: var(--primary-dark);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.button-loader {
    display: inline-block;
}

/* Form Feedback Messages */
.form-feedback {
    display: none;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-align: center;
    animation: slideInUp 0.4s ease;
}

.form-feedback-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.form-feedback-error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.98);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
    opacity: 0.5;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2.5rem 5%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--luxury-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.footer-logo .logo-placeholder {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.footer-logo img{
    width: 30px;
}

.footer-logo .logo-placeholder:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    position: relative;
    padding: 0.5rem 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--dark-gold));
    transition: width 0.4s ease;
}

.footer-links a:hover {
    color: var(--luxury-gold);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        padding: 2rem 5%;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .footer-links {
        gap: 2rem;
    }
    
    .footer-copyright {
        text-align: left;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Kritisch: Verhindere Overflow */
    body, html {
        overflow-x: hidden !important;
        max-width: 100vw;
    }
    
    section, .navbar, .hero, footer {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .navbar{
        overflow: visible;
    }
    
    /* Mobile Navigation */
    .hamburger {
        display: flex;
        z-index: 1101;
    }
    
    .logo {
        font-size: 1.4rem;
        letter-spacing: 2px;
        gap: 0.8rem;
    }
    
    .logo-placeholder {
        width: 45px;
        height: 45px;
    }
    
    .logo-placeholder img {
        width: 32px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        z-index: 1100;
        max-width: 80vw;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 100px 2rem 2rem;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .nav-links a {
        display: block;
        padding: 1.2rem 0;
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .language-switcher {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .language-toggle {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        gap: 0.4rem;
        letter-spacing: 1px;
    }
    
    .language-toggle .globe-icon {
        width: 16px;
        height: 16px;
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
        padding: 0 1rem;
        word-wrap: break-word;
    }
    
    .hero h1::after {
        width: 60px;
    }

    .hero p {
        font-size: 0.95rem;
        letter-spacing: 0.5px;
        padding: 0 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: 2px;
        padding: 0 1rem;
        word-wrap: break-word;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 3rem 2rem;
        min-height: auto;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
        word-wrap: break-word;
    }
    
    .service-card p {
        font-size: 0.95rem;
        word-wrap: break-word;
    }

    .contact-container {
        padding: 2.5rem 1.5rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    input, textarea {
        font-size: 0.95rem;
    }

    section {
        padding: 5rem 5%;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Parallax Elements */
.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    filter: blur(80px);
    opacity: 0.08;
    animation: float 25s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--luxury-gold);
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--dark-gold);
    bottom: 15%;
    right: 10%;
    animation-delay: 8s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: var(--luxury-gold);
    top: 50%;
    right: 25%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
    }
    25% {
        transform: translateY(-40px) translateX(30px) scale(1.1);
    }
    50% {
        transform: translateY(-70px) translateX(-30px) scale(0.9);
    }
    75% {
        transform: translateY(-40px) translateX(40px) scale(1.05);
    }
}


/* Tilt Effect on Service Cards */
.service-card {
    background: rgba(26, 26, 26, 0.5);
    padding: 4rem 3rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Animated Gold Line */
.gold-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
    top: 0;
    left: -100%;
    width: 100%;
    animation: scanline 3s linear infinite;
}

@keyframes scanline {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Glowing text effect on hover */
.section-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 400;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: 8px;
    text-transform: uppercase;
    transition: all 0.5s ease;
}

.section-title:hover {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5),
                 0 0 40px rgba(212, 175, 55, 0.3);
}

/* Stat number pulse effect */
.stat-number {
    font-size: 3.5rem;
    font-weight: 200;
    color: var(--luxury-gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    transition: all 0.5s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

/* Particles Background */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--luxury-gold);
    opacity: 0;
    animation: particleFloat 15s infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Reveal animation on scroll with slide */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 1s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Shine effect on buttons */
.cta-button,
.submit-button {
    position: relative;
    overflow: hidden;
}

.cta-button::after,
.submit-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

/* Image reveal effect */
.service-icon {
    background: transparent;
    border: 1px solid var(--luxury-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.5s ease;
}

.service-card:hover .service-icon::after {
    left: 100%;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--luxury-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--light-gold);
}

/* ==========================================
   LEGAL PAGES (Impressum & Datenschutz)
   ========================================== */

.legal-page {
    min-height: 100vh;
    padding: 120px 5% 5%;
    background: var(--primary-dark);
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-header {
    margin-bottom: 4rem;
    text-align: center;
}

.legal-header h1 {
    font-size: 4rem;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--text-primary);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.legal-header h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background: var(--luxury-gold);
    margin: 2rem auto 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--luxury-gold);
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    gap: 1rem;
}

.legal-content {
    background: rgba(26, 26, 26, 0.5);
    padding: 4rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
}

.legal-content h2 {
    font-size: 2rem;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--luxury-gold);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.legal-content ul {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    margin-left: 2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 400;
}

.legal-content a {
    color: var(--luxury-gold);
    transition: all 0.3s ease;
}

.legal-content a:hover {
    opacity: 0.8;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 100px 5% 5%;
    }
    
    .legal-header h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .legal-content {
        padding: 2rem;
    }
}

/* ==========================================
   COOKIE CONSENT BANNER
   ========================================== */

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-top: 2px solid var(--luxury-gold);
    z-index: 10000;
    animation: slideInUp 0.5s ease;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--luxury-gold);
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.cookie-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.cookie-link {
    color: var(--luxury-gold);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.cookie-link:hover {
    opacity: 0.8;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid var(--luxury-gold);
    background: transparent;
    color: var(--luxury-gold);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cookie-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--luxury-gold);
    transition: left 0.4s ease;
    z-index: -1;
}

.cookie-btn:hover::before {
    left: 0;
}

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

.cookie-btn-accept {
    background: var(--luxury-gold);
    color: var(--primary-dark);
}

.cookie-btn-accept::before {
    background: var(--dark-gold);
}

.cookie-btn-necessary {
    border-color: var(--text-secondary);
    color: var(--text-secondary);
}

.cookie-btn-necessary::before {
    background: var(--text-secondary);
}

/* Cookie Settings Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.cookie-modal-content {
    background: var(--secondary-dark);
    border: 2px solid var(--luxury-gold);
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideInDown 0.4s ease;
}

.cookie-modal-header {
    padding: 2rem 2.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(212, 175, 55, 0.05);
}

.cookie-modal-header h2 {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--luxury-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
}

.cookie-close:hover {
    color: var(--luxury-gold);
    transform: rotate(90deg);
}

.cookie-modal-body {
    padding: 2.5rem;
}

.cookie-category {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-category-header h3 {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
    letter-spacing: 2px;
    margin: 0;
}

.cookie-category p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

/* Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(112, 112, 112, 0.3);
    transition: 0.4s;
    border-radius: 30px;
    border: 1px solid var(--text-muted);
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 3px;
    background-color: var(--text-muted);
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: rgba(212, 175, 55, 0.3);
    border-color: var(--luxury-gold);
}

input:checked + .cookie-slider:before {
    transform: translateX(30px);
    background-color: var(--luxury-gold);
}

input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 2rem 2.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    background: rgba(212, 175, 55, 0.05);
}

.cookie-btn-save {
    border-color: var(--text-secondary);
    color: var(--text-secondary);
}

.cookie-btn-save::before {
    background: var(--text-secondary);
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
        padding: 1.5rem 5%;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 1rem;
    }
    
    .cookie-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1.5rem;
    }
    
    .cookie-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
}

/* Extra kleine Smartphones (< 480px) */
@media (max-width: 480px) {
    /* Strikte Overflow-Kontrolle */
    * {
        max-width: 100vw;
    }
    
    body, html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    .navbar {
        padding: 1rem 4%;
    }
    
    .logo {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
        gap: 0.6rem;
    }
    
    .logo span {
        display: none; /* Verstecke "Bêto" Text auf sehr kleinen Geräten */
    }
    
    .logo-placeholder {
        width: 40px;
        height: 40px;
    }
    
    .logo-placeholder img {
        width: 28px;
    }
    
    .language-toggle {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        gap: 0.3rem;
        letter-spacing: 0.5px;
    }
    
    .language-toggle .globe-icon {
        width: 14px;
        height: 14px;
    }
    
    .nav-links {
        width: 100%;
        max-width: 100vw;
        padding: 100px 1.5rem 2rem;
    }
    
    .nav-links a {
        font-size: 0.95rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        letter-spacing: 1.5px;
        padding: 0 0.5rem;
    }
    
    .hero h1::after {
        width: 50px;
        margin: 1.5rem auto 0;
    }
    
    .hero p {
        font-size: 0.85rem;
        letter-spacing: 0.3px;
        padding: 0 0.5rem;
    }
    
    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
    
    .section-title {
        font-size: 1.6rem;
        letter-spacing: 1.5px;
        padding: 0 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }
    
    section {
        padding: 4rem 4%;
    }
    
    .service-card {
        padding: 2.5rem 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon img {
        max-width: 35px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .contact-container {
        padding: 2rem 1rem;
    }
    
    .contact-item {
        padding: 1.5rem 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon img {
        width: 22px;
    }
    
    .contact-item h4 {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .contact-item p {
        font-size: 0.85rem;
    }
    
    input, textarea {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }
    
    .submit-button {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
    
    .footer-container {
        padding: 2rem 4%;
    }
    
    .footer-logo {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-copyright {
        font-size: 0.75rem;
    }
    
    .cookie-content {
        padding: 1.5rem 4%;
    }
    
    .cookie-text h3 {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    
    .legal-page {
        padding: 100px 4% 4%;
    }
    
    .legal-header h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .legal-content h2 {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .legal-content h3 {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .legal-content p,
    .legal-content li {
        font-size: 0.85rem;
    }
}