/* Hauptcontainer für Girl-Profile */
.girl-profile {
    padding-top: 0 !important; /* Kein Padding oben */
    background: linear-gradient(to bottom, #000, #1a0020);
    position: relative;
    z-index: 1;
    overflow: visible;
	transform:none !important;
	bottom:0px !important;
	padding:0px !important;
}

/* Hero Section Fixes */
.profile-hero {
    position: relative;
    height: 80vh;
    min-height: 400px;
    max-height: 1000px;
    overflow: hidden;
    z-index: 1;
    margin-top: 0;
    padding-top: 80px; /* Für Header-Höhe */
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.8);
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.hero-content {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    padding: 0 2rem;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--gold);
    color: var(--gold);
}

.availability-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.availability-badge.available {
    background: rgba(0, 255, 0, 0.2);
    border: 1px solid rgba(0, 255, 0, 0.4);
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

.availability-badge.unavailable {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.4);
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
}

/* Profile Content */
.profile-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
    overflow: visible;
}

/* Main Content */
.profile-main {
    display: grid;
    gap: 2rem;
}

.profile-main section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-main h2 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px var(--gold);
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-item i {
    color: var(--gold);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 3px var(--gold));
}

.detail-item span {
    color: var(--text-light);
}

.detail-item strong {
    color: white;
}

/* Services Section */
.rates-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.rate-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.rate-item:hover {
    background: rgba(255, 0, 255, 0.1);
    transform: translateY(-5px);
}

.rate-item .time {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

.rate-item .price {
    display: block;
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0.5rem;
    text-shadow: 0 0 5px var(--gold);
}

.services-grid {
    display: grid;
    gap: 2rem;
}

.service-category h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 0, 255, 0.1);
    transform: translateX(5px);
}

.service-item i {
    color: var(--gold);
    font-size: 1.1rem;
    filter: drop-shadow(0 0 3px var(--gold));
}

.service-name {
    flex: 1;
    color: var(--text-light);
}

.service-price {
    color: var(--gold);
    font-weight: bold;
}

/* Schedule Section */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.schedule-day {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: center;
}

.schedule-day.available {
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.day-name {
    display: block;
    color: var(--text-light);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.time-range {
    color: var(--gold);
}

.not-available {
    color: var(--text-light);
    font-style: italic;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Sidebar */
.profile-sidebar {
    display: grid;
    gap: 1.5rem;
    align-content: start;
}

.contact-card,
.location-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card h3,
.location-card h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px var(--gold);
}

.contact-card p,
.location-card p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.contact-card i,
.location-card i {
    color: var(--gold);
    filter: drop-shadow(0 0 3px var(--gold));
}

.contact-card a,
.location-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover,
.location-card a:hover {
    color: var(--gold);
}

.availability-info {
    margin: 1rem 0;
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
}

.availability-info .available {
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.availability-info .unavailable {
    color: #ff0000;
    text-shadow: 0 0 5px #ff0000;
}

.video-chat-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #25D366;
    color: white;
    border-radius: 8px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.video-chat-info:hover {
    background: #128C7E;
}

/* Ergänzung für andere Girls-Sektion */
.other-girls-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.other-girls-card h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px var(--gold);
}

.other-girls-grid {
    display: grid;
    gap: 1rem;
}

.other-girl-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.other-girl-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 0, 255, 0.1);
}

.other-girl-image {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.other-girl-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.other-girl-item:hover .other-girl-image img {
    transform: scale(1.1);
}

.other-girl-name {
    padding: 0.8rem;
    text-align: center;
    color: var(--gold);
    font-weight: 600;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    display: block;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    transition: opacity 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
}

.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

.lightbox-nav:hover {
    background: rgba(212, 175, 55, 0.3);
    color: var(--gold);
}

/* Verhindere Body-Scroll wenn Modals aktiv sind */
body.modal-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
}

/* Zusätzliche Hilfestile für bessere Performance */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .profile-content {
        grid-template-columns: 1fr;
    }
    
    .profile-sidebar {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .profile-hero {
        height: 50vh;
        min-height: 300px;
        padding-top: 60px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-image img {
        object-position: top;
    }
    
    .profile-content {
        padding: 1rem;
    }
    
    .profile-main section {
        padding: 1.5rem;
    }
    
    .details-grid,
    .service-list {
        grid-template-columns: 1fr;
    }
    
    .rates-overview {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .profile-hero {
        height: 40vh;
        min-height: 250px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .availability-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    .rates-overview {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
	justify-items: center;
    }
}
/* Trans-spezifische Styles für die Girl-Detail-Seite */

/* Trans-Badge in der Hero-Section */
.trans-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: linear-gradient(45deg, #7b68ee, var(--gold));
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        box-shadow: 0 0 10px rgba(123, 104, 238, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(123, 104, 238, 0.8);
    }
    100% {
        box-shadow: 0 0 10px rgba(123, 104, 238, 0.5);
    }
}

/* Trans-Info in der Kontakt-Karte */
.trans-info {
    margin-top: 20px;
    padding: 15px;
    background: rgba(123, 104, 238, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(123, 104, 238, 0.3);
}

.trans-info p {
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trans-info i {
    color: #7b68ee;
    filter: drop-shadow(0 0 3px #7b68ee);
}

.trans-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(45deg, #7b68ee, #25D366);
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.trans-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(123, 104, 238, 0.3);
}

/* Trans-Badge für andere Girls in der Sidebar */
.other-girl-image {
    position: relative;
}

.other-girl-trans-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: linear-gradient(45deg, #7b68ee, var(--gold));
    color: white;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    z-index: 2;
}

/* Hervorhebung für Transgender-Icon in den Details */
.detail-item i.fa-transgender-alt {
    color: #7b68ee;
    filter: drop-shadow(0 0 3px #7b68ee);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .trans-badge {
        top: 1rem;
        left: 1rem;
        padding: 5px 10px;
        font-size: 12px;
    }
}
/* Styles für die Girl-Detailseite */
.hero-category {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.girl-category {
    background: rgba(245, 169, 184, 0.7);
    color: white;
    border: 1px solid #f5a9b8;
}

.trans-category {
    background: rgba(123, 104, 238, 0.7);
    color: white;
    border: 1px solid #5bcefa;
}

/* Prominente Kategorie im Details-Bereich */
.category-detail {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 3px solid var(--gold);
}

.category-detail i {
    font-size: 1.3rem;
}

/* 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;
    }
}