/* Root Variables */
:root {
    --primary-color: #ff00ff;
    --secondary-color: #800080;
	--gold-color:#E4CC7F;
    --background-dark: #000000;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --gradient-dark: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.7));
    --neon-glow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px var(--primary-color),
                0 0 82px var(--primary-color), 0 0 92px var(--primary-color);
}

/* 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: 2rem;
    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(255, 0, 255, 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, #1a0020);
}

.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(255, 0, 255, 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,
        #E4CC7F,
        var(--primary-color),
        #E4CC7F,
        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, #1a0020, #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, #1a0020);
    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(255, 0, 255, 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, #1a0020, #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(255, 0, 255, 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: #E4CC7F;
    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 7px #fff,
                     0 0 10px #fff,
                     0 0 21px #fff,
                     0 0 42px var(--primary-color);
    }
    to {
        text-shadow: 0 0 7px #fff,
                     0 0 10px #fff,
                     0 0 21px #fff,
                     0 0 42px var(--primary-color),
                     0 0 82px var(--primary-color),
                     0 0 92px 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(255, 0, 255, 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(255, 0, 255, 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(255, 0, 255, 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(255, 0, 255, 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(255, 0, 255, 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, #1a0020);
    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(255, 0, 255, 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(255, 0, 255, 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;
    }
}