/* ============================================
   CUM-ON.COM - CLEAN STYLESHEET
   ============================================ */

:root {
    --color-primary: #8B0000;
    --color-accent: #FF1493;
    --color-black: #000000;
    --color-dark: #1a1a1a;
    --color-text: #ffffff;
    --color-text-muted: #cccccc;
    --color-border: #333333;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
}

*, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

html { 
    font-size: 16px; 
    scroll-behavior: smooth; 
}

body { 
    font-family: var(--font-primary); 
    line-height: 1.6; 
    color: var(--color-text); 
    background-color: var(--color-black);
}

h1, h2, h3, h4 { 
    font-family: var(--font-heading); 
    font-weight: 700; 
    line-height: 1.2; 
    margin-bottom: 1rem; 
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; color: var(--color-accent); }
h3 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a { 
    color: var(--color-accent); 
    text-decoration: none; 
}

a:hover { text-decoration: underline; }

.container { 
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 1rem; 
}

/* ============================================
   HEADER
   ============================================ */
.site-header { 
    background-color: var(--color-black); 
    border-bottom: 2px solid var(--color-accent); 
    padding: 1rem 0; 
    position: sticky; 
    top: 0; 
    z-index: 50; 
}

.site-header .container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 1rem; 
}

.logo-text { 
    font-family: var(--font-heading); 
    font-size: 1.75rem; 
    font-weight: bold; 
    color: white; 
}

.main-nav .nav-menu { 
    display: flex; 
    list-style: none; 
    gap: 1rem; 
    flex-wrap: wrap; 
}

.main-nav a { 
    color: white; 
    font-weight: 500; 
    padding: 0.5rem 1rem; 
    border-radius: 4px; 
    border: 1px solid transparent; 
    transition: all 0.3s ease; 
}

.main-nav a:hover { 
    border-color: var(--color-accent); 
    color: var(--color-accent); 
}

.phone-cta .btn-phone { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    background-color: var(--color-accent); 
    color: white; 
    padding: 0.75rem 1.25rem; 
    border-radius: 4px; 
    font-weight: bold; 
    border: 2px solid var(--color-accent); 
    transition: all 0.3s ease; 
}

.phone-cta .btn-phone:hover { 
    background-color: transparent; 
    text-decoration: none; 
}

/* ============================================
   BANNER
   ============================================ */
.banner-section { 
    background-color: var(--color-black); 
    text-align: center; 
}

.banner-image { 
    max-width: 100%; 
    height: auto; 
    display: block; 
    margin: 0 auto; 
}

/* ============================================
   CONTENT BOXES
   ============================================ */
.content-box { 
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); 
    padding: 3rem 1rem; 
    margin: 2rem auto; 
    max-width: 1200px; 
    border-radius: 8px; 
    border: 2px solid var(--color-border); 
    text-align: center; 
}

.content-box.alt { 
    background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 100%); 
    border-color: var(--color-primary); 
}

/* ============================================
   HOMEPAGE
   ============================================ */
.hero { 
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); 
    padding: 4rem 1rem; 
    text-align: center; 
    border-bottom: 3px solid var(--color-accent); 
}

.hero h1 { 
    color: var(--color-accent); 
    margin-bottom: 1.5rem; 
}

.hero-subtitle { 
    font-size: 1.25rem; 
    max-width: 600px; 
    margin: 0 auto 2rem; 
    color: var(--color-text-muted); 
}

.btn-enter { 
    display: inline-block; 
    background-color: var(--color-accent); 
    color: white; 
    font-size: 1.25rem; 
    font-weight: bold; 
    padding: 1rem 3rem; 
    border-radius: 50px; 
    border: 3px solid var(--color-accent); 
    transition: all 0.3s ease; 
}

.btn-enter:hover { 
    background-color: transparent; 
    text-decoration: none; 
}

.legal-disclaimer { 
    padding: 3rem 1rem; 
    border-top: 3px solid var(--color-primary); 
    border-bottom: 3px solid var(--color-primary); 
    text-align: center;
}

.disclaimer-content { 
    max-width: 800px; 
    margin: 0 auto; 
    text-align: left; 
}

.disclaimer-title { 
    font-weight: bold; 
    color: var(--color-accent); 
    text-align: center;
    margin-bottom: 1rem;
}

.disclaimer-list { 
    list-style-position: inside; 
    padding-left: 1rem; 
    color: var(--color-text-muted);
}

