/* ===================================================================
   Marken-Farbsystem - Bordell Karlsruhe
   Gold . Rubinrot . Tiefschwarz  (abgeleitet aus dem neuen Logo)
   =================================================================== */
:root {
    /* Akzentfarben (ersetzen das fruehere Magenta/Purple) */
    --primary-color: #c8102e;      /* Rubinrot - lebendiger Hauptakzent */
    --primary-bright: #e8294a;     /* helleres Rubin fuer Hover/Glows */
    --secondary-color: #6e0c1a;    /* tiefes Bordeaux */
    --crimson-deep: #3d0710;       /* dunkles Blutrot fuer Verlaeufe */

    /* Gold - satter & metallischer als zuvor */
    --gold-color: #d4af37;         /* Hauptgold */
    --gold-bright: #f7e7a8;        /* Glanzlicht / Highlight */
    --gold-deep: #9a7b26;          /* Gold-Schatten */

    /* Flaechen & Text */
    --background-dark: #0a0608;    /* warmes Tiefschwarz */
    --text-light: #f5f0e6;         /* warmes Elfenbein statt reinem Weiss */
    --text-muted: rgba(245, 240, 230, 0.66);

    /* Verlaeufe */
    --gradient-dark: linear-gradient(to bottom, rgba(0,0,0,0.92), rgba(10,6,8,0.72));
    --gradient-gold: linear-gradient(135deg, #8a6d1f 0%, #d4af37 26%, #f7e7a8 50%, #d4af37 74%, #8a6d1f 100%);
    --gradient-ruby: linear-gradient(135deg, #6e0c1a, #c8102e 55%, #e8294a);

    /* Hairlines, Schatten & Glow */
    --border-gold: rgba(212, 175, 55, 0.30);
    --shadow-luxe: 0 14px 40px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(212, 175, 55, 0.10);
    /* Edler Glow: goldener Kern -> rubinroter Halo (statt grellem Weiss) */
    --neon-glow: 0 0 4px rgba(247, 231, 168, 0.85),
                 0 0 12px rgba(212, 175, 55, 0.60),
                 0 0 26px rgba(200, 16, 46, 0.55),
                 0 0 48px rgba(200, 16, 46, 0.32);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(228, 204, 127, 0.2); /* Use gold color */
    box-shadow: 0 4px 15px rgba(228, 204, 127, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 2rem;
    font-weight: bold;
}

.logo i {
    color: var(--gold-color);
    filter: drop-shadow(0 0 5px rgba(228, 204, 127, 0.5));
    animation: crownGlow 2s infinite alternate;
}

.logo span {
    background: linear-gradient(
        to right,
        var(--gold-color),
        var(--primary-color),
        var(--gold-color)
    );
    background-size: 400% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientSlide 8s ease infinite;
}

@keyframes crownGlow {
    from {
        filter: drop-shadow(0 0 2px rgba(228, 204, 127, 0.5));
    }
    to {
        filter: drop-shadow(0 0 8px rgba(228, 204, 127, 0.8));
    }
}

@keyframes gradientSlide {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.nav-links {
    display: flex;
    gap: 0.3rem;
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link i {
    color: var(--gold-color);
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
    color: var(--gold-color);
}

.nav-link:hover i {
    color: var(--primary-color);
    transform: scale(1.1) rotate(10deg);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Submenu Styles */
.nav-links .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(228, 204, 127, 0.1);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    z-index: 1100;
}

.nav-links > li {
    position: relative;
}

.nav-links > li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    margin: 0;
}

.submenu .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.submenu .nav-link:hover {
    background: rgba(200, 16, 46, 0.1);
    color: var(--gold-color);
}

.submenu .nav-link i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.submenu .nav-link:hover i {
    transform: scale(1.2) rotate(15deg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7)
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    transform: translateY(-15%);
}

.neon-text {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: neonPulse 1.5s infinite alternate;
}

.neon-text-small {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    animation: neonPulse 1.5s infinite alternate;
    animation-delay: 0.5s;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    letter-spacing: 4px;
}

/* Info Bar */
.info-bar {
    position: absolute;
    top: 70%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 4rem;
    z-index: 3;
    padding: 0 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-item:hover {
    transform: translateY(-5px);
    color: var(--primary-color);
}

.info-item i {
    color: var(--primary-color);
    font-size: 2rem;
    filter: drop-shadow(0 0 5px var(--primary-color));
    transition: all 0.3s ease;
}

.info-item span {
    font-size: 1.1rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    color: var(--primary-color);
}

.info-item:hover i {
    filter: drop-shadow(0 0 8px var(--primary-color));
    transform: scale(1.1);
}

/* Girls Section */
.girls-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #000, #1c0709);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 3rem;
}

.girls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.girl-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.girl-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(200, 16, 46, 0.3);
}

.girl-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.girl-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.girl-card:hover .girl-image img {
    transform: scale(1.1);
}

.country-flag {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 28px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
    animation: flagWave 3s ease-in-out infinite;
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.girl-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.7) 80%, transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.girl-info h3.gradient-text {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(
        to right,
        #d4af37,
        var(--primary-color),
        #d4af37,
        var(--secondary-color)
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientSlide 8s ease infinite;
}

.girl-details {
    display: grid;
    gap: 0rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.detail-item i {
    width: 20px;
    color: var(--gold-color);
    filter: drop-shadow(0 0 3px var(--primary-color));
}

.detail-item:hover {
    color: var(--text-light);
    transform: translateX(5px);
}

.detail-item:hover i {
    filter: drop-shadow(0 0 5px var(--primary-color));
}

/* Flag Wave Animation */
@keyframes flagWave {
    0% {
        transform: perspective(400px) rotateY(0);
    }
    50% {
        transform: perspective(400px) rotateY(10deg);
    }
    100% {
        transform: perspective(400px) rotateY(0);
    }
}

.girl-card:hover .girl-info {
    transform: translateY(0);
}

/* Gallery Section */
.gallery-section {
    padding: 2rem;
    background: linear-gradient(to bottom, #1c0709, #000);
    min-height: 80vh;
    position: relative;
    overflow: hidden; /* Prevent sliding issues */
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.gallery-slider {
    position: relative;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 2000px;
    touch-action: pan-y pinch-zoom; /* Improve touch handling */
    transform-style: preserve-3d;
    will-change: transform; /* Optimize performance */
}

.gallery-slide {
    position: absolute;
    width: 70%;
    max-width: 1000px;
    height: 60vh;
    transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    pointer-events: auto;
    transform-origin: center center;
    backface-visibility: hidden;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    pointer-events: none; /* Prevent image dragging */
}

.gallery-slide.active {
    z-index: 10;
    transform: translateZ(0) scale(1);
}

.gallery-slide:not(.active) {
    pointer-events: none;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transition: all 0.3s ease;
}

.gallery-slide:hover .slide-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation Controls */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.gallery-prev {
    left: 2rem;
}

.gallery-next {
    right: 2rem;
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 15px var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav i {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

/* Events Section */
.events-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #000, #1c0709);
    position: relative;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(200, 16, 46, 0.2);
}

.event-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.event-details {
    margin: 1.5rem 0;
    color: var(--text-muted);
}

.event-details i,
.event-price i {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px var(--primary-color));
    margin-right: 10px;
}

.event-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-align: right;
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #1c0709, #000);
    position: relative;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-block {
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.info-block:hover {
    background: rgba(200, 16, 46, 0.1);
    transform: translateY(-5px);
}

.info-block h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer */
.main-footer {
    background: #000;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.site-link {
    color: #d4af37;
    text-decoration: none;
	font-weight:bold;
    transition: color 0.3s ease;
}

.site-link:hover {
    color: var(--primary-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem;
    text-align: center;
    z-index: 9999;
}

.cookie-banner button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-left: 1rem;
    cursor: pointer;
}

/* Visitor Statistics Styling */
.visitor-stats {
    display: flex;
    justify-content: space-between;
    background-color: #f4f4f4;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.visitor-stats .stat-item {
    text-align: center;
    flex: 1;
    padding: 10px;
    margin: 0 5px;
    background-color: #ffffff;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.visitor-stats .stat-item:hover {
    background-color: #e9e9e9;
    transform: translateY(-3px);
}

.visitor-stats .stat-label {
    display: block;
    color: #666;
    font-size: 0.8em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.visitor-stats .stat-value {
    display: block;
    color: #333;
    font-size: 1.4em;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .visitor-stats {
        flex-direction: column;
    }

    .visitor-stats .stat-item {
        margin: 5px 0;
    }
}

/* Footer Visitor Counter */
.main-footer .footer-info p:last-child {
    color: #666;
    font-size: 0.9em;
    margin-top: 5px;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: var(--gold-color);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px var(--gold-color);
}

/* Animations */
@keyframes neonPulse {
    from {
        text-shadow: 0 0 6px var(--gold-bright),
                     0 0 12px var(--gold-color),
                     0 0 26px var(--primary-color);
    }
    to {
        text-shadow: 0 0 6px var(--gold-bright),
                     0 0 12px var(--gold-color),
                     0 0 28px var(--primary-color),
                     0 0 60px var(--primary-color),
                     0 0 82px var(--primary-color);
    }
}

@media (min-width: 1025px) {
    .slide-overlay {
        opacity: 0;
        transform: translateY(100%);
    }
    
    .gallery-slide:hover .slide-overlay {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-slide {
        width: 80%;
        height: 50vh;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
	.info-bar {
        gap: 2.5rem;
    }

    .info-item i {
        font-size: 1.75rem;
    }

    .info-item span {
        font-size: 1rem;
    }
	.slide-overlay {
        opacity: 1;
        transform: none;
        padding: 1.5rem;
        background: linear-gradient(to top, 
            rgba(0,0,0,0.95) 0%,
            rgba(0,0,0,0.8) 60%,
            transparent 100%);
    }
    
    .slide-overlay h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .slide-overlay p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

@media (max-width: 768px) {
	
    .logo {
        font-size: 1.0rem;
        gap: 0.5rem;
    }
    
    .logo i {
        font-size: 0.8rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        padding: 6rem 2rem;
        z-index: 1000;
    }
	
	.nav-links .submenu {
        position: static;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
    }

    .submenu .nav-link {
        padding: 1rem 0;
        color: var(--text-light);
    }

    .submenu .nav-link:hover {
        background: none;
        color: var(--gold-color);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background: var(--primary-color);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background: var(--primary-color);
    }
	
	.contact-info {
		padding: 0rem;
	}

    .nav-links.active {
        display: flex;
    }
	
	 .nav-link {
        font-size: 1.3rem;
    }
	
	.info-bar {
        position: relative;
        top: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        padding: 1.5rem;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        max-width: 280px;
        margin: 0 auto;
    }

    .info-item {
        width: 100%;
        padding: 0.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .info-item i {
        font-size: 1.5rem;
        width: 40px;
        display: flex;
        justify-content: center;
    }

    .info-item span {
        font-size: 0.95rem;
    }

    .info-item:hover {
        background: rgba(200, 16, 46, 0.1);
        transform: translateX(5px);
    }

    .neon-text {
        font-size: 3rem;
    }
    
    .neon-text-small {
        font-size: 2rem;
    }

    .info-bar {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
	
	.girl-info {
        transform: none;
        background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.7) 90%);
    }
    
    .girl-info h3.gradient-text {
        font-size: 1.3rem;
    }
    
    .detail-item {
        font-size: 0.9rem;
    }
    
    .country-flag {
        width: 35px;
        height: 24px;
    }

    .gallery-slide {
        width: 85%;
        height: 50vh;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
	
	.lightbox-content {
        max-width: 95%;
    }
	
	.slide-overlay {
        padding: 1rem;
    }
    
    .slide-overlay h3 {
        font-size: 1.1rem;
    }
    
    .slide-overlay p {
        font-size: 0.85rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .contact-map {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
	.logo {
        font-size: 0.8rem;
    }
    
    .logo i {
        font-size: 0.6rem;
    }
	.girl-info h3.gradient-text {
        font-size: 1.2rem;
    }
    
    .girl-info {
        padding: 1rem;
    }
    
    .detail-item {
        font-size: 0.85rem;
    }
    .info-bar {
        max-width: 250px;
        padding: 1.25rem;
        gap: 1.25rem;
    }

    .info-item i {
        font-size: 1.25rem;
        width: 35px;
    }

    .info-item span {
        font-size: 0.9rem;
    }
}

/* Mobile Menu Button States */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000; /* Ensure it's above everything */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    transition: opacity 0.3s ease;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--text-light);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--text-light);
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav.prev {
    left: 1rem;
}

.lightbox-nav.next {
    right: 1rem;
}

/* Helper Classes */
.hidden {
    display: none !important;
}

.no-scroll {
    overflow: hidden !important;
}

/* Map Styles */
.contact-map {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 650px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

#map {
    height: 100%;
    width: 100%;
    filter: grayscale(0.7) brightness(0.8);
    transition: all 0.3s ease;
}

.contact-map:hover #map {
    filter: grayscale(0) brightness(1);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.85);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 400;
}

.address-info {
    color: var(--text-light);
}

.address-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.address-info i {
    color: var(--primary-color);
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.navigation-links {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 1rem;
    z-index: 400;
}

.nav-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(200, 16, 46, 0.4);
}

.nav-button i {
    font-size: 1.2rem;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .navigation-links {
        flex-direction: column;
    }
    
    .map-overlay {
        right: 20px;
        text-align: center;
    }
}

/* Heart Marker Style */
.heart-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px !important;
    height: 40px !important;
}

.heart-marker i {
    font-size: 24px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 5px var(--primary-color));
    animation: heartBeat 1.5s infinite;
}

/* Custom Popup Style */
.custom-popup {
    background: rgba(0, 0, 0, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    backdrop-filter: blur(10px);
}

.custom-popup .leaflet-popup-content-wrapper {
    background: transparent;
    color: var(--text-light);
    border-radius: 8px;
}

.custom-popup .leaflet-popup-content {
    margin: 0;
    padding: 0;
}

.custom-popup .leaflet-popup-tip {
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-popup {
    padding: 1rem;
    text-align: center;
}

.map-popup h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--primary-color);
}

.map-popup p {
    margin: 0.3rem 0;
    color: var(--text-light);
}

.map-popup i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Heart Beat Animation */
@keyframes heartBeat {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    40% {
        transform: scale(1);
    }
    60% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

   /* .info-item {
        animation: slideIn 0.3s ease forwards;
    }*/

    .info-item:nth-child(2) {
        animation-delay: 0.1s;
    }

    .info-item:nth-child(3) {
        animation-delay: 0.2s;
    }
}

/* Translator Styles */
.translator-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1200;
}

.translator-toggle {
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.translator-toggle:hover {
    transform: scale(1.1);
}

.translator-toggle i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.translator-dropdown {
    display: none;
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    background: rgba(0,0,0,0.8);
    border-radius: 8px;
    width: 250px;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    z-index: 1100;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
}

.translator-option {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    padding: 0.25rem;
    background: transparent;
}

.translator-option:hover {
    transform: scale(1.1);
}

.translator-option img {
    width: 40px;
    height: 30px;
    border-radius: 4px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.translator-option:hover img {
    box-shadow: 0 0 10px rgba(200, 16, 46, 0.3);
}

/* Translator Error Toast */
.translator-error-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4d4d;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    z-index: 2000;
    text-align: center;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}


/* Google Translate Styles */
#google_translate_element {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.2);  /* Erhöhte Transparenz auf 80% */
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

#google_translate_element:hover {
    background: rgba(0, 0, 0, 0.4);  /* Leicht dunklerer Hintergrund beim Hover */
}

/* Google Translate Styles */
.goog-te-gadget {
    font-family: Arial, sans-serif !important;
    color: transparent !important;
}

.goog-te-gadget .goog-te-combo {
    margin: 0 !important;
    padding: 5px !important;
    border-radius: 4px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(0, 0, 0, 0.8) !important;
    color: white !important;
    font-size: 14px !important;
    outline: none !important;
}

.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-te-gadget span {
    display: none !important;
}

select.goog-te-combo:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 5px var(--primary-color) !important;
}
/* Responsive Design */
@media (max-width: 480px) {
    .translator-dropdown {
        width: 200px;
        grid-template-columns: repeat(4, 1fr);
    }

    .translator-option img {
        width: 35px;
        height: 25px;
    }
}

.skiptranslate > iframe { 
  height: 0 !important;
  border-style: none;
  box-shadow: none;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalFadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes modalContentSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalContentSlideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(50px);
    }
}

/* Modal-Grundstil mit Animationen */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
	bottom:0;
    width: 100%;
    height: auto !important;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal.modal-visible {
    display: flex;
    animation: modalFadeIn 0.4s ease forwards;
}

.modal.modal-hiding {
    animation: modalFadeOut 0.4s ease forwards;
}

.modal-content {
    background-color: #1a1a1a;
    color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 0 20px rgba(200, 16, 46, 0.3);
    position: relative;
}

.modal.modal-visible .modal-content {
    animation: modalContentSlideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.modal.modal-hiding .modal-content {
    animation: modalContentSlideOut 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}

.modal-content h2 {
    color: var(--primary-color);
    margin-top: 10px;
}

.modal-content div {
    margin-bottom: 10px;
}

.modal-content label {
    margin-left: 10px;
}

.modal-content button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

/* Toast Notification Styles */
@keyframes toastSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    
    /* Initiale Position außerhalb des Bildschirms */
    transform: translateX(100%);
    opacity: 0;
    
    /* Animation beim Erscheinen */
    animation: toastSlideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.toast-notification.toast-out {
    animation: toastSlideOut 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}

.toast-success {
    background-color: #4CAF50;
}

.toast-error {
    background-color: #f44336;
}

.toast-notification .toast-icon {
    margin-right: 10px;
    font-size: 1.2em;
}

.toast-notification .toast-message {
    flex-grow: 1;
}

.toast-notification .toast-close,
.modal-content .toast-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
    margin-left: 10px;
}

/* Spezifische Positionierung für Modal-Schließen-Button */
.modal-content .toast-close {
    position: absolute;
    top: 10px;
    right: 10px;
    margin-left: 0; /* Überschreibe den margin-left von toast-notification */
}

/* Hover-Effekt für beide Schließen-Buttons */
.toast-notification .toast-close:hover,
.modal-content .toast-close:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.toast-out {
    opacity: 0;
    transform: translateX(100%);
}

.toast-hide {
    opacity: 0;
}

/* Age Verification Modal */
#age-verification-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100% !important;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

#age-verification-modal .modal-content {
    background-color: #1a1a1a;
    color: #fff;
    margin: auto;
    padding: 30px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 0 20px rgba(200, 16, 46, 0.3);
    text-align: center;
    position: relative;
}

#age-verification-modal .modal-header {
    margin-bottom: 20px;
}

#age-verification-modal .modal-logo {
    width: 250px;
}

#age-verification-modal h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

#age-verification-modal p {
    margin-bottom: 30px;
}

#age-verification-modal .modal-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#age-verification-modal button {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

#age-verification-modal button:hover {
    background-color: #45a049;
}

#age-verification-modal a {
    background-color: #f44336;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

#age-verification-modal a:hover {
    background-color: #d32f2f;
}

