/* ==========================================
   Das Bordell Köln - Neon-Rot Theme
   Mobile-First, Optimiert, Clean
   ========================================== */

/* CSS Custom Properties */
:root {
    /* Neon-Rot Color Palette */
    --color-primary: #ff0055;
    --color-primary-dark: #cc0044;
    --color-primary-darker: #aa0033;
    --color-secondary: #dd0044;
    
    /* Light Background */
    --color-bg-light: #f5f5f5;
    --color-bg-lighter: #e8e8e8;
    --color-bg-dark: #d9d9d9;
    
    /* Text Colors */
    --color-text: #1a1a1a;
    --color-text-muted: #555555;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 0, 85, 0.2);
    
    /* Shadows & Glows */
    --glow-primary: 0 0 20px rgba(255, 0, 85, 0.3), 0 0 40px rgba(255, 0, 85, 0.2);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==========================================
   Reset & Base Styles
   ========================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg-lighter) 100%);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
}

/* ==========================================
   Container
   ========================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* ==========================================
   Header & Navigation
   ========================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    width: 100%;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .nav {
        padding: 1rem 2rem;
    }
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--color-primary);
    text-decoration: none;
    text-shadow: 
        0 0 5px rgba(255, 0, 85, 0.3),
        0 0 10px rgba(255, 0, 85, 0.2),
        0 0 15px rgba(255, 0, 85, 0.1);
    transition: var(--transition-fast);
    z-index: 1001;
    position: relative;
    top: -3px;
    animation: headerLogoPulse 2.5s ease-in-out infinite;
}

@media (min-width: 640px) {
    .logo {
        font-size: 1.5rem;
        top: -4px;
    }
}

@media (min-width: 768px) {
    .logo {
        font-size: 2rem;
        top: -5px;
    }
}

.logo:hover {
    text-shadow: 
        0 0 8px rgba(255, 0, 85, 0.5),
        0 0 15px rgba(255, 0, 85, 0.3),
        0 0 20px rgba(255, 0, 85, 0.2);
}

/* Hamburger Menu Button - Mobile Only */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    margin-right: -0.25rem;
}

.nav-toggle span {
    width: 100%;
    height: 2.5px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition-normal);
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
}

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

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

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

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2rem;
    padding: 0;
    margin: 0;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    z-index: 1000;
}

.nav-menu.active {
    transform: translateX(0);
}

@media (min-width: 768px) {
    .nav-menu {
        position: static;
        flex-direction: row;
        background: transparent;
        transform: translateX(0);
        gap: 2rem;
        backdrop-filter: none;
    }
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    transition: var(--transition-fast);
    font-weight: 600;
    min-height: 48px;
}

