/* Girls Hero Section */
.girls-hero {
    position: relative;
    height: 100vh;
    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: 100vh;
		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;
    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;
}

/* Stil für den Disclaimer */
.disclaimer-container {
    margin-top: 4rem;
    padding: 1.5rem;
    background: rgba(20, 20, 20, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.disclaimer-container:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 0, 255, 0.1);
    transform: translateY(-5px);
}

.disclaimer-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    opacity: 0.7;
}

.disclaimer-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.disclaimer-text p {
    margin: 0;
}

/* Kleines Ausrufezeichen-Icon vor dem Text */
.disclaimer-text p:before {
    content: "\f071"; /* Font Awesome Ausrufezeichen-Icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    margin-right: 8px;
    color: var(--primary-color);
}

/* Animationen für den Disclaimer */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.disclaimer-container {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

/* Verbesserte Verfügbarkeits-Badge */
.availability-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(to right, #f44336, #d32f2f);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.availability-badge.available {
    background: linear-gradient(to right, #4CAF50, #2E7D32);
    animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .disclaimer-container {
        max-width: 95%;
        padding: 1.2rem;
    }
    
    .disclaimer-text {
        font-size: 0.85rem;
        text-align: left;
    }
}
/* Trans-spezifische Styles für die Girls-Seite */

/* Hero-Inclusive Text */
.hero-inclusive {
    font-size: 18px;
    font-weight: 300;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.8s;
    max-width: 700px;
    color: var(--gold);
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
    border: 1px solid var(--gold);
}

/* Trans-Badge für die Girl-Cards */
.trans-badge {
    position: absolute;
    top: 12px;
    right: 55px;
    background: linear-gradient(45deg, #7b68ee, var(--gold));
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 12px;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Anpassungen für Kategorie-Filter */
.filter-group select#categoryFilter {
    border-color: rgba(123, 104, 238, 0.3);
}

.filter-group select#categoryFilter:focus {
    border-color: #7b68ee;
    box-shadow: 0 0 15px rgba(123, 104, 238, 0.3);
}

/* Hervorhebung für Trans-Optionen in Dropdowns */
.filter-group select option[value="trans"] {
    background-color: rgba(123, 104, 238, 0.1);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .hero-inclusive {
        font-size: 16px;
        padding: 8px 15px;
    }
    
    .trans-badge {
        padding: 4px 8px;
        font-size: 10px;
    }
}

/* Animationen für Trans-Badge */
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 5px rgba(123, 104, 238, 0.5);
    }
    50% {
        box-shadow: 0 0 15px rgba(123, 104, 238, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(123, 104, 238, 0.5);
    }
}

.girl-card:hover .trans-badge {
    animation: glowPulse 2s infinite;
}
/* Styles für die Girls-Übersichtsseite */
.girl-action {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.girl-button {
    flex: 1;
}

.girl-category-badge {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 4px;
    text-align: center;
    min-width: 60px;
}

.girl-type {
    background: linear-gradient(45deg, #f5a9b8, #f8c8d9);
    color: #8c2a56;
    border: 1px solid #f5a9b8;
}

.trans-type {
    background: linear-gradient(45deg, #5bcefa, #7b68ee);
    color: white;
    border: 1px solid #5bcefa;
}
/* Animation für die Kategorie-Badges */
@keyframes pulseBadge {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    }
}

.girl-category-badge, .hero-category {
    animation: pulseBadge 2s infinite ease-in-out;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .girl-action {
        flex-direction: column;
        gap: 8px;
    }
    
    .girl-category-badge {
        width: 100%;
        font-size: 0.8rem;
    }
    
    .hero-category {
        font-size: 1rem;
        padding: 5px 12px;
    }
}