.age-verification-hidden {
    display: none !important;
}

@media (max-width: 768px) {
    #age-verification-modal .modal-content {
        width: 90%;
        padding: 20px;
    }
}
/* About Section Styles */
.about-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #000, #1c0709);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-color), transparent);
    opacity: 0.5;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-content {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(200, 16, 46, 0.1) 0%, transparent 60%);
    z-index: -1;
    animation: pulseGlow 10s infinite linear;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-content p::first-letter {
    font-size: 2.2rem;
    color: var(--gold-color);
    font-weight: bold;
    margin-right: 5px;
    text-shadow: 0 0 8px var(--gold-color);
}

@keyframes pulseGlow {
    0% {
        opacity: 0.3;
        transform: rotate(0deg);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.3;
        transform: rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section {
        padding: 4rem 1.5rem;
    }
    
    .about-content {
        padding: 1.5rem;
    }
    
    .about-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .about-content p::first-letter {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 3rem 1rem;
    }
    
    .about-content {
        padding: 1.2rem;
    }
    
    .about-content p {
        font-size: 0.95rem;
    }
    
    .about-content p::first-letter {
        font-size: 1.6rem;
    }
}

/* Erweiterter Footer-Style */
.main-footer {
    background: linear-gradient(to bottom, #0a0010, #000);
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    padding: 3rem 2rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo i {
    color: var(--gold-color);
    filter: drop-shadow(0 0 5px rgba(228, 204, 127, 0.5));
    animation: crownGlow 2s infinite alternate;
}

.footer-logo span {
    background: linear-gradient(
        to right,
        var(--gold-color),
        var(--primary-color),
        var(--gold-color)
    );
    background-size: 400% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientSlide 8s ease infinite;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    color: var(--text-light);
}

.contact-item i {
    width: 20px;
    text-align: center;
    color: var(--gold-color);
    filter: drop-shadow(0 0 3px var(--primary-color));
    transition: all 0.3s ease;
}

.contact-item:hover i {
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(200, 16, 46, 0.3);
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: flex-start;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-link:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--gold-color);
    transition: all 0.3s ease;
}

.footer-link:hover:before {
    color: var(--primary-color);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.visitor-counter {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.visitor-counter:before {
    content: '\f500';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--gold-color);
}

/* Responsive Anpassungen */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-logo h3 {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ===================================================================
   EXKLUSIV-REFINEMENTS  -  Logo-Relaunch (Gold . Rubin . Schwarz)
   Am Ende ergaenzt, damit der Cascade die Aufwertung sauber ueberlagert.
   =================================================================== */

/* --- Display-Typografie: edle Serife fuer Ueberschriften & Wortmarke --- */
.logo span,
.section-title,
.neon-text,
.neon-text-small {
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    letter-spacing: 0.5px;
}

/* --- Navigation: Logo-Emblem statt Kronen-Icon --- */
.logo { gap: 0.85rem; }
.logo .logo-emblem {
    height: 54px;
    width: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-gold);
    box-shadow: 0 0 16px rgba(212,175,55,0.35), inset 0 0 10px rgba(0,0,0,0.65);
    flex-shrink: 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.logo:hover .logo-emblem {
    transform: rotate(4deg) scale(1.04);
    box-shadow: 0 0 22px rgba(212,175,55,0.55);
}
.logo span { font-weight: 700; letter-spacing: 1px; }

/* feinere Goldkante an der Navigationsleiste */
.main-nav {
    border-bottom: 2px solid var(--border-gold);
    box-shadow: 0 4px 26px rgba(0,0,0,0.6);
}

/* --- Section-Titel: Gold-Verlauf + dezente Zierlinie --- */
.section-title {
    position: relative;
    background: var(--gradient-gold);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    padding-bottom: 1.3rem;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 130px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-color) 28%, var(--primary-color) 50%, var(--gold-color) 72%, transparent);
}

/* --- Flaechen-Verlaeufe: warmes Weinrot-Schwarz statt Purple --- */
.girls-section,
.events-section,
.testimonials-section { background: linear-gradient(to bottom, #0a0608, #1c0709); }

/* --- Karten: goldene Haarlinie + sanfte Tiefe --- */
.girl-card,
.event-card { border: 1px solid var(--border-gold); }

/* --- Haupt-CTAs: goldener Verlauf auf Tiefschwarz (Signatur-Look) --- */
.event-booking,
.subscribe-btn,
.submit-btn,
.book-event-btn {
    background: var(--gradient-gold) !important;
    background-size: 180% auto !important;
    color: #1a0a02 !important;
    font-weight: 700;
    letter-spacing: 0.4px;
    border: none !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.4) !important;
    transition: all 0.35s ease;
}
.event-booking:hover,
.subscribe-btn:hover,
.submit-btn:hover,
.book-event-btn:hover {
    background-position: right center !important;
    filter: brightness(1.06);
    color: #1a0a02 !important;
    box-shadow: 0 10px 28px rgba(200,16,46,0.45), 0 0 0 1px var(--gold-bright) !important;
    transform: translateY(-2px);
}

/* --- Filter-Pills: aktiver Zustand in Gold --- */
.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-gold);
    color: #1a0a02;
    border-color: var(--gold-color);
}

/* --- Profil-Link auf den Karten: goldener Hover --- */
.site-link { color: var(--gold-color); }
.site-link:hover { color: var(--gold-bright); text-shadow: 0 0 8px rgba(212,175,55,0.5); }

/* --- Hero: dezenter rubinroter Lichtkegel + goldene Bodenkante --- */
.hero { border-bottom: 1px solid var(--border-gold); }
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(58% 48% at 50% 42%, rgba(200,16,46,0.20) 0%, transparent 70%);
}