@media (min-width: 768px) {
    .nav-link {
        color: var(--color-text);
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
    text-shadow: var(--glow-primary);
}

/* "Zu den Ladies" Link - gleicher Style wie andere Links */
.nav-link-ladies {
    /* Keine speziellen Styles - verwendet Standard .nav-link Styles */
}

/* ==========================================
   Hero Section
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 60px;
    width: 100%;
    max-width: 100%;
    background-color: #1a1a1a;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 80px;
        height: auto;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    z-index: 1;
    will-change: opacity;
    animation: heroFadeIn 0.5s ease-in;
}

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

/* Fallback für Mobile */
@media (max-width: 767px) {
    .hero-bg {
        background-size: cover;
        background-position: center center;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 2;
}

@media (min-width: 768px) {
    .hero-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 1.5rem 1rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 2.5rem 2rem;
        max-width: 1000px;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 3rem 2rem;
        max-width: 1100px;
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    margin-top: -2rem;
    text-shadow: 
        0 0 8px rgba(255, 0, 85, 0.5),
        0 0 15px rgba(255, 0, 85, 0.4),
        0 0 25px rgba(255, 0, 85, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    line-height: 1.1;
    animation: heroLogoPulse 2.5s ease-in-out infinite;
}

/* Desktop: Größer, nach oben, Neon-Rot mit Pulsieren */
@media (min-width: 768px) {
    .hero-title {
        font-size: 6rem;
        letter-spacing: 3px;
        margin-bottom: 2rem;
        margin-top: -4rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 8rem;
        letter-spacing: 5px;
        margin-top: -5rem;
    }
}

/* Header Logo Pulsier-Animation - minimales Leuchten */
@keyframes headerLogoPulse {
    0%, 100% {
        text-shadow: 
            0 0 5px rgba(255, 0, 85, 0.3),
            0 0 10px rgba(255, 0, 85, 0.2),
            0 0 15px rgba(255, 0, 85, 0.1);
        transform: scale(1);
    }
    50% {
        text-shadow: 
            0 0 8px rgba(255, 0, 85, 0.5),
            0 0 15px rgba(255, 0, 85, 0.3),
            0 0 20px rgba(255, 0, 85, 0.2);
        transform: scale(1.02);
    }
}

/* Hero Logo Pulsier-Animation - reduziertes Leuchten */
@keyframes heroLogoPulse {
    0%, 100% {
        text-shadow: 
            0 0 8px rgba(255, 0, 85, 0.5),
            0 0 15px rgba(255, 0, 85, 0.4),
            0 0 25px rgba(255, 0, 85, 0.3),
            0 4px 8px rgba(0, 0, 0, 0.8);
        transform: scale(1);
    }
    50% {
        text-shadow: 
            0 0 12px rgba(255, 0, 85, 0.7),
            0 0 25px rgba(255, 0, 85, 0.6),
            0 0 40px rgba(255, 0, 85, 0.5),
            0 0 55px rgba(255, 0, 85, 0.4),
            0 6px 12px rgba(0, 0, 0, 0.9);
        transform: scale(1.02);
    }
}

@keyframes neonPulse {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 0, 85, 1),
            0 0 20px rgba(255, 0, 85, 0.8),
            0 0 30px rgba(255, 0, 85, 0.6),
            0 0 40px rgba(255, 0, 85, 0.4),
            0 4px 8px rgba(0, 0, 0, 0.8);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(255, 0, 85, 1),
            0 0 40px rgba(255, 0, 85, 1),
            0 0 60px rgba(255, 0, 85, 0.9),
            0 0 80px rgba(255, 0, 85, 0.7),
            0 0 100px rgba(255, 0, 85, 0.5),
            0 6px 12px rgba(0, 0, 0, 0.9);
    }
}



.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.375rem;
        margin-bottom: 1.25rem;
    }
}

.hero-subtext {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3.5rem;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .hero-subtext {
        font-size: 1.375rem;
        margin-bottom: 5rem;
        max-width: 650px;
        font-weight: 600;
    }
}

@media (min-width: 1024px) {
    .hero-subtext {
        font-size: 1.5rem;
        margin-bottom: 9rem;
        max-width: 700px;
        font-weight: 600;
        letter-spacing: 1px;
    }
}

.hero-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-buttons-wrapper {
        flex-direction: row;
        justify-content: center;
        gap: 1.25rem;
        max-width: 100%;
        flex-wrap: nowrap;
        align-items: stretch;
    }
}

@media (min-width: 1024px) {
    .hero-buttons-wrapper {
        gap: 1.5rem;
    }
}

.hero-btn {
    width: 100%;
    max-width: 280px;
    min-height: 55px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 0.875rem;
    font-weight: 900;
    padding: 1rem 1.5rem;
    flex: 0 0 auto;
    white-space: nowrap;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-btn {
        width: 260px;
        min-height: 60px;
        font-size: 0.875rem;
        padding: 1rem 1.5rem;
        text-align: center;
    }
}

@media (min-width: 1024px) {
    .hero-btn {
        width: 280px;
        min-height: 65px;
        font-size: 0.9375rem;
        padding: 1rem 1.75rem;
        text-align: center;
    }
}

