/* 
 * MAIN CSS - BEREINIGTE VERSION
 * FKK Club Germany - Funktionierend & Performance-optimiert
 * Kein morphing-bg, funktionierendes Mobile Menu
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Inter:wght@200;300;400;500;600;700&family=Dancing+Script:wght@400;500;600;700&display=swap');

/* ROOT VARIABLES */
:root {
    /* Enhanced Color Palette */
    --primary-gold: #D4AF37;
    --secondary-gold: #F4E4BC;
    --accent-gold: #FFD700;
    --dark-charcoal: #1a1a1a;
    --warm-black: #0f0f0f;
    --deep-black: #000000;
    --accent-red: #8B0000;
    --burgundy: #722F37;
    --soft-white: #FFF8F0;
    --pearl-white: #F8F6F0;
    --text-primary: #FFF8F0;
    --text-secondary: #F4E4BC;
    --shadow-gold: rgba(212, 175, 55, 0.3);
    --shadow-dark: rgba(0, 0, 0, 0.5);
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    
    /* Advanced Gradients */
    --gradient-primary: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #FFD700 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    --gradient-elegant: linear-gradient(45deg, #0f0f0f 0%, #1a1a1a 25%, #2d2d2d 50%, #1a1a1a 75%, #0f0f0f 100%);
    --gradient-hero: linear-gradient(135deg, rgba(15,15,15,0.9) 0%, rgba(26,26,26,0.8) 50%, rgba(15,15,15,0.9) 100%);
    
    /* Animation Timings */
    --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-elegant: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing */
    --container-max: 1400px;
    --container-padding: 2rem;
    --section-padding: 6rem 0;
    --element-gap: 2rem;
}

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0f0f0f;
    color: var(--soft-white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    min-height: 100vh;
}

/* TYPOGRAPHY */
.elegant-title {
    font-family: 'Playfair Display', serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.elegant-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    animation: titleUnderline 2s var(--ease-elegant) forwards;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s var(--ease-elegant);
}

a:hover {
    color: var(--accent-gold);
}

/* PARTICLE SYSTEM - SIMPLIFIED */
.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 12s infinite linear;
}

.particle:nth-child(odd) {
    background: var(--accent-gold);
    animation-duration: 15s;
}

.particle:nth-child(3n) {
    width: 2px;
    height: 2px;
    animation-duration: 18s;
}

/* NAVIGATION */
.nav-elegant {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s var(--ease-elegant);
}

.nav-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s var(--ease-elegant);
}

.nav-elegant.scrolled {
    background: rgba(15, 15, 15, 0.98);
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.1);
}

.nav-elegant.scrolled::before {
    opacity: 1;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--container-padding);
    width: 100%;
    position: relative;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1001;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    white-space: nowrap;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--secondary-gold);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0.2rem;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    transition: all 0.3s var(--ease-elegant);
}

.nav-link-elegant {
    position: relative;
    color: var(--soft-white);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 1rem 1.5rem;
    transition: all 0.4s var(--ease-elegant);
    overflow: hidden;
    font-size: 0.9rem;
    white-space: nowrap;
    border-radius: 8px;
}

.nav-link-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.4s var(--ease-elegant);
    z-index: -1;
}

.nav-link-elegant::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: all 0.4s var(--ease-elegant);
    transform: translateX(-50%);
}

.nav-link-elegant:hover::before {
    left: 0;
}

.nav-link-elegant:hover::after,
.nav-link-elegant.active::after {
    width: 80%;
}

.nav-link-elegant:hover {
    color: var(--warm-black);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    padding: 0;
    background: none;
    border: none;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--primary-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* HERO SECTIONS */
.hero-cinematic,
.page-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

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

.hero-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-layer:nth-child(1) {
    background: var(--gradient-hero);
}

.hero-layer:nth-child(2) {
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0.7;
}

.hero-layer:nth-child(3) {
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.05) 70%);
    opacity: 0.5;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

.floating-element:nth-child(5) {
    width: 100px;
    height: 100px;
    bottom: 40%;
    right: 10%;
    animation-delay: 3s;
}

.hero-content-cinematic {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--container-padding);
    width: 100%;
}

.hero-title-cinematic {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleReveal 2s var(--ease-elegant) forwards;
    opacity: 0;
    transform: translateY(50px);
}

