/* Girl Detail Page Specific Styles */

/* Import Common Page Styles */
@import url('pages.css');

/* Profile Banner */
.profile-banner {
    position: relative;
    height: 60vh;
    min-height: 250px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(rgba(5, 5, 8, 0.7), rgba(5, 5, 8, 0.5)), url('../img/profile-banner.jpg') center/cover no-repeat;
}

.profile-name {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.profile-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    color: var(--light);
    opacity: 0.9;
}

.profile-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-meta i {
    color: var(--primary);
}

/* Profile Details */
.profile-section {
    padding: 80px 0;
}

.profile-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

/* Left Column - Images */
.profile-images {
    position: relative;
}

.main-image {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-height: 600px;
}

.main-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.vip-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold), #b08b2d);
    padding: 5px 15px;
    font-weight: 600;
    z-index: 2;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-thumb {
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    opacity: 0.7;
    transition: all 0.3s ease;
    height: 120px;
}

.gallery-thumb:hover {
    opacity: 1;
    transform: scale(1.05);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animation for image click */
.zoom-in {
    animation: zoom-in 0.5s forwards;
}

@keyframes zoom-in {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Right Column - Details */
.detail-section {
    margin-bottom: 40px;
}

.detail-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 15px;
}

.detail-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(255, 0, 124, 0.05);
    border-color: rgba(255, 0, 124, 0.1);
}

.detail-label {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 5px;
}

.detail-value {
    font-size: 16px;
    font-weight: 500;
}

/* Services Tabs */
.services-tabs {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 10, 20, 0.2);
}

.tabs-navigation {
    display: flex;
    overflow-x: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: var(--light);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    cursor: pointer;
    white-space: nowrap;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.tab-btn.active {
    opacity: 1;
    background: rgba(255, 0, 124, 0.1);
    border-bottom: 2px solid var(--primary);
}

.tabs-content {
    padding: 20px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 0, 124, 0.05);
    border-color: rgba(255, 0, 124, 0.1);
    transform: translateY(-3px);
}

.service-icon {
    min-width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.service-name {
    font-weight: 500;
    margin-bottom: 3px;
}

.service-note, .service-price {
    font-size: 14px;
    opacity: 0.8;
}

.service-price {
    color: var(--gold);
}

/* Schedule Grid */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.schedule-day {
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.schedule-day:hover {
    background: rgba(255, 255, 255, 0.05);
}

.schedule-day.today {
    border-color: var(--primary);
    background: rgba(255, 0, 124, 0.1);
}

.schedule-day.available {
    opacity: 1;
}

.schedule-day.unavailable {
    opacity: 0.5;
}

.day-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.day-hours {
    font-size: 14px;
    opacity: 0.8;
}

/* Prices */
.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.rate-item {
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.rate-item:hover {
    background: rgba(255, 0, 124, 0.05);
    border-color: rgba(255, 0, 124, 0.1);
    transform: translateY(-3px);
}

.rate-duration {
    font-weight: 500;
    margin-bottom: 5px;
}

.rate-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
}

/* Action Buttons */
.profile-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.btn-call, .btn-contact, .btn-video {
    flex: 1;
    min-width: 150px;
    text-align: center;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-call {
    background: var(--gold);
    border-color: var(--gold);
}

.btn-call:hover {
    background: transparent;
    color: var(--gold);
}

.btn-video {
    background: var(--third);
    border-color: var(--third);
}

.btn-video:hover {
    background: transparent;
    color: var(--third);
}

/* Other Girls Section */
.other-girls-section {
    padding: 80px 0;
    background: rgba(10, 10, 20, 0.5);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--light);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
}

.small-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.view-all-link {
    text-align: center;
    margin-top: 40px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .profile-container {
        grid-template-columns: 1fr;
    }
    
    .profile-images {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .schedule-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .schedule-day:nth-child(n+5) {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .profile-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .tabs-navigation {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1;
        min-width: 50%;
        text-align: center;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .profile-buttons {
        flex-direction: column;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
}
/* Lightbox Styling - Enhanced with Navigation */
.fullscreen-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: lightbox-fade-in 0.3s ease;
}

@keyframes lightbox-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
}

.lightbox-close:hover {
    color: var(--primary);
}

/* Navigation buttons */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 0, 124, 0.7);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: -30px;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 14px;
}

/* Neue Styles für die Buttons */
.btn-whatsapp {
    background: #25d366;
    border-color: #25d366;
}

.btn-whatsapp:hover {
    background: transparent;
    color: #25d366;
}

/* Styles für das Video-Chat-Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow: auto;
    animation: fade-in 0.3s ease;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, #10101e, #1c1c2c);
    margin: 10% auto;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 1px solid rgba(255, 0, 124, 0.2);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary);
}

.modal-form {
    margin-top: 20px;
}

.modal-form .form-group {
    margin-bottom: 20px;
}

.modal-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--light);
}

.modal-form .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    border-radius: 4px;
}

.modal-form .form-control:focus {
    border-color: var(--primary);
    outline: none;
}

.modal-form button {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 20% auto;
        width: 95%;
        padding: 20px;
    }
}

/* Action Buttons Grundstil */
.profile-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

/* Elegante Button-Grundstile */
.btn-elegant {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-elegant i {
    margin-right: 8px;
    font-size: 16px;
}

/* Spezifische Button-Stile */
.btn-call {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--light);
}

.btn-call:hover {
    background: rgba(176, 139, 45, 0.15);
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(176, 139, 45, 0.2);
}

.btn-contact {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--light);
}

.btn-contact:hover {
    background: rgba(255, 0, 124, 0.15);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 0, 124, 0.2);
}

.btn-whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: var(--light);
}

.btn-whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    border-color: #25d366;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.2);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .profile-buttons {
        flex-direction: column;
    }
    
    .btn-elegant {
        width: 100%;
    }
	.model-back {
    pointer-events: auto;
    overflow: visible;
}
	.model-info-back .btn-elegant {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}
}
/* Rückseite der Karte: pointer-events aktivieren */
.model-back {
    pointer-events: auto;
    overflow: visible;
    z-index: 2;
}

/* Der Profil-Link-Button */
.model-back .btn-elegant {
    position: relative;
    z-index: 10;
    pointer-events: auto;
    display: inline-block;
    touch-action: manipulation;
}

/* Sicherheitshalber: Frontseite darf keine Klicks abfangen, wenn geflippt */
.model-card-inner.flipped .model-front {
    pointer-events: none;
}

/* Und wenn nicht geflippt, darf nur Vorderseite reagieren */
.model-card-inner:not(.flipped) .model-back {
    pointer-events: none;
}