/* ==========================================
   Sections
   ========================================== */

.section {
    padding: 3rem 0;
    width: 100%;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 0;
    }
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 2px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.5rem;
        margin-bottom: 2rem;
        letter-spacing: 3px;
    }
    
    .section-title::after {
        width: 120px;
        height: 5px;
    }
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }
}

/* ==========================================
   About Section
   ========================================== */

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

.about-content p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .about-content p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
}

/* ==========================================
   Cooperation Section
   ========================================== */

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

@media (min-width: 1024px) {
    .cooperation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.cooperation-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .cooperation-card {
        padding: 3rem;
    }
}

.cooperation-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--glow-primary);
    transform: translateY(-4px);
}

.cooperation-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--glass-border);
}

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

.cooperation-header h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 0, 85, 0.3);
}

@media (min-width: 768px) {
    .cooperation-header h3 {
        font-size: 2.25rem;
    }
}

.cooperation-link {
    display: inline-block;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-fast);
}

@media (min-width: 768px) {
    .cooperation-link {
        font-size: 1.125rem;
    }
}

.cooperation-link:hover {
    text-shadow: 0 0 8px rgba(255, 0, 85, 0.6);
}

.cooperation-content {
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cooperation-intro {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 0, 85, 0.05);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-sm);
}

@media (min-width: 768px) {
    .cooperation-intro {
        font-size: 1.125rem;
        padding: 2rem;
    }
}

.cooperation-features {
    margin-bottom: 2rem;
}

.cooperation-features h4,
.cooperation-benefits h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

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

@media (min-width: 640px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.feature-item:hover {
    background: rgba(255, 0, 85, 0.1);
    transform: translateX(4px);
}

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

.feature-item strong {
    display: block;
    color: var(--color-text);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cooperation-benefits {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 0, 85, 0.05);
    border-radius: var(--radius-sm);
}

@media (min-width: 768px) {
    .cooperation-benefits {
        padding: 2rem;
    }
}

.cooperation-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cooperation-benefits li {
    padding: 0.5rem 0;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.cooperation-card .btn {
    width: 100%;
    margin-top: auto;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 65px;
    padding: 1.25rem 2rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .cooperation-card .btn {
        min-height: 70px;
        padding: 1.5rem 2.5rem;
    }
}

@media (min-width: 1024px) {
    .cooperation-card .btn {
        min-height: 75px;
        padding: 1.5rem 3rem;
    }
}

.cooperation-footer {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-top: 2rem;
}

.cooperation-footer p {
    font-size: 1rem;
    color: var(--color-text);
    margin: 0;
    font-weight: 600;
}

/* ==========================================
   Google Reviews Section
   ========================================== */

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

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--glow-primary);
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: 0 4px 12px rgba(255, 0, 85, 0.3);
}

.review-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-text);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.review-stars {
    font-size: 0.875rem;
    color: #FFD700;
}

.review-date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.review-text {
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.review-source {
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reviews-summary {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-md);
}

.reviews-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-primary);
    text-shadow: var(--glow-primary);
}

.rating-stars {
    font-size: 1.5rem;
    color: #FFD700;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    .cooperation-footer p {
        font-size: 1.125rem;
    }
}

/* ==========================================
   Ambiente Grid
   ========================================== */

.ambiente-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .ambiente-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .ambiente-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ambiente-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ambiente-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.4s ease;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: subpixel-antialiased;
}

.ambiente-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    transform: translateY(0);
    transition: all 0.4s ease;
}

@media (min-width: 768px) {
    .ambiente-overlay {
        padding: 2.5rem;
    }
}

.ambiente-card:hover .ambiente-overlay {
    background: linear-gradient(to top, rgba(255, 0, 85, 0.95) 0%, rgba(255, 0, 85, 0.7) 60%, transparent 100%);
}

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

.ambiente-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 0, 85, 0.4);
}