.disclaimer-list li { 
    margin-bottom: 0.5rem; 
    font-size: 0.95rem; 
}

.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 2rem; 
    margin-top: 2rem;
}

.service-card { 
    background: rgba(255,255,255,0.05); 
    border: 1px solid var(--color-border); 
    border-radius: 8px; 
    padding: 2rem; 
    transition: all 0.3s ease; 
}

.service-card:hover { 
    border-color: var(--color-accent); 
    transform: translateY(-5px); 
}

.service-card.featured { 
    border-color: var(--color-accent); 
    border-width: 2px; 
}

.service-card h3 { 
    color: var(--color-accent); 
}

.service-card p { 
    color: var(--color-text-muted); 
    margin-bottom: 0; 
}

.fantasy-list { 
    list-style: none; 
    max-width: 600px;
    margin: 2rem auto;
    text-align: left;
}

.fantasy-list li { 
    padding: 0.5rem 0 0.5rem 2rem; 
    position: relative; 
    color: var(--color-text-muted); 
    border-bottom: 1px dotted var(--color-border); 
}

.fantasy-list li::before { 
    content: "🔥"; 
    position: absolute; 
    left: 0; 
}

.cta-box { 
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); 
    padding: 2rem; 
    border-radius: 8px; 
    margin-top: 2rem; 
}

.phone-big { 
    font-size: 1.75rem; 
    font-weight: bold; 
}

.phone-big a { color: white; }

/* ============================================
   GIRLS PAGE - OPERATOR GRID (FIXED)
   ============================================ */
.rates-grid { 
    display: flex; 
    justify-content: center; 
    gap: 2rem; 
    flex-wrap: wrap; 
    margin: 2rem 0; 
}

.rate-item { 
    background: rgba(255,255,255,0.05); 
    padding: 1.5rem 2rem; 
    border-radius: 8px; 
    border: 1px solid var(--color-border); 
    min-width: 180px; 
}

.rate-item.featured { 
    border-color: var(--color-accent); 
    background: rgba(255,20,147,0.1); 
}

.rate-item h3 { 
    color: white; 
    font-size: 1rem; 
}

.price { 
    font-size: 2.5rem; 
    font-weight: bold; 
    color: var(--color-accent); 
}

.price span { 
    font-size: 0.9rem; 
    color: #999; 
}

.rates-details { 
    margin: 2rem 0; 
    color: var(--color-text-muted); 
}

.billing-note, .age-warning {
    color: var(--color-accent);
}

/* Operator Grid - Natural Size Images */
.operator-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, 170px); 
    gap: 1.5rem; 
    justify-content: center;
    margin-top: 2rem;
}

@media (max-width: 600px) { 
    .operator-grid { 
        grid-template-columns: repeat(2, 170px); 
    } 
}

@media (max-width: 400px) { 
    .operator-grid { 
        grid-template-columns: 170px; 
    } 
}

.operator-card { 
    background: rgba(255,255,255,0.05); 
    border-radius: 8px; 
    overflow: hidden; 
    border: 1px solid var(--color-border); 
    transition: all 0.3s ease; 
    width: 170px;
}

.operator-card:hover { 
    border-color: var(--color-accent); 
    transform: translateY(-5px); 
}

.operator-card a { color: white; }

/* FIXED: Operator images at natural size 154x204 */
.operator-img-wrap { 
    width: 154px; 
    height: 204px; 
    overflow: hidden; 
    background: #000; 
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.operator-img-wrap img { 
    width: 154px; 
    height: 204px; 
    object-fit: contain; 
    display: block;
}

.operator-info { 
    padding: 0.75rem; 
    text-align: center; 
}

.operator-info h3 { 
    color: var(--color-accent); 
    font-size: 0.95rem; 
}

.operator-info p { 
    color: var(--color-text-muted); 
    font-size: 0.8rem; 
    margin-bottom: 0.25rem; 
}

.tags { 
    display: inline-block; 
    font-size: 0.7rem; 
    color: var(--color-accent); 
    background: rgba(255,20,147,0.1); 
    padding: 2px 8px; 
    border-radius: 10px; 
}

.status { 
    font-size: 0.75rem; 
    color: #888; 
    margin-top: 0.5rem; 
    padding-top: 0.5rem; 
    border-top: 1px solid var(--color-border); 
}

.character-status { 
    display: inline-block; 
    margin-left: 5px; 
}

/* ============================================
   BIO PAGE
   ============================================ */
.breadcrumb { 
    margin-bottom: 1.5rem; 
    font-size: 0.9rem; 
}

.breadcrumb ol { 
    list-style: none; 
    display: flex; 
    justify-content: center; 
    gap: 0.5rem; 
    flex-wrap: wrap; 
}

.breadcrumb li:not(:last-child)::after { 
    content: "›"; 
    margin-left: 0.5rem; 
    color: #666; 
}

/* Split Layout */
.bio-split-layout {
    display: flex;
    gap: 3rem;
    text-align: left;
}

.bio-left-column {
    flex: 0 0 300px;
    position: sticky;
    top: 100px;
}

.bio-right-column {
    flex: 1;
}

/* Bio text sizing */
.bio-right-column p {
    font-size: 1.115rem;
    line-height: 1.5;
}

.bio-right-column h1 {
    color: var(--color-accent);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.20rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

/* Photo Gallery */
.photo-gallery.compact {
    max-width: 290px;
    margin: 0 auto;
}

.gallery-main {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--color-accent);
    margin-bottom: 0.5rem;
}

.gallery-main img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
}

