/* Futuristisches Gold-Rot Design */
:root {
    --primary-gold: #FFD700;
    --secondary-gold: #FFA500;
    --primary-red: #DC143C;
    --secondary-red: #B22222;
    --dark-bg: #0A0A0A;
    --light-bg: #1A1A1A;
    --text-light: #FFFFFF;
    --text-gold: #FFD700;
    --gradient-primary: linear-gradient(135deg, var(--primary-gold), var(--primary-red));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-gold), var(--secondary-red));
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Background Image */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    filter: blur(1px);
}

/* Altersverifikation Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: linear-gradient(145deg, var(--dark-bg), var(--light-bg));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
}

.age-modal-icon {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.age-modal h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.age-modal p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.age-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn.confirm {
    background: var(--gradient-primary);
    color: var(--dark-bg);
}

.age-btn.decline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-red);
}

.age-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
}

.logo-icon {
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.logo-text {
    font-size: 2rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4));
}

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

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.hero-logo-icon {
    font-size: 4rem;
    color: #FFFFFF !important;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(0, 0, 0, 0.7),
        2px 2px 4px rgba(0, 0, 0, 1);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #FFFFFF !important;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(0, 0, 0, 0.7),
        2px 2px 4px rgba(0, 0, 0, 1);
    margin: 0;
}

.hero-subtitle-container {
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.05) !important;
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.hero-btn {
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 15px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 0 30px rgba(255,215,0,0.8);
    text-transform: uppercase;
}

.hero-btn.primary {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    box-shadow: 0 0 30px rgba(255,215,0,0.8), 0 0 50px rgba(255,215,0,0.4);
}

.hero-btn.secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-gold);
    box-shadow: 0 0 30px rgba(255,215,0,0.6), 0 0 50px rgba(255,215,0,0.3);
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4), 0 0 60px rgba(255,215,0,0.6);
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); opacity: 0; }
    50% { transform: translateY(-20px); opacity: 1; }
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Services */
.services {
    padding: 6rem 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(145deg, var(--light-bg), var(--dark-bg));
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Cooperation Banner */
.cooperation-banner {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05), rgba(255, 215, 0, 0.05));
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    border-bottom: 1px solid rgba(220, 20, 60, 0.3);
    backdrop-filter: blur(5px);
}

.cooperation-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.cooperation-logos {
    margin-bottom: 1rem;
}

.cooperation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cooperation-icon {
    font-size: 4rem;
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.cooperation-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.cooperation-text h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.partner-websites {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.partner-site {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 15px;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.03), rgba(220, 20, 60, 0.03));
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 220px;
    cursor: pointer;
}

.partner-site:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
    border-color: rgba(220, 20, 60, 0.6);
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.08), rgba(220, 20, 60, 0.08));
}

.partner-site i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    margin-bottom: 0.5rem;
}

.partner-description {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-light);
    text-align: center;
    margin: 0;
    opacity: 0.9;
}

.cooperation-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cooperation-divider i {
    font-size: 2rem;
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.2);
    padding: 1rem;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
}

.cooperation-description {
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin-top: 1rem;
}

/* Mobile Cooperation */
@media (max-width: 768px) {
    .cooperation-banner {
        padding: 2rem 0;
    }

    .cooperation-text h2 {
        font-size: 1.6rem;
    }

    .partner-websites {
        flex-direction: column;
        gap: 1.5rem;
    }

    .partner-site {
        min-width: 180px;
        padding: 1.2rem;
    }

    .partner-name {
        font-size: 1.2rem;
    }

    .partner-description {
        font-size: 0.8rem;
    }

    .cooperation-divider {
        transform: rotate(90deg);
    }
}

/* Live Monitor Section */
.live-monitor {
    padding: 5rem 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

.monitor-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.monitor-info {
    text-align: center;
    max-width: 800px;
}

.monitor-icon {
    margin-bottom: 2rem;
}

.monitor-icon i {
    font-size: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.monitor-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.monitor-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: justify;
}

.monitor-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.05), rgba(220, 20, 60, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--text-light);
}

.monitor-benefit {
    font-style: italic;
    color: var(--text-gold);
    border-left: 3px solid var(--primary-gold);
    padding-left: 2rem;
    margin-top: 3rem;
}

/* Mobile Monitor Section */
@media (max-width: 768px) {
    .live-monitor {
        padding: 3rem 0;
    }

    .monitor-title {
        font-size: 2rem;
    }

    .monitor-description p {
        font-size: 1.1rem;
        text-align: left;
    }

    .monitor-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }

    .monitor-benefit {
        padding-left: 1rem;
        text-align: left;
    }
}

/* Ambiente */
.ambiente {
    padding: 6rem 0;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
}

.ambiente-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.ambiente-text h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ambiente-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.ambiente-features {
    list-style: none;
}

.ambiente-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.ambiente-features i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

/* Ambiente Gallery */
.ambiente-gallery {
    margin-top: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--light-bg), var(--dark-bg));
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

/* Ladies */
.ladies {
    padding: 6rem 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

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

.ladies-description {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.ladies-cta {
    background: linear-gradient(145deg, var(--light-bg), var(--dark-bg));
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.cta-btn {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 15px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.ladies-note {
    font-style: italic;
    color: var(--text-gold);
}

/* Bewertungen */
.bewertungen {
    padding: 6rem 0;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
}

.rating-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(145deg, var(--light-bg), var(--dark-bg));
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.score {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-gold);
    font-family: 'Orbitron', sans-serif;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

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

.review-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.maps-btn {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.maps-btn:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: linear-gradient(145deg, var(--light-bg), var(--dark-bg));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.reviewer-name {
    font-weight: bold;
    color: var(--primary-gold);
}

.review-stars {
    display: flex;
    gap: 0.2rem;
}

.review-stars i {
    color: var(--primary-gold);
    font-size: 1rem;
}

.review-date {
    color: #888;
    font-size: 0.9rem;
}

.review-text {
    line-height: 1.6;
    font-style: italic;
}

/* Management */
.management {
    padding: 6rem 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

.management-content {
    text-align: center;
}

.management-info h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.management-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, var(--light-bg), var(--dark-bg));
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.feature i {
    font-size: 2rem;
    color: var(--primary-gold);
}

/* Contact */
.contact {
    padding: 6rem 0;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
}

.contact-info h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-top: 0.5rem;
}

.contact-item strong {
    color: var(--primary-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-form-container h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    background: rgba(26, 26, 26, 0.8);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.contact-form button {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    padding: 3rem 0 1rem;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: var(--primary-gold);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

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

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Mobile Logo Fix - 2mm nach unten */
    .nav-logo {
        margin-top: 2px;
    }

    .logo-icon {
        font-size: 1.8rem;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-logo-icon {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Contact Form Container zentrieren in Mobile */
    .contact-form-container {
        text-align: center;
        margin: 0 auto;
        width: 100%;
        max-width: 350px;
        padding: 0 1rem;
    }

    .contact-form-container h3 {
        text-align: center;
        font-size: 1.5rem;
    }

    /* Kontaktinformationen mittig in Mobile */
    .contact-info {
        text-align: center;
        margin: 0 auto;
        max-width: 300px;
        padding: 0 1rem;
    }

    .contact-info h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-item i {
        margin-top: 0;
    }

    .contact-item div {
        text-align: center;
    }

    .rating-summary {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item img {
        height: 200px;
    }
}