/* Girls Hero Section */
.girls-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
}

.girls-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.girls-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: top;
    filter: brightness(0.7);
}

.girls-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7)
    );
}

.girls-hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}

/* Search Section */

.search-container {
    max-width: 1200px;
    margin: 0 auto;
}

.search-box {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.search-box i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.filter-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.filter-group select {
    padding: 0.8rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.2);
}

/* Girls Grid Section */
.girls-grid-section {
    padding: 2rem;
    background: linear-gradient(to bottom, #1a0020, #000);
}

.girls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .girls-hero {
        height: 40vh;
		padding-top: 50px;
    }
    
    .search-section {
        padding: 1rem;
    }
    
    .filter-options {
        grid-template-columns: 1fr;
    }
    
    .girls-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
        padding: 1rem;
    }
}

/* Animation für gefilterte Elemente */
.girl-card {
    transition: all 0.3s ease;
}

.girl-card.filtered {
    opacity: 0.3;
    transform: scale(0.95);
    pointer-events: none;
}

.girl-card.hidden {
    display: none;
}
/* 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: 2rem;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.no-results-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--primary-color));
}

.no-results-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.no-results-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.clear-filters-btn {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.clear-filters-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.5);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lazy Loading Styles */
.girl-image img.lazy {
    filter: blur(10px);
    transition: filter 0.3s ease;
}

.girl-image img:not(.lazy) {
    filter: none;
}
.girl-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
}

.girl-card.filtered {
    opacity: 0.3;
    transform: scale(0.95);
    pointer-events: none;
}

.girl-card.hidden {
    display: none;
}

.girl-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.girl-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Stellen Sie sicher, dass die Flaggen immer sichtbar sind */
.country-flag {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 28px;
    border-radius: 4px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Search & Filter Section Styles */
.search-section {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(26, 0, 32, 0.95));
    padding: 2rem;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 0, 255, 0.1);
}

.search-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Search Box Styling */
.search-box {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.3);
    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, 255, 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);
    filter: drop-shadow(0 0 5px var(--primary-color));
}

/* Filter Options Styling */
.filter-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 0.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 0.5rem;
    text-shadow: 0 0 5px var(--primary-color);
}

/* Custom Select Styling */
.filter-group select {
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 0, 255, 0.2);
    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='%23ff00ff' 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:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.2);
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

/* Select Options Styling */
.filter-group select option {
    background-color: #1a0020;
    color: var(--text-light);
    padding: 0.5rem;
}

.filter-group select option:hover {
    background-color: rgba(255, 0, 255, 0.2);
}

@media (min-width: 1024px) {
    .search-section {
        position: sticky;
        top: 0;
    }
}

/* Tablet und Mobile Styles */
@media (max-width: 1023px) {
    .search-section {
        position: relative;
        padding: 1rem;
    }
    
    .filter-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .search-section {
        padding: 1rem;
    }
    
    .filter-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .search-input {
        font-size: 1rem;
        padding: 0.8rem 2.5rem 0.8rem 1.2rem;
    }
}

/* Kleine Mobile Geräte */
@media (max-width: 640px) {
    .filter-options {
        grid-template-columns: 1fr;
    }
    
    .search-input {
        font-size: 1rem;
        padding: 0.8rem 2.5rem 0.8rem 1.2rem;
    }
}

/* Custom Scrollbar for Select Dropdowns */
.filter-group select::-webkit-scrollbar {
    width: 8px;
}

.filter-group select::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.filter-group select::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.filter-group select::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}
.video-chat-link {
    text-decoration: none;
    display: block;
    margin-top: 1rem;
    transition: transform 0.2s ease;
}

.video-chat-link:hover {
    transform: translateY(-2px);
}

.video-chat-info {
    background: #25D366;
    color: white;
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.2s ease;
}

.video-chat-info:hover {
    background: #128C7E;
}

.video-chat-info i {
    font-size: 1.2rem;
}