/* Hero-Untertitel: edle Sperrung in Gold */
.hero-subtitle { color: var(--gold-color); opacity: 0.92; }

/* Footer-Wortmarke im Logo-Stil */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Playfair Display', Georgia, serif;
}
.footer-emblem {
    height: 46px; width: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-gold);
    box-shadow: 0 0 12px rgba(212,175,55,0.3);
}
.footer-tagline { color: var(--gold-color); letter-spacing: 2px; }

/* ===== Home-Hero: reine Grafik (Desktop/Mobil), kein Overlay ===== */
.home-hero{position:relative;width:100%;line-height:0;background:#0a0608;
    border-bottom:1px solid var(--border-gold);padding-top:88px /* Hoehe fixe Nav, kein Overlap */}
.home-hero .home-hero-img{display:block;width:100%;height:auto;margin:0 auto}
/* Bildschirm-unsichtbar, aber fuer Screenreader/SEO lesbar */
.visually-hidden{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;
    overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* ===== Telefon-Direktanruf im Header (responsive) ===== */
.nav-call{
    display:inline-flex; align-items:center; gap:.55rem;
    padding:.5rem 1rem; border-radius:999px;
    background:var(--gradient-gold); color:#2a1d05;
    font-weight:700; font-size:1rem; line-height:1; text-decoration:none;
    white-space:nowrap; border:1px solid var(--gold-bright);
    box-shadow:0 2px 10px rgba(212,175,55,.35);
    transition:transform .2s ease, box-shadow .2s ease;
}
.nav-call:hover{ transform:translateY(-1px); box-shadow:0 4px 16px rgba(212,175,55,.55); color:#2a1d05; }
.nav-call i{ font-size:1.05rem; }
/* Tablet/Mobil: nur Icon als runder Button */
@media (max-width: 900px){
    .nav-call-num{ display:none; }
    .nav-call{ width:44px; height:44px; padding:0; justify-content:center; border-radius:50%; }
}
/* Beim Hamburger-Menue: Logo links, Anruf + Menue rechts gruppiert */
@media (max-width: 768px){
    .logo{ order:1; }
    .nav-call{ order:2; margin-left:auto; margin-right:.75rem; }
    .mobile-menu-btn{ order:3; }
}

/* ===================================================================
   HOME-HERO  ·  SEO-Textebene + Crossfade zur Original-Grafik
   (5s Text -> 2s Grafik, 8s-Loop; respektiert reduced-motion)
   =================================================================== */
.home-hero{ position:relative; width:100%; background:#0a0608; overflow:hidden; line-height:normal; }

/* Foto-Ebene (Original-Grafik) – liegt hinter der Textebene */
.home-hero .hero-photo{ position:absolute; inset:0; z-index:1; display:block; }
.home-hero .hero-photo img{ width:100%; height:100%; object-fit:contain; object-position:center; background:#0a0608; display:block; }

/* SEO-/Textebene – blendet zyklisch aus, gibt die Grafik frei */
.home-hero .hero-seo{ position:relative; z-index:2;
  padding:clamp(2rem,4vw,3.4rem) 1.2rem clamp(2.2rem,4vw,3rem);
  background:
    radial-gradient(60% 60% at 30% 42%, rgba(200,16,46,.28), transparent 70%),
    radial-gradient(70% 80% at 70% 60%, rgba(110,12,26,.35), transparent 75%),
    linear-gradient(160deg,#150a0c 0%, #0a0608 55%);
  animation:heroCrossfade 8s ease-in-out infinite;
}
@keyframes heroCrossfade{
  0%    { opacity:1; pointer-events:auto; }
  62.5% { opacity:1; }              /* 5.0s Text sichtbar */
  68.75%{ opacity:0; pointer-events:none; }  /* 0.5s ausblenden */
  93.75%{ opacity:0; }              /* 2.0s Grafik sichtbar */
  100%  { opacity:1; pointer-events:auto; }  /* 0.5s einblenden */
}
@media (prefers-reduced-motion:reduce){
  .home-hero .hero-seo{ animation:none; opacity:1; }
}

.home-hero .hero-inner{ max-width:1180px; margin:0 auto; }

/* Top-Strip */
.home-hero .hero-eyebrow{ text-align:center; color:#d4af37; letter-spacing:.3em;
  font-size:clamp(.6rem,1.5vw,.84rem); font-weight:600; text-transform:uppercase;
  font-family:"Cinzel",serif; margin-bottom:clamp(1rem,2.4vw,1.5rem);
  display:flex; gap:.85em; align-items:center; justify-content:center; }
.home-hero .hero-eyebrow .dia{ color:#e01e37; font-size:.7em; }
.home-hero .hero-eyebrow .ln{ flex:0 0 auto; width:min(60px,8vw); height:1px; background:linear-gradient(90deg,transparent,#d4af37); }
.home-hero .hero-eyebrow .ln.r{ background:linear-gradient(90deg,#d4af37,transparent); }

.home-hero .hero-grid{ display:flex; align-items:center; gap:clamp(1.5rem,4vw,3.5rem); }

/* Medaillon – sauber rund + Glühen (nutzt vorhandenes logo-mark.png) */
.home-hero .hero-medallion{ flex:0 0 auto; width:clamp(168px,23vw,310px); aspect-ratio:1;
  border-radius:50%; overflow:hidden;
  box-shadow:0 0 36px rgba(200,16,46,.42), 0 0 16px rgba(212,175,55,.35); }
.home-hero .hero-medallion img{ width:100%; height:100%; object-fit:cover; display:block; }

/* Copy */
.home-hero .hero-copy{ flex:1 1 auto; min-width:0; text-align:center; }

/* Titel – kein Überlappen mehr (Zeilenhöhe + Abstand) */
.home-hero .hero-title{ margin:0; font-weight:400; }
.home-hero .hero-title .script{ display:block; font-family:"Great Vibes",cursive; font-weight:400;
  font-size:clamp(3rem,7.6vw,6.2rem); line-height:1.12; margin:0; padding:0 .08em;
  background:linear-gradient(180deg,#fff6d8 0%,#f7e7a8 25%,#d4af37 55%,#b8901f 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  filter:drop-shadow(0 2px 10px rgba(212,175,55,.3)); }
.home-hero .hero-title .caps{ display:block; font-family:"Cinzel",serif; font-weight:700;
  font-size:clamp(1.4rem,4.3vw,2.9rem); letter-spacing:clamp(.12em,.85vw,.36em);
  line-height:1; margin-top:.06em;
  background:linear-gradient(180deg,#f7e7a8,#d4af37 60%,#b8901f);
  -webkit-background-clip:text; background-clip:text; color:transparent; }

/* Zierlinie mit Raute */
.home-hero .ornament{ display:flex; align-items:center; gap:.7rem; margin:clamp(.7rem,1.6vw,1.05rem) 0; justify-content:center; }
.home-hero .ornament .line{ height:1px; width:min(150px,24vw); background:linear-gradient(90deg,transparent,#d4af37,transparent); }
.home-hero .ornament .dia{ width:11px; height:11px; background:#e01e37; transform:rotate(45deg); box-shadow:0 0 10px rgba(224,30,55,.8); }

.home-hero .hero-houses{ font-family:"Cinzel",serif; font-weight:600; letter-spacing:.14em;
  font-size:clamp(1.05rem,3vw,1.9rem); color:#f4ecd6; margin:0; }
.home-hero .hero-houses b{ color:#e01e37; font-weight:700; }

/* Banner */
.home-hero .hero-banner{ display:inline-flex; align-items:center; gap:clamp(.8rem,2vw,1.6rem);
  margin:clamp(1.1rem,2.4vw,1.6rem) 0; padding:.55rem clamp(1rem,2.4vw,1.7rem);
  background:linear-gradient(90deg, rgba(110,12,26,.15), rgba(200,16,46,.3), rgba(110,12,26,.15));
  border:1px solid rgba(212,175,55,.5); border-radius:8px; }
.home-hero .hero-banner span{ font-family:"Cinzel",serif; font-weight:600; letter-spacing:.15em;
  font-size:clamp(.82rem,2.1vw,1.3rem); color:#f7e7a8; text-transform:uppercase; }
.home-hero .hero-banner .crest{ width:clamp(34px,5vw,46px); height:clamp(34px,5vw,46px); border-radius:50%;
  display:grid; place-items:center; background:radial-gradient(circle at 50% 35%,#2a0d12,#0a0608);
  border:2px solid #d4af37; color:#f7e7a8; font-weight:700; font-size:clamp(1rem,2.6vw,1.5rem);
  box-shadow:0 0 14px rgba(212,175,55,.5); position:relative; }
.home-hero .hero-banner .crest::before{ content:"\f521"; font-family:"Font Awesome 6 Free"; font-weight:900;
  position:absolute; top:-.72em; font-size:.5em; color:#d4af37; }

/* USP-Badges */
.home-hero .hero-usps{ list-style:none; display:flex; flex-wrap:wrap; gap:clamp(1rem,2.4vw,2rem);
  margin:clamp(1.1rem,2.4vw,1.5rem) 0 0; padding:0; justify-content:center; }
.home-hero .hero-usps li{ display:flex; align-items:center; gap:.7rem; }
.home-hero .hero-usps .ico{ width:44px; height:44px; flex:0 0 auto; border-radius:50%; display:grid; place-items:center;
  border:1.5px solid rgba(212,175,55,.6); color:#d4af37; font-size:1.05rem;
  box-shadow:0 0 12px rgba(212,175,55,.18) inset; }
.home-hero .hero-usps .txt{ font-family:"Cinzel",serif; font-size:clamp(.72rem,1.6vw,.9rem);
  letter-spacing:.05em; text-transform:uppercase; color:#e6dcc2; line-height:1.25; text-align:left; }

/* Telefon-CTA */
.home-hero .hero-cta{ display:inline-flex; align-items:center; gap:1rem; margin-top:clamp(1.4rem,3vw,2rem);
  padding:.7rem 1.4rem .7rem .8rem; text-decoration:none; border-radius:999px;
  border:1.5px solid #d4af37; background:linear-gradient(90deg, rgba(20,10,8,.6), rgba(40,14,18,.6));
  box-shadow:0 0 22px rgba(212,175,55,.22); transition:transform .2s ease, box-shadow .2s ease; }
.home-hero .hero-cta:hover{ transform:translateY(-2px); box-shadow:0 0 30px rgba(212,175,55,.4); }
.home-hero .hero-cta .ph{ width:46px; height:46px; flex:0 0 auto; border-radius:50%; display:grid; place-items:center;
  background:radial-gradient(circle at 50% 35%,#2a0d12,#0a0608); border:2px solid #d4af37;
  color:#f7e7a8; font-size:1.2rem; box-shadow:0 0 16px rgba(224,30,55,.5); animation:heroPhonePulse 2.4s ease-in-out infinite; }
.home-hero .hero-cta .num{ font-family:"Cinzel",serif; font-weight:700; letter-spacing:.04em;
  font-size:clamp(1.1rem,3vw,1.8rem);
  background:linear-gradient(180deg,#f7e7a8,#d4af37); -webkit-background-clip:text; background-clip:text; color:transparent; }
.home-hero .hero-cta .sub{ display:block; font-size:.6rem; letter-spacing:.24em; color:#b9ad90; text-transform:uppercase; font-weight:500; margin-top:2px; font-family:"Cinzel",serif; }
@keyframes heroPhonePulse{ 0%,100%{ box-shadow:0 0 16px rgba(224,30,55,.45);} 50%{ box-shadow:0 0 26px rgba(224,30,55,.85);} }
@media (prefers-reduced-motion:reduce){ .home-hero .hero-cta .ph{ animation:none; } }

/* Mobil: gestapelt wie die Hochformat-Grafik */
@media (max-width:820px){
  .home-hero .hero-grid{ flex-direction:column; }
}
@media (max-width:520px){
  .home-hero .hero-usps li{ flex:0 0 calc(50% - .7rem); justify-content:center; }
  .home-hero .hero-eyebrow{ letter-spacing:.2em; }
}

/* ============================================================
 * Redaktioneller Textblock (Seitentexte aus dem Admin)
 * ============================================================ */
.page-copy {
    padding: 3rem 1.5rem 4rem;
    background: linear-gradient(180deg, rgba(10, 6, 8, 0) 0%, rgba(10, 6, 8, 0.55) 100%);
}

.page-copy-inner {
    max-width: 74ch;
    margin: 0 auto;
}

.page-copy h2 {
    margin: 0 0 1.25rem;
    font-family: 'Cinzel', Georgia, serif;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    letter-spacing: 0.5px;
    color: #d4af37;
}

.page-copy p {
    margin: 0 0 1.1rem;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
}

.page-copy p:last-child {
    margin-bottom: 0;
}

.page-copy a {
    color: #f7e7a8;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 600px) {
    .page-copy { padding: 2rem 1.1rem 3rem; }
}

/* ============================================================
 * Startseite: News-Sektion (ersetzt die frueheren Events)
 * ============================================================ */
.home-news-section { padding: 4rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.home-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.home-news-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.home-news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-luxe);
    border-color: var(--gold-color);
}
.home-news-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #140d10; }
.home-news-media img { width: 100%; height: 100%; object-fit: cover; }
.home-news-body { padding: 1.1rem 1.2rem 1.3rem; }
.home-news-cat { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.home-news-title {
    margin: 0.4rem 0 0.5rem;
    font-size: 1.1rem;
    color: var(--gold-bright);
    font-family: 'Cinzel', Georgia, serif;
    line-height: 1.35;
}
.home-news-excerpt {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-news-more { text-align: center; margin-top: 2.5rem; }
.home-news-empty { text-align: center; color: var(--text-muted); margin-top: 2rem; }
