/* 
 * FKK Point Bruchsal - Home Page Styles
 * Primary styles for the main homepage
 */

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 0 30px;
}

/* Background circles for hero section */
.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.circle-1 {
    width: 600px;
    height: 600px;
    background-color: var(--primary-red);
    top: -150px;
    left: -150px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background-color: var(--gold);
    bottom: -100px;
    right: -100px;
}

.circle-3 {
    width: 300px;
    height: 300px;
    background-color: var(--white);
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
}

/* Animated background circles */
.animated-bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    z-index: 1;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(10px, 10px) rotate(5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Hero content styles */
h1 {
    font-size: clamp(40px, 6vw, 60px);
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

h1 span {
    color: var(--primary-red);
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 40px;
    color: var(--light-gold);
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    margin: 0 10px 15px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, var(--secondary-red), var(--primary-red));
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--white);
}

.cta-button.secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
}

/* Scroll down indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    animation: bounce 2s infinite;
    z-index: 10;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-30px) translateX(-50%);
    }
    60% {
        transform: translateY(-15px) translateX(-50%);
    }
}

/* Fade in animation for hero content */
.fadeIn {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Events Section */
.events {
    background-color: var(--black);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background circles for events section */
.events::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: rgba(209, 10, 16, 0.1);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    z-index: 1;
}

.events::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
    z-index: 1;
}

/* Events grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Event Card */
.event-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.event-image {
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-card h3 {
    padding: 20px 20px 10px;
    color: var(--white);
    font-size: 1.3rem;
}

.event-card p {
    padding: 0 20px 15px;
    color: var(--light-gray);
    flex: 1;
}

.event-card span {
    padding: 0 20px 15px;
    display: block;
    color: var(--gold);
    font-size: 0.9rem;
}

.event-card .service-link {
    padding: 0 20px 20px;
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.event-card .service-link::after {
    content: ' →';
    transition: all 0.3s ease;
}

.event-card .service-link:hover {
    color: var(--gold);
}

.event-card .service-link:hover::after {
    margin-left: 5px;
}

/* Special Offers Section */
.special-offers {
    background-color: var(--light-gray);
    color: var(--black);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background circles for special offers */
.special-offers::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background-color: rgba(209, 10, 16, 0.05);
    border-radius: 50%;
    top: -175px;
    left: -175px;
    z-index: 1;
}

.special-offers::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    bottom: -125px;
    right: -125px;
    z-index: 1;
}

/* Offers grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Offer Card */
.offer-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.offer-card h3 {
    color: var(--primary-red);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.offer-card p {
    color: var(--gray);
    margin-bottom: 20px;
    flex: 1;
}

.offer-card span {
    display: block;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 15px;
}

/* About Section */
.about {
    background-color: var(--white);
    color: var(--black);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-decorative-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.about-circle-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(209, 10, 16, 0.05);
    top: -150px;
    right: -100px;
}

.about-circle-2 {
    width: 200px;
    height: 200px;
    background-color: rgba(212, 175, 55, 0.05);
    bottom: -100px;
    left: -50px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    flex: 1;
    min-width: 300px;
    color: var(--black);
    padding-right: 40px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.about-circle-container {
    width: 400px;
    height: 400px;
    position: relative;
}

.about-circle {
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 100%;
    height: 100%;
    background: url('../img/about-circle.webp') center/cover no-repeat;
}

.about-circle-accent {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--primary-red);
    border: 3px solid var(--gold);
    bottom: -30px;
    right: -30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-weight: 700;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray);
}

/* Girls Section */
.girls {
    background-color: var(--black);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background circles for girls section */
.girls::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    top: -200px;
    left: -200px;
    z-index: 1;
}

.girls::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(209, 10, 16, 0.1);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    z-index: 1;
}

/* Girls grid */
.girls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Girl Card */
.girl-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.girl-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.girl-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.girl-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.girl-card:hover .girl-image img {
    transform: scale(1.1);
}

.girl-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.girl-card:hover .girl-overlay {
    opacity: 1;
}

.girl-overlay h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.girl-overlay p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.girl-details {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
}

.girl-age, 
.girl-nationality {
    color: var(--gold);
    font-size: 0.9rem;
}

