/* 
 * FKK Point Bruchsal - Girl Detail Page Styles
 * Extends the main styles with girl-specific styling
 */

/* Girl Hero Section */
.girl-hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/girl-hero.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px; /* Accounts for fixed header */
}

.girl-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 0 30px;
}

.girl-hero h1 {
    font-size: 3.5rem;
    text-shadow: 0 3px 10px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
    color: var(--white);
}

/* Girl meta badges */
.girl-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.girl-age,
.girl-nationality {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 20px;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Background circles for girl hero */
.girl-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: var(--primary-red);
    border-radius: 50%;
    opacity: 0.1;
    top: -100px;
    left: -100px;
    z-index: 1;
}

.girl-hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--gold);
    border-radius: 50%;
    opacity: 0.1;
    bottom: -100px;
    right: -50px;
    z-index: 1;
}

/* Girl Details Section */
.girl-details {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Background circles for girl details */
.girl-details::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background-color: rgba(209, 10, 16, 0.1);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    z-index: 1;
}

.girl-details::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    z-index: 1;
}

/* Girl Details Grid */
.girl-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

/* Girl Image Gallery */
.girl-image-gallery {
    position: relative;
}

.girl-main-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    aspect-ratio: 3/4;
}

.girl-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.girl-image-thumbnails {
    display: flex;
    gap: 10px;
}

.girl-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.girl-thumbnail:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.girl-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Girl Information */
.girl-information {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.girl-description {
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--light-gray);
}

.girl-attributes {
    margin-bottom: 30px;
}

.girl-attributes h3,
.girl-availability h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.girl-attributes h3::before,
.girl-availability h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--gold);
    border-radius: 50%;
}

.girl-attributes-list {
    list-style: none;
    padding-left: 0;
}

.girl-attributes-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: var(--light-gray);
}

.girl-attributes-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

#girl-schedule {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

#girl-schedule p {
    color: var(--light-gray);
    margin-bottom: 10px;
}

#girl-schedule p:last-child {
    margin-bottom: 0;
}

/* CTA Button */
.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: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, var(--secondary-red), var(--primary-red));
}

/* Other Girls Section */
.other-girls {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Background circles for other girls */
.other-girls::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(209, 10, 16, 0.1);
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
    z-index: 1;
}

.girls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.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 {
    width: 100%;
    aspect-ratio: 3/4;
    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-card h3 {
    color: var(--white);
    padding: 20px 20px 10px;
    font-size: 1.2rem;
}

.girl-card p {
    color: var(--light-gray);
    padding: 0 20px 10px;
    flex: 1;
}

.girl-card .service-link {
    color: var(--primary-red);
    padding: 0 20px 20px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.girl-card .service-link:hover {
    color: var(--gold);
}

/* Loading state */
.loading {
    text-align: center;
    padding: 50px 0;
}

.loading::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    border-top-color: var(--gold);
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive styles */
@media (max-width: 1200px) {
    .girl-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .girl-image-gallery {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .girls-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 992px) {
    .girl-hero h1 {
        font-size: 3rem;
    }
    
    .girl-details,
    .other-girls {
        padding: 60px 0;
    }
    
    .girls-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .girl-hero {
        min-height: 300px;
    }
    
    .girl-hero h1 {
        font-size: 2.5rem;
    }
    
    .girl-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .girl-details,
    .other-girls {
        padding: 50px 0;
    }
    
    .girls-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .girl-hero h1 {
        font-size: 2rem;
    }
    
    .girl-image-thumbnails {
        justify-content: center;
    }
    
    .cta-button {
        width: 100%;
    }
}