/* Gallery thumbnails - FIXED size */
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.gallery-thumbs .thumb {
    width: 100%;
    height: auto;
    max-width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.gallery-thumbs .thumb:hover,
.gallery-thumbs .thumb.active {
    opacity: 1;
    border-color: var(--color-accent);
}

/* Call Box Below Gallery */
.call-box-below {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
}

.call-box-below h3 {
    color: var(--color-accent);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.btn-call-number {
    display: block;
    background: var(--color-accent);
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    border: 2px solid var(--color-accent);
    transition: all 0.3s ease;
}

.btn-call-number:hover {
    background: transparent;
    text-decoration: none;
}

.status-line {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Specialty Tags */
.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.specialty-tags .tag {
    background: rgba(255,20,147,0.1);
    color: var(--color-accent);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid var(--color-accent);
}

/* Small Button */
.btn-small {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    font-size: 1rem;
    font-weight: bold;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    border: 2px solid var(--color-accent);
    transition: all 0.3s ease;
}

.btn-small:hover {
    background: transparent;
    text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {
    .bio-split-layout {
        flex-direction: column;
        gap: 2rem;
    }
    
    .bio-left-column {
        flex: 1;
        position: static;
        max-width: 300px;
        margin: 0 auto;
        width: 100%;
    }
    
    .bio-right-column {
        text-align: center;
    }
    
    .specialty-tags {
        justify-content: center;
    }
}

/* ============================================
   SPECIALTY SECTION
   ============================================ */
.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.specialty-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.specialty-item:hover {
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.specialty-item .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.specialty-item h3 {
    color: var(--color-accent);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.specialty-item p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ============================================
   CATEGORY BUBBLES
   ============================================ */
.category-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.category-bubble {
    display: inline-block;
    background: rgba(255,20,147,0.15);
    color: var(--color-accent);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 2px solid var(--color-accent);
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-bubble:hover {
    background: var(--color-accent);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* ============================================
   RATES SECTION CALL BUTTON
   ============================================ */
.call-section-rates {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.call-section-rates .btn-enter {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.availability-inline {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    color: rgba(255,255,255,0.8);
}

/* ============================================
   CATEGORY PAGES
   ============================================ */

/* Category Banner */
.category-banner {
    position: relative;
    background-color: var(--color-black);
    text-align: center;
}

.category-banner .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.category-banner .banner-image {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.8;
}

.banner-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
}

.banner-overlay h1 {
    color: white;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 0.5rem;
}

.banner-subtitle {
    color: var(--color-accent);
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    margin-bottom: 0;
}

/* Category Intro */
.category-intro {
    text-align: center;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.category-tags .tag {
    background: rgba(255,20,147,0.15);
    color: var(--color-accent);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--color-accent);
    font-size: 0.95rem;
}

/* Category Grid */
.category-grid {
    margin-top: 2rem;
}

/* Mobile */
@media (max-width: 768px) {
    .banner-overlay h1 {
        font-size: 2rem;
    }
    .banner-subtitle {
        font-size: 1.1rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: var(--color-black);
    border-top: 2px solid var(--color-accent);
    padding: 2rem 1rem;
    text-align: center;
}

.footer-section {
    margin-bottom: 1.5rem;
}

/* Footer images responsive */
.footer-section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.badge-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.badge-row img {
    height: 31px;
    width: auto;
}

.copyright {
    color: #888;
    font-size: 0.9rem;
}

/* Utility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}