/* 
 * Laufhaus Erospark Karlsruhe - Modernes Design
 * Komplette CSS-Datei mit allen Styles
 */

/* Root Variables */
:root {
    --primary-color: #ff0000;
    --secondary-color: #9e0000;
    --background-dark: #0a0a0a;
    --background-darker: #050505;
    --background-medium: #161616;
    --background-gradient: linear-gradient(135deg, #0a0a0a 0%, #1a0000 100%);
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-dim: rgba(255, 255, 255, 0.5);
    --border-light: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(255, 0, 0, 0.3);
    --card-bg: #161616;
    --card-highlight: #242424;
    --neon-glow: 0 0 7px rgba(255, 255, 255, 0.7), 0 0 10px rgba(255, 255, 255, 0.5), 
                 0 0 21px rgba(255, 255, 255, 0.3), 0 0 42px rgba(255, 0, 0, 0.8);
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.5);
    --shadow-strong: 0 8px 30px rgba(0, 0, 0, 0.7);
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-medium: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --section-spacing: 6rem;
}

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

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: var(--background-gradient);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.page-loaded {
    opacity: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

button, .btn {
    cursor: pointer;
    font-family: inherit;
}

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

.section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-accent);
    transition: var(--transition-medium);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, var(--primary-color), #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 5s linear infinite;
}

.logo-text span {
    display: block;
    font-size: 1.2rem;
    text-align: right;
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
}

.logo i {
    font-size: 1.8rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.4));
}

@keyframes textGradient {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

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

.nav-link {
    position: relative;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link i {
    color: var(--primary-color);
    transition: var(--transition-fast);
    font-size: 0.9em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-medium);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover i,
.nav-link.active i {
    transform: translateY(-2px);
}

/* Submenu Styles */
.nav-links .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 5px;
    box-shadow: var(--shadow-soft);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-medium);
    padding: 0.75rem 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: block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: var(--text-muted);
}

.submenu .nav-link:hover {
    background: rgba(255, 0, 0, 0.1);
}

.submenu .nav-link::after {
    display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-medium);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: 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-color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 95vh;
    min-height: 700px;
    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.8) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50'%3E%3Cpath d='M0,0 L50,50 M50,0 L0,50' stroke='%23ff0000' stroke-width='0.5' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 999;
    text-align: center;
    padding: 0 2rem;
    max-width: 800px;
    margin-bottom: 6rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: var(--neon-glow);
    letter-spacing: 2px;
    animation: pulsate 2s infinite alternate;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-text {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.button-accent {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-medium);
    z-index: 1;
    cursor: pointer;
}

.button-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-medium);
    z-index: -1;
}

.button-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.button-accent:hover::before {
    left: 100%;
    transition: 0.8s;
}

.pulse-animation {
    animation: button-pulse 2s infinite;
}

@keyframes button-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

@keyframes pulsate {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px var(--primary-color), 0 0 70px var(--primary-color);
    }
    to {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px var(--primary-color), 0 0 35px var(--primary-color);
    }
}

/* Info Card Grid - Ambiente Styles */
.ambiente-info-grid {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    z-index: 4;
}

.info-grid {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    z-index: 4;
}

.info-card,
.ambiente-info-card {
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border-accent);
    border-radius: 5px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-medium);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.info-card:hover,
.ambiente-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

.info-card-title,
.ambiente-info-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-card-text,
.ambiente-info-text {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 400;
}

/* Girls Section */
.girls-section {
    background: linear-gradient(to bottom, var(--background-dark), #1a0000);
    padding: var(--section-spacing) 2rem;
}

.girls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.girl-card {
    position: relative;
    background-color: var(--card-bg);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}

.girl-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--border-accent);
}

.girl-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.girl-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.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-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transition: var(--transition-medium);
    opacity: 0;
}

.girl-card:hover .girl-image::after {
    opacity: 1;
}

