/* 
 * Laufhaus Erospark Karlsruhe - Girls Page Styling
 * Modern Red-Black Design - Optimized for Responsive Layout
 */


/* Search & Filter Section */
.search-section {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(20, 0, 0, 0.95));
    padding: 2rem 0;
    position: relative;
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.search-box {
    position: relative;
    margin-bottom: 2rem;
}

.search-input {
    width: 100%;
    padding: 1.2rem 3.5rem 1.2rem 1.5rem;
    border: 1px solid var(--border-accent);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-light);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-box i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.filter-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.filter-group label {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 0.5rem;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

.filter-group select {
    padding: 1rem 1.2rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-accent);
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.filter-group select option {
    background-color: rgba(20, 0, 0, 0.95);
    color: var(--text-light);
    padding: 0.8rem;
}

/* Girls Grid Section */
.girls-grid-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0000 100%);
    padding: 3rem 2rem;
}

.girls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.girl-card {
    position: relative;
    background-color: #161616;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.girl-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.girl-image {
    position: relative;
    width: 100%;
    aspect-ratio: 0.75;
    overflow: hidden;
    background: #0d0d0d;
}

.girl-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.girl-card:hover .girl-image img {
    transform: scale(1.08);
}

.country-flag {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 25px;
    border-radius: 4px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.availability-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: #4cff4c;
    text-shadow: 0 0 5px #4cff4c;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(76, 255, 76, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.girl-info {

    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #161616, #1a0000);
}

.gradient-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    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: gradientSlide 3s linear infinite;
}

@keyframes gradientSlide {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.girl-details {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.detail-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
    min-width: 20px;
    text-align: center;
}

.site-link {
    margin-top: auto;
    display: block;
    width: fit-content;
    padding: 0.8rem 1.8rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.site-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: left 0.8s ease;
    z-index: -1;
}

.site-link:hover {
    background-color: #c80000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
    color: white;
}

.site-link:hover::before {
    left: 100%;
}

/* No Results Message */
.no-results-message {
    grid-column: 1 / -1;
    padding: 4rem 2rem;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.no-results-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 3rem;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid var(--border-accent);
}

.no-results-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px var(--primary-color));
}

.no-results-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.no-results-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.clear-filters-btn {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.clear-filters-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
    background-color: #c80000;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Animation States */
.girl-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 1;
    transform: translateY(0);
}

.girl-card.filtered {
    opacity: 0.3;
    transform: translateY(10px) scale(0.95);
    pointer-events: none;
}

.girl-card.hidden {
    display: none;
}

/* WhatsApp Chat Link */
.video-chat-link {
    text-decoration: none;
    display: block;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.video-chat-link:hover {
    transform: translateY(-3px);
}

.video-chat-info {
    background: #25D366;
    color: white;
    padding: 1rem;
    border-radius: 25px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.video-chat-info:hover {
    background: #128C7E;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.video-chat-info i {
    font-size: 1.2rem;
}



@media (max-width: 992px) {
        
    .filter-options {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
        
    .search-section {
        padding: 1.5rem 0;
    }
    
    .filter-options {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .filter-group select {
        padding: 0.8rem 1rem;
    }
    
    .girls-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.5rem;
    }
    
    .girl-info {
        padding: 1.2rem;
    }
    
    .gradient-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    
    
    .filter-options {
        grid-template-columns: 1fr;
    }
    
    .girls-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
}