/* 
 * RESPONSIVE CSS - BEREINIGTE VERSION
 * FKK Club Germany - Funktionierendes Mobile Menu & Perfekte Responsive Design
 * Kein horizontales Scrollen, saubere Breakpoints
 */

/* Base Responsive Breakpoints */
:root {
    --mobile-small: 480px;
    --mobile: 768px;
    --tablet: 968px;
    --desktop: 1200px;
    --desktop-large: 1400px;
}

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

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

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Container und Grid Fixes */
.container {
    max-width: 100%;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    margin-left: auto;
    margin-right: auto;
    overflow-x: hidden;
}

/* DESKTOP LARGE (1400px+) */
@media (min-width: 1400px) {
    .hero-title-cinematic {
        font-size: 6rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .container {
        max-width: 1400px;
    }
}

/* DESKTOP (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    :root {
        --container-padding: 2rem;
    }
    
    .hero-title-cinematic {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* DESKTOP SMALL (969px - 1199px) */
@media (min-width: 969px) and (max-width: 1199px) {
    :root {
        --container-padding: 1.5rem;
        --section-padding: 5rem 0;
    }
    
    .hero-title-cinematic {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .vip-tiers {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .news-grid-listing {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Cards Mobile */
    .luxury-card {
        padding: 2rem;
        margin: 1rem 0;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    /* VIP Mobile */
    .vip-tier.featured {
        transform: none;
    }
    
    /* Contact Mobile */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    /* Article Mobile */
    .article-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* Filter Mobile */
    .filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 250px;
    }
    
    /* Pagination Mobile */
    .pagination-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .pagination-prev,
    .pagination-next {
        width: 100%;
        max-width: 200px;
    }
    
    /* Events Timeline Mobile */
    .events-timeline {
        padding-left: 2rem;
    }
    
    .timeline-marker {
        left: -1.5rem;
    }
    
    /* Hide decorative elements on mobile */
    .floating-element {
        display: none;
    }
    
    .particle-container {
        display: none;
    }
}

/* MOBILE SMALL (320px - 480px) */
@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
        --section-padding: 3rem 0;
    }
    
    body {
        font-size: 14px;
    }
    
    /* Navigation Extra Small */
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
    }
    
    .nav-link-elegant {
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    /* Hero Extra Small */
    .hero-cinematic,
    .page-hero {
        height: 100vh;
        min-height: 350px;
    }
    
    .hero-title-cinematic {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle-cinematic {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    /* Sections Extra Small */
    .section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    /* Cards Extra Small */
    .luxury-card {
        padding: 1.5rem;
        margin: 0.5rem 0;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Buttons Extra Small */
    .btn-luxury {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .btn-luxury.btn-large {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    /* News Extra Small */
    .news-image,
    .news-image-listing {
        height: 200px;
    }
    
    .news-title,
    .news-title-listing {
        font-size: 1.2rem;
    }
    
    .news-excerpt,
    .news-excerpt-listing {
        font-size: 0.9rem;
    }
    
    /* Gallery Extra Small */
    .gallery-item-advanced {
        height: 300px;
    }
    
    /* Contact Extra Small */
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-input,
    .form-textarea,
    .form-select {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .contact-method {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .method-icon {
        font-size: 1.5rem;
    }
    
    /* VIP Extra Small */
    .tier-card {
        padding: 2rem;
    }
    
    .tier-title {
        font-size: 1.5rem;
    }
    
    .tier-price {
        font-size: 1.2rem;
    }
    
    /* Footer Extra Small */
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    /* Back to Top Extra Small */
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    /* Events Extra Small */
    .event-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .event-date {
        align-self: center;
        min-width: 60px;
        padding: 0.8rem;
    }
    
    .event-day {
        font-size: 1.2rem;
    }
    
    .event-month {
        font-size: 0.8rem;
    }
    
    /* Timeline Extra Small */
    .events-timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-marker {
        left: -1.25rem;
        width: 10px;
        height: 10px;
    }
    
    .timeline-month-title {
        font-size: 1.2rem;
        padding: 0.4rem 0.8rem;
    }
    
    .event-card-timeline {
        margin-left: 1rem;
    }
    
    /* Pagination Extra Small */
    .pagination-link {
        min-width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
    
    .pagination-prev,
    .pagination-next {
        padding: 0 1rem;
        font-size: 0.8rem;
    }
    
    /* Filter Extra Small */
    .filter-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
    
    /* Loading Extra Small */
    .loading-spinner {
        width: 80px;
        height: 80px;
    }
    
    .loading-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* LANDSCAPE MOBILE FIXES */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-cinematic,
    .page-hero {
        height: 100vh;
        min-height: auto;
    }
    
    .hero-content-cinematic {
        padding: 1rem;
        max-width: 800px;
    }
    
    .hero-title-cinematic {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle-cinematic {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        display: none; /* Hide description in landscape to save space */
    }
    
    .hero-buttons {
        gap: 1rem;
        flex-direction: row;
    }
    
    .btn-luxury {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
        width: auto;
    }
    
    /* Mobile Menu angepasst für Landscape */
    .nav-menu.active {
        height: 100vh;
        padding-top: 80px;
    }
}

/* ABOUT PAGE SPECIFIC RESPONSIVE */
@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-detailed-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .commitment-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .amenity-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .application-process {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .commitment-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .application-process {
        grid-template-columns: 1fr;
    }
    
    .content-title {
        font-size: 2rem;
    }
    
    .feature-detailed {
        padding: 2rem;
    }
    
    .feature-icon-large {
        font-size: 3rem;
    }
    
    .cta-title,
    .application-title {
        font-size: 2rem;
    }
    
    .amenity-item {
        padding: 2rem;
    }
    
    .amenity-visual {
        height: 200px;
    }
    
    .amenity-placeholder {
        font-size: 3rem;
    }
}

/* VIP PAGE SPECIFIC RESPONSIVE */
@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vip-tier.featured {
        transform: none;
        order: -1;
    }
}

/* FOOTER RESPONSIVE STYLES */
@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;
    }
    
    .contact-item {
        gap: 0.5rem;
    }
    
    .contact-item i {
        font-size: 1rem;
    }
    
    .footer-subtitle {
        font-size: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
}

/* TOUCH DEVICE OPTIMIZATIONS */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .luxury-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    .btn-luxury:hover {
        transform: none;
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    }
    
    .nav-link-elegant:hover {
        transform: none;
        color: var(--soft-white);
    }
    
    .gallery-item-advanced:hover {
        transform: none;
    }
    
    .news-card:hover .news-image img,
    .news-card-listing:hover .news-image-listing img {
        transform: none;
    }
    
    /* Add touch-friendly tap states */
    .btn-luxury:active {
        transform: scale(0.95);
    }
    
    .luxury-card:active {
        transform: scale(0.98);
    }
    
    .nav-link-elegant:active {
        background: rgba(212, 175, 55, 0.1);
    }
    
    /* Increase touch targets */
    .nav-toggle {
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
    }
    
    .back-to-top {
        min-width: 44px;
        min-height: 44px;
    }
    
    .social-link {
        min-width: 44px;
        min-height: 44px;
    }
    
    .pagination-link {
        min-width: 44px;
        min-height: 44px;
    }
    
    .filter-btn {
        min-height: 44px;
    }
}

/* HIGH DPI / RETINA DISPLAYS */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-text,
    .hero-title-cinematic,
    .section-title,
    .elegant-title {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Ensure crisp borders on high DPI */
    .luxury-card,
    .btn-luxury,
    .form-input,
    .nav-elegant {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

/* ACCESSIBILITY IMPROVEMENTS */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !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;
    }
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
    :root {
        --primary-gold: #FFD700;
        --secondary-gold: #FFFF99;
        --soft-white: #FFFFFF;
        --warm-black: #000000;
        --text-primary: #FFFFFF;
        --text-secondary: #CCCCCC;
        --shadow-gold: rgba(255, 215, 0, 0.5);
        --shadow-dark: rgba(0, 0, 0, 0.8);
    }
    
    .luxury-card,
    .btn-luxury,
    .form-input,
    .form-textarea,
    .form-select {
        border-width: 2px !important;
        border-color: var(--primary-gold) !important;
    }
    
    .nav-elegant {
        background: #000000 !important;
        border-bottom: 2px solid var(--primary-gold) !important;
    }
    
    .footer-elegant {
        background: #000000 !important;
        border-top: 2px solid var(--primary-gold) !important;
    }
}

/* PRINT STYLES */
@media print {
    /* Hide non-essential elements */
    .nav-elegant,
    .back-to-top,
    .particle-container,
    .floating-elements,
    .hero-buttons,
    .cta-section,
    .footer-social,
    .loading-elegant {
        display: none !important;
    }
    
    /* Reset colors for print */
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero-cinematic,
    .page-hero {
        height: auto !important;
        background: none !important;
        color: black !important;
        padding: 2rem 0;
        page-break-inside: avoid;
    }
    
    .hero-title-cinematic,
    .section-title,
    .elegant-title {
        color: black !important;
        background: none !important;
        -webkit-text-fill-color: initial !important;
        background-clip: initial !important;
    }
    
    .luxury-card,
    .news-card,
    .event-card {
        border: 1px solid #ccc !important;
        background: white !important;
        break-inside: avoid;
        margin-bottom: 1rem;
        box-shadow: none !important;
    }
    
    .section {
        padding: 2rem 0;
        page-break-inside: avoid;
    }
    
    a {
        color: black !important;
        text-decoration: underline !important;
    }
    
    .btn-luxury {
        border: 1px solid black !important;
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
    
    /* Optimize images for print */
    img {
        max-width: 100% !important;
        height: auto !important;
        page-break-inside: avoid;
    }
    
    /* Page breaks */
    .section-header {
        page-break-after: avoid;
    }
    
    .hero-cinematic {
        page-break-after: avoid;
    }
    
    .footer-elegant {
        page-break-before: always;
        background: white !important;
        color: black !important;
    }
}

/* FOCUS STYLES FOR ACCESSIBILITY */
*:focus {
    outline: 2px solid var(--primary-gold) !important;
    outline-offset: 2px;
    z-index: 999;
}

.btn-luxury:focus,
.nav-link-elegant:focus,
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3) !important;
}

.nav-toggle:focus {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 4px;
}

/* PREVENT HORIZONTAL OVERFLOW - KRITISCH */
.hero-cinematic,
.page-hero,
.section,
.footer-elegant,
.nav-elegant {
    max-width: 100vw;
    overflow-x: hidden;
}

/* ENSURE ALL GRIDS ARE RESPONSIVE */
.features-grid,
.news-grid,
.news-grid-listing,
.events-grid,
.gallery-grid-advanced,
.vip-tiers,
.related-news-grid,
.related-galleries-grid,
.footer-content {
    width: 100%;
    max-width: 100%;
   /* overflow-x: hidden;*/
}

/* FIX FOR VERY LONG WORDS */
.hero-title-cinematic,
.section-title,
.news-title,
.news-title-listing,
.event-title,
.gallery-title {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* ENSURE BUTTONS ARE ALWAYS ACCESSIBLE */
.btn-luxury,
.filter-btn,
.pagination-link,
.nav-link-elegant {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* VERY SMALL SCREENS (320px and below) */
@media (max-width: 320px) {
    :root {
        --container-padding: 0.8rem;
    }
    
    .nav-container {
        padding: 0 0.8rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .hero-title-cinematic {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .luxury-card {
        padding: 1rem;
    }
    
    .btn-luxury {
        padding: 0.7rem 1.2rem;
        font-size: 0.75rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
}

/* WIDE SCREENS (1600px+) */
@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
        overflow: hidden;
    }
    
    .hero-title-cinematic {
        font-size: 7rem;
    }
    
    .section-title {
        font-size: 4rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid-advanced {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* MOBILE MENU BODY LOCK WHEN ACTIVE */
body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}d {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
       /* grid-template-columns: 2fr 1fr 1fr;*/
        gap: 2rem;
    }
}

/* TABLET (769px - 968px) */
@media (min-width: 769px) and (max-width: 968px) {
    :root {
        --container-padding: 1.5rem;
        --section-padding: 4rem 0;
    }
    
    /* Navigation wird noch normal angezeigt */
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link-elegant {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }
    
    .logo-text {
        font-size: 1.7rem;
    }
    
    /* Hero Tablet */
    .hero-title-cinematic {
        font-size: 3.5rem;
    }
    
    .hero-subtitle-cinematic {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    /* Sections Tablet */
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Grids Tablet */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid-advanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .vip-tiers {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vip-tier.featured {
        transform: none;
    }
    
    /* Contact Tablet */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Article Tablet */
    .article-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Footer Tablet */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Events Timeline Tablet */
    .events-timeline {
        padding-left: 2.5rem;
    }
    
    .timeline-marker {
        left: -1.75rem;
    }
}

/* MOBILE NAVIGATION - KRITISCH WICHTIG */
@media (max-width: 768px) {
    
    /* Navigation Toggle Button anzeigen */
    .nav-toggle {
        display: flex !important;
        z-index: 1002;
    }
    
    /* Standard Navigation verstecken */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 0;
        margin: 0;
        
        /* Versteckt standardmäßig */
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        
        transition: all 0.3s var(--ease-elegant);
        z-index: 1001;
    }
    
    /* Mobile Menu aktiv - WICHTIG: Diese Klasse wird durch JavaScript gesetzt */
    .nav-menu.active {
        transform: translateX(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Navigation Links im Mobile Menu */
    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 0;
    }
    
    .nav-link-elegant {
        width: 100%;
        padding: 1.5rem 2rem;
        text-align: center;
        border-radius: 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        display: block;
    }
    
    .nav-link-elegant:hover {
        background: rgba(212, 175, 55, 0.1);
        transform: none;
    }
    
    /* Logo bleibt sichtbar */
    .logo {
        z-index: 1002;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
}

/* MOBILE LARGE (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    :root {
        --container-padding: 1rem;
        --section-padding: 3rem 0;
    }
    
    /* Hero Mobile */
    .hero-cinematic,
    .page-hero {
        height: 70vh;
        min-height: 400px;
        padding: 0 1rem;
    }
    
    .hero-title-cinematic {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle-cinematic {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-luxury {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Sections Mobile */
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Grids Mobile */
    .features-grid,
    .news-grid,
    .events-grid,
    .gallery-grid-advanced,
    .vip-tiers,
    .related-news-grid,
    .related-galleries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-gri