.ambiente-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ambiente-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* ==========================================
   Services Grid
   ========================================== */

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 0, 85, 0.3);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

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

.service-card:hover h3 {
    color: var(--color-primary);
}

.service-card p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ==========================================
   Contact Section
   ========================================== */

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

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.contact-info {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.contact-info h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    min-height: 300px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

/* ==========================================
   Buttons - Traumparadies Style
   ========================================== */

.btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 56px;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--color-primary);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 25px rgba(255, 0, 85, 0.5);
    font-weight: 900;
}

.btn-primary:hover {
    background: #ff1a6b;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 35px rgba(255, 0, 85, 0.7);
    transform: translateY(-3px) scale(1.05);
}

.btn-secondary {
    background: var(--color-primary);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 25px rgba(255, 0, 85, 0.5);
    font-weight: 900;
}

.btn-secondary:hover {
    background: #ff1a6b;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 35px rgba(255, 0, 85, 0.7);
    transform: translateY(-3px) scale(1.05);
}

.btn-call {
    background: var(--color-primary);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 25px rgba(255, 0, 85, 0.5);
    font-weight: 900;
}

.btn-call:hover {
    background: #ff1a6b;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 35px rgba(255, 0, 85, 0.7);
    transform: translateY(-3px) scale(1.05);
}

.btn-reserve {
    background: var(--color-primary);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 25px rgba(255, 0, 85, 0.5);
    font-weight: 900;
}

.btn-reserve:hover {
    background: #ff1a6b;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 35px rgba(255, 0, 85, 0.7);
    transform: translateY(-3px) scale(1.05);
}

/* ==========================================
   Footer
   ========================================== */

.footer {
    background: var(--color-bg-dark);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
        margin-top: 6rem;
    }
}

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

@media (min-width: 640px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h3 {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 0, 85, 0.4);
}

.footer-section p {
    color: var(--color-text-muted);
    line-height: 1.8;
}

.footer-section a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--color-primary);
    text-shadow: 0 0 8px rgba(255, 0, 85, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.footer-credit {
    text-align: center;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.footer-credit p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.footer-credit a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.footer-credit a:hover {
    text-shadow: 0 0 8px rgba(255, 0, 85, 0.5);
}

/* ==========================================
   Scroll to Top Button
   ========================================== */

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border: none;
    border-radius: 50%;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--glow-primary), var(--shadow-card);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.7), 0 0 60px rgba(255, 0, 85, 0.4);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

/* ==========================================
   Typography
   ========================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

/* ==========================================
   Accessibility
   ========================================== */

*:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ==========================================
   Legal Pages
   ========================================== */

.legal-page {
    padding-top: 100px;
    padding-bottom: 4rem;
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
    .legal-content {
        padding: 3rem;
    }
}

.legal-content h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: var(--glow-primary);
}

@media (min-width: 768px) {
    .legal-content h1 {
        font-size: 3rem;
    }
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 0, 85, 0.4);
}

@media (min-width: 768px) {
    .legal-content h2 {
        font-size: 2rem;
    }
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-text);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .legal-content h3 {
        font-size: 1.5rem;
    }
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-fast);
    border-bottom: 1px solid transparent;
}

.legal-content a:hover {
    color: var(--color-text);
    border-bottom-color: var(--color-primary);
    text-shadow: 0 0 8px rgba(255, 0, 85, 0.5);
}

.legal-date {
    font-style: italic;
    color: var(--color-text-muted);
    margin-top: 2rem;
    text-align: center;
}

.legal-back {
    margin-top: 3rem;
    text-align: center;
}

/* ==========================================
   Print Styles
   ========================================== */

@media print {
    .header,
    .footer,
    .scroll-top,
    .nav-toggle {
        display: none;
    }
    
    .legal-content {
        background: white;
        color: black;
        border: none;
        box-shadow: none;
    }
    
    .legal-content h1,
    .legal-content h2 {
        color: black;
        text-shadow: none;
    }
}