.hero-subtitle-cinematic {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--secondary-gold);
    margin-bottom: 3rem;
    animation: subtitleReveal 2s var(--ease-elegant) 0.5s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 0.9;
    animation: fadeInUp 2s var(--ease-elegant) 1s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 2s var(--ease-elegant) 1.5s forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* BUTTONS */
.btn-luxury {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.6s var(--ease-elegant);
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    white-space: nowrap;
    min-height: 44px;
    min-width: 44px;
}

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

.btn-luxury:hover {
    color: var(--warm-black);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px var(--shadow-gold);
    border-color: var(--accent-gold);
}

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

.btn-luxury.btn-secondary {
    background: var(--gradient-primary);
    color: var(--warm-black);
    border-color: var(--primary-gold);
}

.btn-luxury.btn-secondary:hover {
    background: transparent;
    color: var(--primary-gold);
}

.btn-luxury.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.1rem;
}

.btn-luxury.btn-block {
    width: 100%;
    justify-content: center;
}

/* MAIN CONTENT */
.main-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    width: 100%;
}

/* SECTIONS */
.section {
    padding: var(--section-padding);
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-gold);
    font-weight: 300;
    letter-spacing: 1px;
}

.section-footer {
    text-align: center;
    margin-top: 4rem;
}

/* LUXURY CARDS */
.luxury-card {
    position: relative;
    background: var(--gradient-dark);
    border-radius: 25px;
    padding: 3rem;
    margin: 2rem 0;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.6s var(--ease-elegant);
    width: 100%;
}

.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--shadow-dark), 0 0 0 1px var(--primary-gold);
    border-color: var(--primary-gold);
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--element-gap);
    margin-top: 4rem;
    width: 100%;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--warm-black);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    text-align: center;
}

.card-description {
    text-align: center;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.card-link {
    display: inline-block;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--primary-gold);
    transition: all 0.3s var(--ease-elegant);
}

.card-link:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateX(5px);
}

/* NEWS STYLES */
.news-grid,
.news-grid-listing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    width: 100%;
}

.news-card,
.news-card-listing {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-image,
.news-image-listing {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
}

.news-image img,
.news-image-listing img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-elegant);
}

.news-card:hover .news-image img,
.news-card-listing:hover .news-image-listing img {
    transform: scale(1.05);
}

.news-placeholder,
.news-placeholder-listing {
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-gold);
}

.news-featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: var(--warm-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content,
.news-content-listing {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-title,
.news-title-listing {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.news-title a,
.news-title-listing a {
    color: var(--soft-white);
    text-decoration: none;
    transition: color 0.3s var(--ease-elegant);
}

.news-title a:hover,
.news-title-listing a:hover {
    color: var(--primary-gold);
}

.news-excerpt,
.news-excerpt-listing {
    line-height: 1.7;
    margin-bottom: auto;
    flex-grow: 1;
}

.news-meta,
.news-meta-listing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.news-date,
.news-date-listing {
    color: var(--secondary-gold);
    font-size: 0.9rem;
}

.read-more,
.news-read-more {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-elegant);
}

.read-more:hover,
.news-read-more:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

/* GALLERY STYLES */
.gallery-grid-advanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    width: 100%;
}

.gallery-item-advanced {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s var(--ease-elegant);
    background: var(--gradient-dark);
}

.gallery-item-advanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--shadow-dark), 0 0 0 1px var(--primary-gold);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.6s var(--ease-elegant);
    z-index: 3;
    padding: 2rem;
    flex-direction: column;
}

.gallery-item-advanced:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.gallery-description {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.gallery-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--warm-black);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s var(--ease-elegant);
}

.gallery-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

/* EVENTS STYLES */
.events-timeline {
    position: relative;
    padding-left: 3rem;
    width: 100%;
}

.events-timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-month {
    margin: 3rem 0 2rem;
}

.timeline-month-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
    background: var(--warm-black);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
}

.timeline-event {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 2rem;
    width: 12px;
    height: 12px;
    background: var(--primary-gold);
    border-radius: 50%;
    border: 3px solid var(--warm-black);
}

.event-card-timeline {
    margin-left: 2rem;
}

/* EVENTS GRID */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    width: 100%;
}

.event-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    align-items: flex-start;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--warm-black);
    border-radius: 10px;
    padding: 1rem;
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.event-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content {
    flex-grow: 1;
}