.girl-info {
    padding: 1.5rem;
    background-color: var(--card-bg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.girl-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #ffffff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.girl-details {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.detail-item i {
    color: var(--primary-color);
    min-width: 20px;
    text-align: center;
}

.girl-link {
    margin-top: auto;
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    border-radius: 3px;
    transition: var(--transition-medium);
    text-decoration: none;
}

.girl-link:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.view-all-btn {
    display: block;
    margin: 4rem auto 0;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    background-size: 200% auto;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    transition: all 0.5s ease;
    text-decoration: none;
    max-width: 260px;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.view-all-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.6s;
}

.view-all-btn:hover {
    background-position: right center;
    color: var(--text-light);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.4);
}

.view-all-btn:hover::after {
    left: 100%;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(to bottom, #1a0000, var(--background-dark));
    padding: var(--section-spacing) 2rem;
    position: relative;
    overflow: hidden;
}

.gallery-container {
    position: relative;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.gallery-slider {
    position: relative;
    height: 70vh;
    min-height: 450px;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

.gallery-slide {
    position: absolute;
    width: 70%;
    max-width: 900px;
    height: 100%;
    transition: var(--transition-slow);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    border: 1px solid var(--border-light);
    opacity: 0;
    transform: translateZ(-100px) translateX(100px) scale(0.8);
    pointer-events: none;
}

.gallery-slide.prev {
    opacity: 0.6;
    transform: translateZ(-50px) translateX(-30%) rotateY(10deg) scale(0.9);
    z-index: 5;
    pointer-events: none;
}

.gallery-slide.active {
    opacity: 1;
    transform: translateZ(0) translateX(0) rotateY(0) scale(1);
    z-index: 10;
    border: 1px solid var(--border-accent);
    box-shadow: var(--shadow-strong);
    pointer-events: auto;
}

.gallery-slide.next {
    opacity: 0.6;
    transform: translateZ(-50px) translateX(30%) rotateY(-10deg) scale(0.9);
    z-index: 5;
    pointer-events: none;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--text-light);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-medium);
}

.gallery-slide.active .slide-overlay {
    opacity: 1;
    transform: translateY(0);
}

.slide-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.slide-overlay p {
    font-size: 1rem;
    color: var(--text-muted);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border-accent);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition-medium);
}

.gallery-nav:hover {
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 1rem;
}

.gallery-next {
    right: 1rem;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 5px;
}

.lightbox-caption {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--text-light);
    padding: 1rem;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border-accent);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-medium);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-nav.prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-nav.next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* News Section */
.news-section {
    background: linear-gradient(135deg, var(--background-dark) 0%, #1a0000 100%);
    padding: var(--section-spacing) 2rem;
    position: relative;
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0,0 L60,60 M60,0 L0,60' stroke='%23ff0000' stroke-width='0.5' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.news-section .section-title::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.news-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.news-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 0, 0, 0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    pointer-events: none;
}

.news-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 25px rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.3);
}

.news-card:hover::after {
    opacity: 1;
}

.news-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0.3) 0%,
                transparent 30%,
                transparent 60%,
                rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.news-card:hover .news-image::before {
    opacity: 1;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-card:hover .news-image img {
    transform: scale(1.08);
}

.news-category {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.news-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    padding: 6px 16px;
}

.news-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    background-color: var(--card-bg);
}

.news-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.news-title a {
    background: linear-gradient(90deg, var(--text-light), var(--primary-color));
    background-size: 0% 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.news-title a:hover {
    color: var(--primary-color);
    background-size: 100% 2px;
}

.news-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border-light);
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-date i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.news-card:hover .news-date i {
    transform: translateY(-2px);
}

.news-link {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.news-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.6s;
    z-index: -1;
}

.news-link:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
    transform: translateY(-3px);
}

.news-link:hover::before {
    left: 100%;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--background-dark) 0%, #1a0000 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-content {
    position: relative;
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: var(--shadow-strong);
    border: 1px solid var(--border-accent);
}

.newsletter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50'%3E%3Cpath d='M0,0 L50,50 M50,0 L0,50' stroke='%23ff0000' stroke-width='0.5' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.2;
    z-index: 1;
}

.newsletter-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.newsletter-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.newsletter-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.newsletter-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.newsletter-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-light);
}

