/* ========================================
   ESCORT PROFILES - BLACK & GOLD THEME
   Professional Premium Design
   ======================================== */

* {
    box-sizing: border-box;
}

/* ========================================
   GALLERY - 3 COLUMN PREMIUM DESIGN
   ======================================== */

/* Gallery Wrapper & Grid */
.escort-gallery-wrapper {
    width: 100%;
    margin: 60px auto;
    padding: 0;
    display: flex;
    justify-content: center;
}

.escort-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
}

/* Gallery Items */
.escort-gallery-item {
    width: 100%;
    padding: 0;
    margin: 0;
}

.escort-gallery-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                box-shadow 0.4s ease;
}

.escort-gallery-image:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.5);
}

/* Overlay */
.escort-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.5) 70%,
        rgba(0, 0, 0, 0.85) 95%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 50px 25px;
    text-align: center;
}

/* Title */
.escort-gallery-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Button */
.escort-gallery-link {
    display: inline-block;
    padding: 12px 35px;
    background-color: #c9a961;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
    border: 1px solid #d4af37;
}

.escort-gallery-link:hover {
    background-color: #d4af37;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    transform: scale(1.08);
    color: #000;
    text-decoration: none;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Tablet - 2 columns */
@media (max-width: 1024px) {
    .escort-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .escort-gallery-wrapper {
        padding: 0 30px;
    }
    
    .escort-gallery-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .escort-gallery-image {
        border-radius: 16px;
    }
}

/* Mobile - 1 column */
@media (max-width: 768px) {
    .escort-gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .escort-gallery-wrapper {
        padding: 0 20px;
        margin: 40px 0;
    }
    
    .escort-gallery-title {
        font-size: 24px;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
    
    .escort-gallery-link {
        padding: 11px 35px;
        font-size: 11px;
    }
    
    .escort-gallery-image {
        border-radius: 12px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .escort-gallery-grid {
        gap: 15px;
    }
    
    .escort-gallery-wrapper {
        padding: 0 15px;
        margin: 30px 0;
    }
    
    .escort-gallery-overlay {
        padding: 40px 20px;
    }
    
    .escort-gallery-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

/* ========================================
   FEATURED GALLERY SHORTCODE

.escort-featured-gallery-wrapper {
    background: #0a0a0a;
    padding: 60px 20px;
    margin: 0;
    width: 100%;
}

.escort-featured-gallery {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.escort-featured-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 16 / 9;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

.escort-featured-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
}

.featured-card-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
}

.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.escort-featured-card:hover .featured-card-image img {
    transform: scale(1.12);
    filter: brightness(1.1);
}

.featured-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
}

.featured-card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.8) 85%, rgba(0,0,0,0.95) 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.escort-featured-card:hover .featured-card-content {
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.9) 85%, rgba(0,0,0,0.98) 100%);
}

.featured-card-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    text-transform: capitalize;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.escort-featured-card:hover .featured-card-title {
    color: #d4af37;
    text-shadow: 0 3px 12px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

.featured-view-button {
    display: inline-block;
    background: #d4af37;
    color: #000;
    padding: 12px 32px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.featured-view-button:hover {
    background: #fff;
    border-color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.featured-view-button:active {
    transform: scale(0.98);
}

/* ========================================
   ELEMENTOR COMPATIBILITY - FEATURED GALLERY
   ======================================== */

.elementor-widget-wrap .escort-featured-gallery-wrapper {
    padding: 40px 0;
    margin: 0;
}

.elementor-widget-wrap .escort-featured-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* ========================================
   RESPONSIVE - FEATURED GALLERY
   ======================================== */

@media (max-width: 1200px) {
    .escort-featured-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .featured-card-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .escort-featured-gallery-wrapper {
        padding: 40px 15px;
    }
    
    .escort-featured-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .featured-card-title {
        font-size: 22px;
    }
    
    .featured-view-button {
        padding: 10px 24px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .escort-featured-gallery-wrapper {
        padding: 30px 10px;
    }
    
    .escort-featured-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-card-content {
        gap: 12px;
        padding: 25px;
    }
    
    .featured-card-title {
        font-size: 18px;
    }
    
    .featured-view-button {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* ========================================
   SINGLE PROFILE PAGE
   ======================================== */

.escort-profile-wrapper {
    background: #0a0a0a;
    color: #ffffff;
    padding: 0;
    min-height: 100vh;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.escort-profile-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    background: #0a0a0a;
}

/* ========================================
   HERO SECTION - Main Layout
   ======================================== */

.escort-profile-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    padding: 40px;
}

.escort-profile-gallery-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.escort-profile-featured {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 4px;
    background: #1a1a1a;
}

.escort-profile-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.escort-gallery-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
}

.gallery-slide {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 2px;
    background: #1a1a1a;
    cursor: pointer;
    transition: transform 0.3s ease, border 0.3s ease;
    border: 1px solid #333;
}

.gallery-slide:hover {
    transform: scale(1.05);
    border-color: #d4af37;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========================================
   HEADER - Profile Name & Quick Info
   ======================================== */

.escort-profile-header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
}

.escort-profile-title-section {
    border-bottom: 2px solid #d4af37;
    padding-bottom: 20px;
}

.escort-profile-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: capitalize;
}

.escort-profile-age {
    margin-top: 12px;
}

.age-badge {
    display: inline-block;
    background: #d4af37;
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.age-badge small {
    font-size: 12px;
    margin-left: 4px;
}

/* Quick Info Grid */
.escort-profile-quick-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.quick-info-item {
    background: #1a1a1a;
    padding: 15px;
    border-left: 3px solid #d4af37;
}

.info-label {
    display: block;
    color: #d4af37;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.info-value {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

/* ========================================
   MAIN CONTENT
   ======================================== */

.escort-profile-content {
    padding: 40px;
    border-top: 1px solid #333;
}

/* Bio Section */
.escort-profile-bio {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.escort-profile-bio h2 {
    color: #d4af37;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.bio-text {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* Description Section */
.escort-profile-description {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
    color: #aaaaaa;
    line-height: 1.8;
    font-size: 15px;
}

.escort-profile-description p {
    margin: 0 0 12px 0;
}

/* Details Grid */
.escort-profile-details {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.escort-profile-details h2 {
    color: #d4af37;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.details-section {
    background: #1a1a1a;
    padding: 20px;
    border-left: 3px solid #d4af37;
}

.details-section h3 {
    color: #d4af37;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 18px 0;
    letter-spacing: 0.5px;
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #333;
}

.detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label {
    display: block;
    color: #d4af37;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.detail-value--ja {
    background: #10b981;
    color: #000;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.detail-value--nee {
    background: #ef4444;
    color: #fff;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

/* Languages Section */
.details-section--full {
    grid-column: 1 / -1;
}

.languages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.language-badge {
    background: #d4af37;
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
}

/* ========================================
   AVAILABILITY SECTION
   ======================================== */

.escort-profile-availability {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.escort-profile-availability h2 {
    color: #d4af37;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

.availability-table {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 2px;
    overflow: hidden;
}

.availability-header {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 0;
    background: #0a0a0a;
    border-bottom: 2px solid #d4af37;
    font-weight: 600;
}

.availability-day {
    padding: 15px;
    color: #d4af37;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.availability-time {
    padding: 15px;
    color: #d4af37;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 1px solid #333;
}

.availability-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 0;
    border-bottom: 1px solid #333;
}

.availability-row:last-child {
    border-bottom: none;
}

.availability-row.available {
    background: rgba(212, 175, 55, 0.03);
}

.availability-row .availability-day {
    color: #ffffff;
    font-weight: 500;
    text-transform: none;
    background: transparent;
}

.availability-row .availability-time {
    color: #ffffff;
    border-left: 1px solid #333;
    background: transparent;
    font-weight: 500;
    text-transform: none;
}

.unavailable-text {
    color: #999;
    font-style: italic;
}

/* ========================================
   GALLERY SECTION - Full Width
   ======================================== */

.escort-profile-gallery {
    margin-top: 0;
    padding-top: 40px;
    border-top: 1px solid #333;
}

.escort-profile-gallery h2 {
    color: #d4af37;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 30px 0;
    padding: 0 40px;
    letter-spacing: 1px;
}

.escort-gallery-section {
    padding: 0 40px 40px 40px;
}

.escort-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.gallery-item {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 2px;
    background: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========================================
   ARCHIVE PAGE
   ======================================== */

.escort-profiles-archive {
    background: #0a0a0a;
    padding: 0;
    min-height: 100vh;
    color: #ffffff;
}

.escort-archive-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.escort-archive-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: #1a1a1a;
    border-radius: 2px;
    border-bottom: 3px solid #d4af37;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: #d4af37;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-subtitle {
    font-size: 16px;
    color: #aaaaaa;
    margin: 0;
    line-height: 1.6;
}

/* Profiles Grid */
.escort-profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.escort-profile-card {
    background: #1a1a1a;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.escort-profile-card:hover {
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #000;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.escort-profile-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.escort-profile-card:hover .card-overlay {
    opacity: 1;
}

.card-link {
    background: #d4af37;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.card-link:hover {
    background: #fff;
    transform: scale(1.05);
}

.card-content {
    padding: 15px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #d4af37;
    margin: 0 0 12px 0;
    text-transform: capitalize;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.meta-item {
    font-size: 13px;
    color: #aaaaaa;
}

.card-languages {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.language-more {
    display: inline-block;
    background: #d4af37;
    color: #000;
    padding: 4px 8px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
}

.escort-no-profiles {
    text-align: center;
    padding: 80px 40px;
    color: #aaaaaa;
    font-size: 18px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .escort-profile-hero {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .escort-profile-featured {
        height: 350px;
    }

    .escort-profile-content {
        padding: 20px;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .escort-profile-title {
        font-size: 28px;
    }

    .escort-profile-quick-info {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 32px;
    }

    .escort-profiles-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .card-image {
        height: 220px;
    }

    .availability-header,
    .availability-row {
        grid-template-columns: 100px 1fr;
    }
}

@media (max-width: 480px) {
    .escort-profile-hero {
        padding: 15px;
    }

    .escort-profile-featured {
        height: 280px;
    }

    .escort-profile-title {
        font-size: 22px;
    }

    .escort-profile-content {
        padding: 15px;
    }

    .escort-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .escort-profiles-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 24px;
    }

    .quick-info-item {
        padding: 12px;
    }

    .info-label {
        font-size: 11px;
    }

    .info-value {
        font-size: 14px;
    }
}

/* ========================================
   PLACEHOLDER (No Image)
   ======================================== */

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