.event-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.event-title a:hover {
    color: var(--primary-gold);
}

.event-description {
    color: var(--text-secondary);
    margin: 1rem 0;
    line-height: 1.6;
}

.event-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.event-time,
.event-vip,
.event-price {
    color: var(--primary-gold);
}

/* VIP STYLES */
.vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    width: 100%;
}

.vip-tier.featured {
    transform: scale(1.05);
    z-index: 2;
}

.tier-card {
    text-align: center;
    position: relative;
}

.tier-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--warm-black);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-header {
    margin-bottom: 2rem;
}

.tier-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tier-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.tier-subtitle {
    color: var(--secondary-gold);
    font-style: italic;
}

.benefits-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    padding: 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.tier-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 2rem;
}

/* CONTACT STYLES */
.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    width: 100%;
}

.contact-form {
    padding: 3rem;
}

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

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: var(--soft-white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s var(--ease-elegant);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-select {
    cursor: pointer;
}

.form-privacy {
    margin: 2rem 0;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    line-height: 1.6;
}

.privacy-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-gold);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s var(--ease-elegant);
    flex-shrink: 0;
    margin-top: 2px;
}

.privacy-checkbox input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-gold);
}

.privacy-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--warm-black);
    font-weight: bold;
    font-size: 12px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.method-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.method-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.method-details {
    margin-bottom: 0.5rem;
}

.method-details a {
    color: var(--soft-white);
    text-decoration: none;
}

.method-details a:hover {
    color: var(--primary-gold);
}

.method-note {
    font-size: 0.9rem;
    color: var(--secondary-gold);
    font-style: italic;
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.pagination-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    min-height: 50px;
    background: var(--gradient-dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--soft-white);
    text-decoration: none;
    transition: all 0.3s var(--ease-elegant);
    font-weight: 500;
    padding: 0 1rem;
}

.pagination-link:hover,
.pagination-link.active {
    background: var(--gradient-primary);
    color: var(--warm-black);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.pagination-prev,
.pagination-next {
    width: auto;
    padding: 0 1.5rem;
    border-radius: 25px;
    white-space: nowrap;
}

/* FILTER STYLES */
.filter-section {
    padding: 4rem 0;
}

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

.filter-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s var(--ease-elegant);
    font-size: 0.9rem;
    white-space: nowrap;
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--warm-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* NO CONTENT STYLES */
.no-content {
    text-align: center;
    padding: 6rem 2rem;
}

.no-content-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    opacity: 0.7;
}

.no-content-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.no-content-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.no-content-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* LOADING STYLES */
.loading-elegant {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--warm-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 1s var(--ease-elegant);
}

.loading-spinner {
    width: 100px;
    height: 100px;
    border: 3px solid transparent;
    border-top: 3px solid var(--primary-gold);
    border-radius: 50%;
    animation: spinElegant 2s linear infinite;
    position: relative;
    margin-bottom: 2rem;
}

.loading-spinner::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 3px solid transparent;
    border-bottom: 3px solid var(--accent-gold);
    border-radius: 50%;
    animation: spinElegant 3s linear infinite reverse;
}

.loading-text {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 1.2rem;
    text-align: center;
}

/* SCROLL PROGRESS */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 10001;
    transition: width 0.1s ease;
}

/* BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--warm-black);
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s var(--ease-elegant);
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* FOOTER */
.footer-elegant {
    background: var(--deep-black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.footer-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.5;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-subtitle {
    font-size: 1.1rem;
}

.footer-description {
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--text-secondary);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s var(--ease-elegant);
    font-size: 1.5rem;
    min-width: 44px;
    min-height: 44px;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--warm-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--soft-white);
    text-decoration: none;
    transition: color 0.3s var(--ease-elegant);
    opacity: 0.9;
    padding: 0.3rem 0;
    display: block;
}

.footer-links a:hover {
    color: var(--primary-gold);
    opacity: 1;
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--soft-white);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s var(--ease-elegant);
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
    opacity: 1;
}