.newsletter-features .feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.newsletter-features .feature-item:hover i {
    transform: scale(1.1) rotate(360deg);
}

.newsletter-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 0 auto;
    width: max-content;
}

.newsletter-cta i {
    font-size: 1.2rem;
}

.newsletter-cta:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.newsletter-privacy {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.newsletter-privacy i {
    color: var(--primary-color);
}

/* Events Section */
.events-section {
    background: linear-gradient(to bottom, var(--background-dark), #1a0000);
    padding: var(--section-spacing) 2rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.event-card {
    background-color: var(--card-bg);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    border-left: 5px solid var(--primary-color);
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.event-content {
    padding: 2rem;
}

.event-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.event-description {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.event-details {
    margin-top: 2rem;
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
}

.event-time,
.event-days {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-time i,
.event-days i {
    color: var(--primary-color);
}

.event-price {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: right;
    color: var(--text-light);
}

.event-price i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: 5px;
    transition: var(--transition-medium);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition-medium);
}

.feature-item:hover i {
    transform: scale(1.2);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

/* Contact Section */
.contact-section {
    padding: var(--section-spacing) 2rem;
    background: linear-gradient(to bottom, #1a0000, var(--background-dark));
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
    align-items: start;
}

.contact-info {
    background-color: var(--card-bg);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.info-block {
    padding: 2rem;
    transition: var(--transition-medium);
    border-left: 3px solid transparent;
}

.info-block:hover {
    background-color: rgba(255, 0, 0, 0.05);
    border-left-color: var(--primary-color);
}

.info-block h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-block h3 i {
    font-size: 1.2rem;
}

.info-block p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.contact-map {
    height: 100%;
    min-height: 400px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: var(--transition-medium);
    position: relative;
}

.contact-map:hover {
    box-shadow: var(--shadow-strong);
    border-color: var(--border-accent);
}

#map {
    height: 100%;
    width: 100%;
    filter: grayscale(0.7) brightness(0.8);
    transition: var(--transition-medium);
}

.contact-map:hover #map {
    filter: grayscale(0) brightness(1);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    box-shadow: var(--shadow-soft);
    z-index: 10;
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-accent);
}

.address-info h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.navigation-links {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.nav-button {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--text-light);
    text-decoration: none;
    padding: 1rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-medium);
    border: 1px solid var(--border-light);
}

.nav-button:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

/* Map Marker Style */
.heart-marker {
    display: flex;
    align-items: center;
    justify-content: center;
}

.heart-marker i {
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: heartBeat 1.5s infinite;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.2); }
    28% { transform: scale(1); }
    42% { transform: scale(1.2); }
    70% { transform: scale(1); }
}

/* Footer */
.main-footer {
    background-color: var(--background-darker);
    padding: 3rem 2rem;
    border-top: 1px solid var(--border-accent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.footer-info h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.footer-logo-text span {
    display: block;
    font-size: 1rem;
    color: var(--primary-color);
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-details span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-details i {
    color: var(--primary-color);
    font-size: 1rem;
}

.footer-links h3 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    position: relative;
    display: inline-block;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition-medium);
}

.footer-link:hover {
    color: var(--text-light);
}

.footer-link:hover::after {
    width: 100%;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 0.75rem 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
    position: relative;
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.9);
}

/* Toast Notification System - Erweitert */
.toast-notification {
    position: fixed;
    top: calc(20px + (var(--toast-index, 0) * 70px));
    right: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-accent);
    border-radius: 5px;
    padding: 1rem;
    box-shadow: var(--shadow-strong);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
    max-width: 400px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.toast-notification.visible {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    flex-shrink: 0;
    font-size: 1.2rem;
}

.toast-success .toast-icon {
    color: #10B981;
}

.toast-error .toast-icon {
    color: var(--primary-color);
}

.toast-info .toast-icon {
    color: #3B82F6;
}

.toast-message {
    flex: 1;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 3px;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.toast-close:hover {
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Verbesserte Modal-Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.modal-visible {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--card-bg);
    border: 1px solid var(--border-accent);
    border-radius: 10px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.modal-visible .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition-fast);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--primary-color);
    background-color: rgba(255, 0, 0, 0.1);
}