.girl-card .service-link {
    padding: 0 20px 20px;
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.girl-card .service-link::after {
    content: ' →';
    transition: all 0.3s ease;
}

.girl-card .service-link:hover {
    color: var(--gold);
}

.girl-card .service-link:hover::after {
    margin-left: 5px;
}

/* Additional Services Section */
.additional-services {
    background-color: var(--light-gray);
    color: var(--black);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background circles for additional services */
.additional-services::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background-color: rgba(209, 10, 16, 0.05);
    border-radius: 50%;
    top: -175px;
    right: -175px;
    z-index: 1;
}

.additional-services::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    bottom: -125px;
    left: -125px;
    z-index: 1;
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Service Card */
.service-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service-title {
    color: var(--primary-red);
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
}

.service-description {
    color: var(--gray);
    text-align: center;
    margin-bottom: 20px;
    flex: 1;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--black);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background circles for testimonials */
.testimonials::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: rgba(209, 10, 16, 0.1);
    border-radius: 50%;
    top: -200px;
    left: -200px;
    z-index: 1;
}

.testimonials::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    z-index: 1;
}

/* Testimonial Slider */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    color: var(--gold);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 20px;
}

.testimonial-author {
    text-align: right;
}

.author-name {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.author-date {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Location Preview Section */
.location-preview {
    background-color: var(--light-gray);
    color: var(--black);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background circles for location preview */
.location-preview::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background-color: rgba(209, 10, 16, 0.05);
    border-radius: 50%;
    top: -175px;
    left: -175px;
    z-index: 1;
}

.location-preview::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    bottom: -125px;
    right: -125px;
    z-index: 1;
}

/* Location Grid */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Location Item */
.location-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.location-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.location-item:hover img {
    transform: scale(1.1);
}

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.location-overlay h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0;
}

/* Loading state */
.loading {
    text-align: center;
    padding: 50px 0;
}

.loading::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(209, 10, 16, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-red);
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* No items message */
.no-items-message {
    text-align: center;
    padding: 30px 0;
    font-size: 1.1rem;
    color: var(--light-gray);
}

/* Error message */
.error-message {
    text-align: center;
    padding: 30px 0;
    font-size: 1.1rem;
    color: var(--primary-red);
}

/* Responsive styles */
@media (max-width: 1200px) {
    .events,
    .special-offers,
    .about,
    .girls,
    .additional-services,
    .testimonials,
    .location-preview {
        padding: 80px 0;
    }
    
    .about-circle-container {
        width: 350px;
        height: 350px;
    }
    
    .about-circle-accent {
        width: 130px;
        height: 130px;
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        padding: 0 40px;
    }
    
    h1 {
        font-size: 50px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .events,
    .special-offers,
    .about,
    .girls,
    .additional-services,
    .testimonials,
    .location-preview {
        padding: 60px 0;
    }
    
    .events-grid,
    .offers-grid,
    .girls-grid,
    .services-grid,
    .location-grid {
        grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .about-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .about-circle-container {
        width: 300px;
        height: 300px;
    }
    
    .about-circle-accent {
        width: 120px;
        height: 120px;
        font-size: 20px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }
    
    .scroll-down {
        bottom: 20px;
    }
    
    h1 {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
        display: block;
        width: 80%;
        margin: 0 auto 15px;
    }
    
    .events,
    .special-offers,
    .about,
    .girls,
    .additional-services,
    .testimonials,
    .location-preview {
        padding: 50px 0;
    }
    
    .events-grid,
    .offers-grid,
    .girls-grid,
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .girl-image {
        height: 300px;
    }
    
    .testimonial-card::before {
        font-size: 40px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 500px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .cta-button {
        width: 100%;
        font-size: 15px;
        padding: 10px 25px;
    }
    
    .about-circle-container {
        width: 250px;
        height: 250px;
    }
    
    .about-circle-accent {
        width: 100px;
        height: 100px;
        font-size: 18px;
        bottom: -20px;
        right: -20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

/* Video Hero Section */
.video-hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.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;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.video-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/hero-bg.jpg') center/cover no-repeat;
}

/* Konsistente Breite für alle Sektionen */
.section-padding {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Responsive Styles für Videoheader */
@media (max-width: 992px) {
    .video-hero {
        min-height: 600px;
    }
}

@media (max-width: 768px) {
    .video-hero {
        min-height: 500px;
    }
    
    .section-padding {
        padding: 70px 0;
    }
}

@media (max-width: 576px) {
    .video-hero {
        min-height: 450px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
}

/* Galerie-Vorschau */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item-preview {
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item-preview:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-item-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item-preview:hover img {
    transform: scale(1.1);
}

.gallery-preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item-preview:hover .gallery-preview-overlay {
    opacity: 1;
}