/* FORM STYLES */
.form-success,
.form-error {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.form-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.success-icon,
.error-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ANIMATIONS */
@keyframes titleUnderline {
    to { width: 100%; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

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

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

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

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

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* SCROLL TRIGGERED ANIMATIONS */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s var(--ease-elegant);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s var(--ease-elegant);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s var(--ease-elegant);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* RESPONSIVE DESIGN - BASIC */
@media (max-width: 768px) {
    .hero-title-cinematic {
        font-size: 3rem;
    }
    
    .luxury-card {
        padding: 2rem;
        margin: 1rem 0;
    }
    
    .gallery-grid-advanced {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .btn-luxury {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .features-grid,
    .news-grid,
    .events-grid,
    .vip-tiers {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-reveal,
    .scroll-reveal-left,
    .scroll-reveal-right {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .particle-container,
    .floating-elements {
        display: none !important;
    }
    
    .hero-title-cinematic,
    .hero-subtitle-cinematic,
    .hero-description,
    .hero-buttons {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* 
 * FEHLENDE SECTIONS CSS
 * VIP Amenities, VIP Application, About Team Section
 * Funktional und Performance-optimiert
 */

/* ==================================== */
/* VIP AMENITIES SECTION */
/* ==================================== */
.vip-amenities {
    background: var(--gradient-elegant);
    position: relative;
    overflow: hidden;
}

.vip-amenities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 1;
}

.vip-amenities .container {
    position: relative;
    z-index: 2;
}

.amenities-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
}

.amenity-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.6s var(--ease-elegant);
    position: relative;
    overflow: hidden;
}

.amenity-item:nth-child(even) {
    direction: rtl;
}

.amenity-item:nth-child(even) > * {
    direction: ltr;
}

.amenity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
}

.amenity-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    background: var(--gradient-dark);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.amenity-placeholder {
    font-size: 6rem;
    color: var(--primary-gold);
    opacity: 0.8;
    transition: all 0.6s var(--ease-elegant);
}

.amenity-item:hover .amenity-placeholder {
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
}

.amenity-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.amenity-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.amenity-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ==================================== */
/* VIP APPLICATION SECTION */
/* ==================================== */
.vip-application {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.vip-application::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.05) 70%);
    opacity: 0.5;
    z-index: 1;
}

.vip-application .container {
    position: relative;
    z-index: 2;
}

.application-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.application-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.application-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.application-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.6s var(--ease-elegant);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.08);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--warm-black);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step-content {
    position: relative;
    z-index: 2;
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.application-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.application-cta .btn-luxury {
    min-width: 200px;
}

/* ==================================== */
/* ABOUT TEAM SECTION */
/* ==================================== */
.team-section {
    background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(15,15,15,0.9) 50%, rgba(26,26,26,0.95) 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.team-section .container {
    position: relative;
    z-index: 2;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.commitment-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.commitment-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.6s var(--ease-elegant);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.08);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================================== */
/* ABOUT PAGE SPECIFIC STYLES */
/* ==================================== */
.about-content {
    background: var(--gradient-elegant);
    position: relative;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.content-main {
    display: flex;
    flex-direction: column;
}

.content-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-text {
    line-height: 1.8;
    font-size: 1.1rem;
}

.content-text p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.values-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.values-list li:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.features-detailed {
    background: var(--gradient-dark);
    position: relative;
}

.features-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-detailed {
    text-align: center;
    padding: 3rem;
    position: relative;
}

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
}

.feature-detailed-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.feature-detailed-description {
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.feature-detailed-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.feature-detailed-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.feature-detailed-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

/* ==================================== */
/* CTA SECTION */
/* ==================================== */
.cta-section {
    background: var(--gradient-primary);
    color: var(--warm-black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(15, 15, 15, 0.1) 70%);
    opacity: 0.3;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--warm-black);
    background: none;
    -webkit-text-fill-color: var(--warm-black);
}

.cta-title::after {
    background: var(--warm-black);
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(15, 15, 15, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-luxury {
    background: var(--warm-black);
    color: var(--primary-gold);
    border-color: var(--warm-black);
}

.cta-section .btn-luxury:hover {
    background: transparent;
    color: var(--warm-black);
    border-color: var(--warm-black);
}

.cta-section .btn-luxury.btn-secondary {
    background: transparent;
    color: var(--warm-black);
    border-color: var(--warm-black);
}

.cta-section .btn-luxury.btn-secondary:hover {
    background: var(--warm-black);
    color: var(--primary-gold);
}

/* ==================================== */
/* VIP TESTIMONIALS SECTION */
/* ==================================== */
.vip-testimonials {
    background: var(--gradient-elegant);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial-card {
    padding: 3rem;
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 4rem;
    color: var(--primary-gold);
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--warm-black);
}

.author-info {
    text-align: left;
}

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

.author-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.2rem;
}

/* ==================================== */
/* RESPONSIVE STYLES */
/* ==================================== */
@media (max-width: 968px) {
    .amenity-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        direction: ltr;
    }
    
    .amenity-item:nth-child(even) {
        direction: ltr;
    }
    
    .amenity-visual {
        height: 250px;
        order: -1;
    }
    
    .amenity-placeholder {
        font-size: 4rem;
    }
    
    .application-process {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .commitment-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-detailed-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .application-cta {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .amenity-item {
        padding: 2rem;
    }
    
    .amenity-visual {
        height: 200px;
    }
    
    .amenity-placeholder {
        font-size: 3rem;
    }
    
    .application-process {
        grid-template-columns: 1fr;
    }
    
    .commitment-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .cta-title,
    .application-title {
        font-size: 2rem;
    }
    
    .content-title {
        font-size: 2rem;
    }
    
    .feature-detailed {
        padding: 2rem;
    }
    
    .feature-icon-large {
        font-size: 3rem;
    }
    
    .amenity-title {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        top: 0.5rem;
        left: 1rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .author-info {
        text-align: center;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ==================================== */
/* ENHANCED FOOTER RESPONSIVE STYLES */
/* ==================================== */

/* Footer Decoration */
.footer-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.decoration-line {
    flex: 1;
    height: 1px;
    background: var(--gradient-primary);
    max-width: 200px;
}

.decoration-icon {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

/* Footer Brand */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-tagline {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-gold);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Footer Subtitle Icons */
.footer-subtitle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Footer Links with Icons */
.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    transition: all 0.3s var(--ease-elegant);
}

.footer-links a:hover {
    padding-left: 0.5rem;
    color: var(--primary-gold);
}

/* Contact Details */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-weight: 600;
    color: var(--primary-gold);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.contact-details a {
    color: var(--soft-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-gold);
}

.contact-details small {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

/* Footer Features Bar */
.footer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    font-weight: 500;
    text-align: center;
}

.feature-item i {
    font-size: 1.2rem;
}

/* Newsletter Section */
.footer-newsletter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
    padding: 3rem;
    background: var(--gradient-dark);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.newsletter-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.newsletter-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.input-group {
    display: flex;
    gap: 0;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--soft-white);
    font-size: 1rem;
}

.input-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--warm-black);
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--accent-gold);
    transform: translateX(-3px);
}

.newsletter-privacy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Footer Bottom */
.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

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

.footer-tagline-small {
    color: var(--secondary-gold);
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.footer-bottom-links a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.footer-certifications {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: right;
}

.cert-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--secondary-gold);
}

/* Footer Responsive */
@media (max-width: 968px) {
    .footer-decoration {
        margin-bottom: 2rem;
    }
    
    .decoration-line {
        max-width: 100px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .footer-newsletter {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-certifications {
        text-align: center;
    }
    
    .cert-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-features {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .input-group {
        flex-direction: column;
        border-radius: 10px;
        gap: 0.5rem;
    }
    
    .input-group input,
    .newsletter-btn {
        border-radius: 10px;
    }
    
    .newsletter-btn {
        padding: 1rem;
        justify-content: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-item {
        gap: 0.5rem;
        text-align: left;
    }
    
    .contact-item i {
        font-size: 1rem;
    }
    
    .footer-subtitle {
        font-size: 1rem;
        justify-content: center;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Very Small Screens */
@media (max-width: 320px) {
    .footer-newsletter {
        padding: 1.5rem;
    }
    
    .newsletter-title {
        font-size: 1.1rem;
    }
    
    .newsletter-btn {
        font-size: 0.8rem;
        padding: 0.8rem;
    }
    
    .footer-features {
        padding: 0.8rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.3rem;
    }
}
/* CONTAINER OVERFLOW FIXES */

/* 1. GLOBALE FIXES */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

/* 2. CONTAINER FIXES */
.container {
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    box-sizing: border-box !important;
    overflow: visible !important; /* Nicht hidden, damit Inhalte sichtbar bleiben */
}

/* 3. SECTION FIXES */
.section {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    padding: 4rem 0 !important;
    box-sizing: border-box !important;
}

/* 4. GRID FIXES */
.testimonials-grid,
.features-grid,
.news-grid,
.events-grid,
.gallery-grid,
.vip-packages-grid,
.private-rooms-grid {
    display: grid !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    gap: 2rem !important;
}

/* 5. CARD FIXES */
.luxury-card,
.testimonial-card,
.news-card,
.event-card,
.vip-package-card,
.private-room-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Hidden für Gradient-Effekte */
    word-wrap: break-word !important;
    hyphens: auto !important;
    position: relative !important; /* Für absolute positioned Elemente */
}

/* 6. SPEZIELLE TESTIMONIAL FIXES */
.testimonials-section {
    width: 100% !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
}

.testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    justify-items: center !important;
}

.testimonial-card .luxury-card {
    min-height: auto !important;
    height: auto !important;
    padding: 2rem !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important; /* Wichtig für Gradient-Effekte */
}

.testimonial-content {
    flex: 1 !important;
    width: 100% !important;
    overflow: visible !important; /* Content soll sichtbar bleiben */
}

.testimonial-text {
    word-wrap: break-word !important;
    hyphens: auto !important;
    overflow-wrap: break-word !important;
}

/* 7. MOBILE SPEZIFISCHE FIXES */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem !important;
        max-width: 100vw !important;
    }
    
    .section {
        padding: 2rem 0 !important;
    }
    
    .testimonials-grid,
    .features-grid,
    .news-grid,
    .events-grid,
    .gallery-grid,
    .vip-packages-grid,
    .private-rooms-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .luxury-card,
    .testimonial-card,
    .news-card,
    .event-card {
        margin: 0 !important;
        padding: 1.5rem !important;
        border-radius: 15px !important;
    }
    
    /* Testimonial spezifische Mobile Fixes */
    .testimonial-text {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 1.5rem !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .testimonial-text::before {
        margin-right: 0.5rem !important;
    }
    
    .testimonial-text::after {
        margin-left: 0.5rem !important;
    }
}

/* 8. EXTRA KLEINE BILDSCHIRME */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem !important;
    }
    
    .luxury-card {
        padding: 1rem !important;
        border-radius: 12px !important;
    }
    
    .testimonial-card .luxury-card {
        padding: 1.5rem !important;
    }
}

/* 9. TRANSFORM FIXES für animierte Elemente */
.luxury-card:hover {
    transform: translateY(-5px) scale(1.01) !important;
    /* Entferne komplexe 3D transforms die Overflow verursachen können */
}

.scroll-reveal,
.scroll-reveal-left,
.scroll-reveal-right {
    transform: translateY(0) !important;
    /* Entferne große translate values die Overflow verursachen */
}

.scroll-reveal.revealed,
.scroll-reveal-left.revealed,
.scroll-reveal-right.revealed {
    transform: translateY(0) translateX(0) !important;
}

/* 10. VERHINDERE HORIZONTALES SCROLLEN */
.nav-elegant,
.hero-cinematic,
.main-content,
footer {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

/* 11. SPEZIELLE FIXES FÜR ABGESCHNITTENE INHALTE */
.testimonial-author,
.card-footer,
.card-actions {
    width: 100% !important;
    margin-top: auto !important;
    padding-top: 1rem !important;
}

/* 12. VERHINDERE OVERFLOW BEI ANIMATIONEN */
@media (max-width: 768px) {
    .luxury-card:hover {
        transform: translateY(-2px) !important;
        /* Kleinere Transforms auf Mobile */
    }
    
    /* Deaktiviere komplexe Animationen auf Mobile */
    .hero-layer,
    .morphing-bg,
    .particle {
        animation: none !important;
    }
}

/* 13. FORCE KORREKTE DIMENSIONEN */
.section,
.container,
.testimonials-grid > *,
.features-grid > *,
.news-grid > * {
    min-width: 0 !important; /* Wichtig für Flexbox/Grid Overflow */
}

/* 14. TEXT OVERFLOW FIXES */
.testimonial-text,
.card-title,
.card-description,
h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    max-width: 100% !important;
}

/* 15. DEBUGGING HELPER (temporär) */
/*
.container {
    border: 2px solid red !important;
}
.luxury-card {
    border: 1px solid blue !important;
}
*/