.modal-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    padding-right: 3rem; /* Platz für Close-Button */
}

/* Cookie-Einstellungen Modal */
.cookie-option {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 5px;
    transition: var(--transition-fast);
    background-color: rgba(255, 255, 255, 0.02);
}

.cookie-option:hover {
    border-color: var(--border-accent);
    background-color: rgba(255, 0, 0, 0.05);
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-option p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    padding-left: 2.25rem; /* Einrückung für bessere Lesbarkeit */
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.modal-button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    min-width: 100px;
}

.modal-button.primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.modal-button.primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.modal-button.secondary {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-light);
}

.modal-button.secondary:hover {
    color: var(--text-light);
    border-color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Age Verification Modal */
.age-verification-modal {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.age-verification-modal .modal-content {
    max-width: 600px;
    text-align: center;
    background: linear-gradient(135deg, var(--background-dark) 0%, #1a0000 100%);
    border: 2px solid var(--border-accent);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.logo-container img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.age-warning {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

#modal-enter-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#modal-enter-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

#modal-leave-btn {
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.75rem;
    transition: var(--transition-fast);
    border-radius: 3px;
}

#modal-leave-btn:hover {
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Cookie-Banner Verbesserungen */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    z-index: 1000;
    border-top: 1px solid var(--border-accent);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    transform: translateY(100%);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner[style*="flex"] {
    transform: translateY(0);
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-banner button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-medium);
    white-space: nowrap;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.cookie-accept:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.cookie-necessary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-light);
}

.cookie-necessary:hover {
    border-color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.05);
}

.cookie-settings {
    background-color: transparent;
    color: var(--text-muted);
    text-decoration: underline;
    border: none;
    padding: 0.8rem 1rem;
}

.cookie-settings:hover {
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--text-light);
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-medium);
    z-index: 900;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    background-color: var(--primary-color);
}

/* Animations */
.section-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.fade-in-section {
    opacity: 1;
    transform: translateY(0);
}

.animate-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-element {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.animate-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Entrance Animations */
.entrance-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), 
                transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.entrance-animated {
    opacity: 1;
    transform: translateY(0);
}

.hero-title.entrance-animation {
    transform: translateY(50px) scale(0.95);
}

.hero-title.entrance-animated {
    transform: translateY(0) scale(1);
}

.button-accent.entrance-animation {
    transform: translateY(30px) scale(0.9);
}

.button-accent.entrance-animated {
    transform: translateY(0) scale(1);
}

.info-card.entrance-animation {
    transform: translateY(40px) scale(0.95);
    opacity: 0;
}

