/**
 * CSS für die Home-Seite
 */

/* Hero-Section erweiterte Styles */
.hero {
    position: relative;
}

/* Spezielle Animation für den Hero-Bereich */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--dark-bg), transparent);
    z-index: 3;
}

/* Zusätzliche Styles für Gallery Section auf der Homepage */
#featured-girls .gallery-item {
    animation: fadeIn 0.6s ease forwards;
    animation-delay: calc(var(--animation-order) * 0.2s);
    opacity: 0;
}

#featured-girls .gallery-item:nth-child(1) { --animation-order: 1; }
#featured-girls .gallery-item:nth-child(2) { --animation-order: 2; }
#featured-girls .gallery-item:nth-child(3) { --animation-order: 3; }
#featured-girls .gallery-item:nth-child(4) { --animation-order: 4; }
#featured-girls .gallery-item:nth-child(5) { --animation-order: 5; }
#featured-girls .gallery-item:nth-child(6) { --animation-order: 6; }

/* Ambiente Teaser */
.ambiente-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.ambiente-text {
    flex: 1;
    min-width: 300px;
}

.ambiente-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent-color);
    overflow: hidden;
}

.ambiente-image::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    border: 1px solid var(--accent-color);
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

.ambiente-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ambiente-image:hover img {
    transform: scale(1.05);
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.event-card {
    background-color: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.6s ease forwards;
    animation-delay: calc(var(--animation-order) * 0.2s);
    opacity: 0;
}

.events-grid .event-card:nth-child(1) { --animation-order: 1; }
.events-grid .event-card:nth-child(2) { --animation-order: 2; }
.events-grid .event-card:nth-child(3) { --animation-order: 3; }

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-color);
}

.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-category {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.event-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-content h3 {
    margin-bottom: 10px;
    font-size: 22px;
    color: var(--accent-color);
}

.event-content p {
    margin-bottom: 15px;
    color: var(--silver-color);
    font-size: 15px;
}

.event-details {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    margin-top: auto;
}

.event-details span {
    margin-right: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--light-text);
}

.event-details span i {
    margin-right: 5px;
    color: var(--accent-color);
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    order: 1;
}

.about-text {
    flex: 1;
    min-width: 300px;
    order: 2;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-color);
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Call to Action */
.cta {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(139, 0, 0, 0.3), rgba(0, 0, 0, 0.8)), url('/assets/images/cta-bg.jpg') center/cover no-repeat fixed;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: 
        linear-gradient(45deg, rgba(212, 175, 55, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(212, 175, 55, 0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(212, 175, 55, 0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(212, 175, 55, 0.1) 75%);*/
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--silver-color);
}

.cta .btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-text);
    font-size: 18px;
    padding: 15px 50px;
}

.cta .btn:hover {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-image {
        order: 2;
    }
    
    .about-text {
        order: 1;
    }
    
    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .ambiente-content, .about-content {
        flex-direction: column;
    }
    
    .ambiente-text, .about-text {
        order: 2;
    }
    
    .ambiente-image, .about-image {
        order: 1;
    }
}
/* Video Hero-Section Styles */
.video-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Abdunkeln des Videos */
    z-index: 2;
}

.video-container video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/hero-bg.jpg') center/cover no-repeat;
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--silver-color);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease;
    animation-delay: 0.3s;
}

.hero-content .btn {
    animation: fadeInUp 1s ease;
    animation-delay: 0.6s;
}

/* Responsive Styles für das Video */
@media (max-width: 768px) {
    .video-hero {
        height: 80vh;
    }
	
	.video-container::after {
    background: rgba(0, 0, 0, 0.0); /* Abdunkeln des Videos */
}
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
}