.info-card.entrance-animated {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Responsive Design */
@media (min-width: 1441px) {
    .info-grid {
        bottom: 4rem;
    }
    
    .ambiente-info-grid {
        bottom: 4rem;
    }
    
    .hero {
        min-height: 800px;
    }
    
    .hero-content {
        margin-bottom: 8rem;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 2.8rem;
    }
}

@media (max-width: 1440px) and (min-width: 1201px) {
    .hero-content {
        margin-bottom: 7rem;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-slide {
        width: 80%;
    }
    
    .info-grid {
        bottom: 2.5rem;
        gap: 1.2rem;
    }
    
    .ambiente-info-grid {
        bottom: 2.5rem;
        gap: 1.2rem;
    }
    
    .info-card-title,
    .ambiente-info-title {
        font-size: 1.6rem;
    }
    
    .info-card-text,
    .ambiente-info-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .hero {
        min-height: auto;
        padding: 8rem 0 2rem;
    }
    
    .hero-content {
        margin-bottom: 2rem;
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .girls-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .gallery-slider {
        height: 60vh;
    }
    
    .gallery-slide.prev,
    .gallery-slide.next {
        opacity: 0;
        pointer-events: none;
    }
    
    .info-grid {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        grid-template-columns: repeat(3, 1fr);
        margin: 2rem auto;
        padding: 0 2rem;
    }
    
    .ambiente-info-grid {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        grid-template-columns: repeat(2, 1fr);
        margin: 2rem auto;
        padding: 0 2rem;
    }
    
    .info-card-title,
    .ambiente-info-title {
        font-size: 1.5rem;
    }
    
    .info-card-text,
    .ambiente-info-text {
        font-size: 0.9rem;
    }
    
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .newsletter-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .newsletter-features .feature-item {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .newsletter-features .feature-item i {
        margin-bottom: 0;
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .hero {
        padding: 7rem 0 1rem;
    }
    
    .hero-content {
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 6rem 2rem 2rem;
        transition: var(--transition-medium);
        z-index: 900;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links > li {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-link {
        padding: 1.2rem 0;
        width: 100%;
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
    }
    
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin: 1.5rem auto;
    }
    
    .ambiente-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 1.5rem auto;
    }
    
    .info-card,
    .ambiente-info-card {
        padding: 1.2rem 1rem;
    }
    
    .info-card-title,
    .ambiente-info-title {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }
    
    .info-card-text,
    .ambiente-info-text {
        font-size: 0.8rem;
    }
    
    .modal-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .cookie-option {
        padding: 1.2rem;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .modal-button {
        width: 100%;
    }
    
    .toast-notification {
        top: 20px;
        right: 10px;
        left: 10px;
        min-width: auto;
        transform: translateY(-100px);
    }
    
    .toast-notification.visible {
        transform: translateY(0);
    }
    
    .toast-notification:nth-child(n+2) {
        top: calc(20px + (70px * var(--toast-index, 0)));
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
    .lightbox-caption {
    position: relative;
    bottom: 0px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 6rem 0 0;
    }
    
    .hero-content {
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-text {
        font-size: 1rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .button-accent {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .gallery-slider {
        height: 40vh;
    }
    
    .cookie-banner button {
        width: 100%;
    }
    
    #back-to-top {
        width: 40px;
        height: 40px;
        right: 20px;
        bottom: 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem auto 0.5rem;
    }
    
    .ambiente-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem auto 0.5rem;
    }
    
    .info-card,
    .ambiente-info-card {
        padding: 1.2rem;
        display: grid;
        grid-template-columns: auto 1fr;
        text-align: left;
        align-items: center;
        gap: 1rem;
    }
    
    .info-card-title,
    .ambiente-info-title {
        font-size: 1.4rem;
        margin-bottom: 0;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card:hover {
        transform: translateY(-10px) scale(1.01);
    }
    
    .age-verification-modal .modal-content {
        padding: 1.5rem;
    }
    
    .age-verification-modal h2 {
        font-size: 1.5rem;
    }
    
    .age-verification-modal .modal-actions {
        flex-direction: column;
    }
    
    .age-verification-modal #modal-enter-btn,
    .age-verification-modal #modal-leave-btn {
        width: 100%;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .info-card,
    .ambiente-info-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-height: 700px) and (min-width: 993px) {
    .info-grid {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 2rem auto 0;
    }
    
    .ambiente-info-grid {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 2rem auto 0;
    }
    
    .hero {
        height: auto;
        min-height: 600px;
        padding-bottom: 1rem;
    }
}

@media (max-height: 500px) and (min-width: 500px) {
    .hero {
        height: auto;
        padding: 5rem 0 1rem;
    }
    
    .info-grid {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 1rem auto 0;
    }
    
    .ambiente-info-grid {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 1rem auto 0;
    }
    
    .hero-content {
        padding-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-text {
        margin-bottom: 1rem;
    }
    
    .button-accent {
        padding: 0.5rem 1.5rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-primary { color: var(--primary-color); }
.text-light { color: var(--text-light); }
.text-muted { color: var(--text-muted); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.my-1 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-2 { margin-top: 1rem; margin-bottom: 1rem; }
.my-3 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-4 { margin-top: 2rem; margin-bottom: 2rem; }
.my-5 { margin-top: 3rem; margin-bottom: 3rem; }

.hidden { display: none !important; }
.no-scroll { overflow: hidden !important; }