/* ============================================
   White Trash Phone Sex - Complete Styles
   ============================================ */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #121212;
    --color-card: #1e1e1e;
    --color-text: #e0e0e0;
    --color-text-muted: #999;
    --color-accent: #ff4757;
    --color-accent-light: #ff6b81;
    --color-gold: #ffc107;
    --color-gold-light: #ffd54f;
    --color-success: #28a745;
    --color-exit: #666;
    --border-radius: 8px;
    --shadow: 0 4px 12px rgba(0,0,0,0.5);
}

html {
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Wider container for menu pages */
.container-wide {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Banner */
header {
    text-align: center;
    margin-bottom: 25px;
}

.site-banner {
    text-align: center;
    margin-bottom: 20px;
}

.site-banner img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Age Warning / Entry Section */
.age-warning {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid var(--color-accent);
    border-radius: var(--border-radius);
    padding: 35px;
    text-align: center;
    margin-bottom: 30px;
}

.age-warning h1 {
    color: var(--color-accent);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.age-warning p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.age-warning strong {
    color: var(--color-text);
}

.entry-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto 20px;
}

.btn-enter,
.btn-exit {
    display: block;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-enter {
    background: linear-gradient(135deg, var(--color-success), #20c997);
    color: #fff;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.btn-enter:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
}

.btn-exit {
    background: var(--color-exit);
    color: #ccc;
}

.btn-exit:hover {
    background: #555;
    color: #fff;
}

.disclaimer {
    font-size: 0.9rem !important;
    color: #777 !important;
    font-style: italic;
}

/* Content Sections */
.content-section {
    background: var(--color-card);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid #333;
    box-shadow: var(--shadow);
}

.content-section h2 {
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-section h3 {
    color: var(--color-accent-light);
    font-size: 1.15rem;
    margin: 15px 0 10px;
}

.content-section p {
    margin-bottom: 15px;
    color: var(--color-text);
}

.content-section p:last-child {
    margin-bottom: 0;
}

.content-section strong {
    color: var(--color-gold-light);
    font-weight: 600;
}

.content-section a {
    color: var(--color-gold);
    text-decoration: underline;
    transition: color 0.2s;
}

.content-section a:hover {
    color: var(--color-accent);
}

/* Features */
.features .feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    background: rgba(255, 71, 87, 0.1);
    border-left: 4px solid var(--color-accent);
    padding: 20px;
    border-radius: 4px;
}

/* Specialties Grid */
.specialty-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.specialty-grid li {
    background: rgba(255, 193, 7, 0.1);
    padding: 12px 18px;
    border-radius: 4px;
    border-left: 3px solid var(--color-gold);
    color: var(--color-text);
    font-size: 0.95rem;
    position: relative;
}

.specialty-grid li::before {
    content: "✓";
    color: var(--color-gold);
    margin-right: 8px;
    font-weight: bold;
}

/* Rate Box */
.rate-box {
    background: rgba(0,0,0,0.3);
    border: 1px solid #444;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
}

.rate-box p {
    border-bottom: 1px dashed #444;
    padding-bottom: 10px;
    margin-bottom: 10px !important;
}

.rate-box p:last-child {
    border-bottom: none;
    margin-bottom: 0 !important;
}

.trust-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Compliance Badges */
.compliance {
    text-align: center;
    padding: 30px;
    background: rgba(0,0,0,0.2);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.badges img {
    height: 31px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.badges a:hover img {
    opacity: 1;
}

.compliance p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.compliance a {
    color: #888;
    text-decoration: none;
}

.compliance a:hover {
    color: var(--color-gold);
}

/* Footer */
footer {
    text-align: center;
    padding: 25px;
    color: #666;
    font-size: 0.85rem;
}

footer p {
    margin-bottom: 10px;
}

.sponsors {
    font-size: 0.8rem;
}

.sponsors a {
    color: #777;
    text-decoration: none;
}

.sponsors a:hover {
    color: var(--color-gold);
}

/* ============================================
   Menu Styles
   ============================================ */

/* Navigation */
.nav-bar {
    background: var(--color-card);
    border: 1px solid #333;
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: var(--shadow);
}

.nav-bar a {
    color: var(--color-gold);
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 3px;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-bar a:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: var(--color-gold);
    color: var(--color-gold-light);
}

/* Emergency Box */
.emergency-box {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.15) 0%, rgba(255, 71, 87, 0.05) 100%);
    border: 2px solid var(--color-accent);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.emergency-box h2 {
    color: var(--color-gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.emergency-number {
    font-size: 2.2rem;
    color: #fff;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Category Sections */
.category-section {
    margin-bottom: 35px;
    clear: both;
}

.category-header {
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
    border-left: 4px solid var(--color-gold);
    padding: 15px 25px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    border: 1px solid #333;
    border-bottom: none;
}

.category-header h2 {
    color: var(--color-gold);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-content {
    background: var(--color-card);
    border: 1px solid #333;
    border-top: none;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.category-description {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    text-align: center;
    font-style: italic;
}

/* Operator Grid - FIXED */
.operator-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    align-items: start; /* Prevents stretching */
}

@media (max-width: 900px) {
    .operator-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 650px) {
    .operator-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .operator-grid {
        grid-template-columns: 1fr;
    }
}

.operator-card {
    text-align: center;
    background: rgba(0,0,0,0.2);
    border: 1px solid #444;
    border-radius: var(--border-radius);
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
}

.operator-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

.operator-card img {
    width: 100%;
    height: auto;
    max-width: 180px;
    max-height: 240px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #555;
    margin-bottom: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.operator-card a:hover img {
    border-color: var(--color-gold);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.15);
}

.operator-name {
    color: var(--color-gold);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.operator-tagline {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 10px;
    min-height: 40px;
    flex-grow: 1; /* Pushes status to bottom */
}

/* Status Widget - FIXED */
.status {
    color: var(--color-text-muted);
    font-size: 0.75rem;
    margin-top: auto;
    min-height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;
}

.character-status {
    display: inline-block;
    font-weight: bold;
}

/* Rates Box */
.rates-box {
    background: var(--color-card);
    border: 1px solid #333;
    border-radius: var(--border-radius);
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    box-shadow: var(--shadow);
}

.rates-box h3 {
    color: var(--color-gold);
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.rate-item {
    display: inline-block;
    margin: 10px 15px;
    padding: 15px 25px;
    background: rgba(0,0,0,0.3);
    border-radius: 6px;
    border: 1px solid #444;
}

.rate-price {
    color: var(--color-gold);
    font-size: 1.8rem;
    font-weight: bold;
}

.rate-label {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-top: 5px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1) 0%, rgba(255, 71, 87, 0.05) 100%);
    border: 2px solid var(--color-accent);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    margin: 30px 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: #000;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin: 5px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
}

.cta-button.secondary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

/* Footer */
.footer {
    background: rgba(0,0,0,0.3);
    border-top: 2px solid #333;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    margin: 0 12px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.compliance-badges img {
    margin: 5px;
    height: 31px;
    opacity: 0.8;
}

.copyright {
    color: #444;
    font-size: 0.8rem;
    margin-top: 15px;
}

/* Mobile Optimization */
@media (max-width: 600px) {
    .container,
    .container-wide {
        padding: 15px;
    }
    
    .age-warning {
        padding: 25px 20px;
    }
    
    .age-warning h1 {
        font-size: 1.6rem;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .content-section h2 {
        font-size: 1.3rem;
    }
    
    .specialty-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-enter,
    .btn-exit {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
    
    .nav-bar a {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

/* Print Styles */
@media print {
    body {
        background: #fff;
        color: #000;
    }
    
    .age-warning,
    .compliance,
    footer {
        display: none;
    }
    
    .content-section {
        border: 1px solid #000;
        page-break-inside: avoid;
    }
}
/* ============================================
   Operator Bio Page Styles
   ============================================ */

/* Operator Layout - Two Column */
.operator-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    margin: 25px 0;
}

@media (max-width: 768px) {
    .operator-layout {
        grid-template-columns: 1fr;
    }
}

/* Operator Sidebar (Left Column) */
.operator-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

@media (max-width: 768px) {
    .operator-sidebar {
        position: static;
    }
}

/* Operator Gallery */
.operator-gallery-main {
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: var(--border-radius);
    border: 2px solid #444;
    margin-bottom: 10px;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.operator-gallery-main img {
    width: 90%;
    height: 100%;
    object-fit: contain;  /* Fills container, black bars if needed */
}.operator-gallery-thumbs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 3px;
}

.operator-gallery-thumbs img {
    width: 60px;
    height: 75px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid #444;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.operator-gallery-thumbs img.active,
.operator-gallery-thumbs img:hover {
    opacity: 1;
    border-color: var(--color-gold);
}

/* Sidebar Call Box */
.operator-call-box {
    background: linear-gradient(135deg, rgba(255,71,87,0.15) 0%, rgba(255,71,87,0.05) 100%);
    border: 2px solid var(--color-accent);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.operator-call-box h3 {
    color: var(--color-gold);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Operator Content (Right Column) */
.operator-content h2 {
    color: var(--color-gold);
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 10px;
    margin: 25px 0 15px;
}

.operator-content h2:first-child {
    margin-top: 0;
}

/* Specialty/Fantasy Tags */
.operator-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}

.operator-tag {
    background: rgba(255,193,7,0.1);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.operator-tag:hover {
    background: rgba(255,193,7,0.2);
}

/* Quote Box */
.operator-quote {
    background: rgba(255,193,7,0.05);
    border-left: 4px solid var(--color-gold);
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
    font-style: italic;
}

/* Why Call List */
.operator-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.operator-features li {
    padding: 12px 0;
    border-bottom: 1px dashed #444;
    color: var(--color-text);
}

.operator-features li:last-child {
    border-bottom: none;
}

.operator-features li span {
    color: var(--color-gold);
    margin-right: 10px;
}

/* Next Available Section */
.next-available {
    background: rgba(0,0,0,0.3);
    border: 1px solid #444;
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    margin-top: 30px;
}

.next-available h3 {
    color: var(--color-gold);
    margin-bottom: 10px;
}

/* Navigation Call Button */
.nav-call-btn {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: #fff !important;
    border-radius: 50px !important;
    padding: 10px 20px !important;
    font-size: 0.9rem;
}

.nav-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,71,87,0.4);
}

/* Operator Header */
.operator-header {
    text-align: center;
    margin-bottom: 10px;
}

.operator-header h1 {
    color: var(--color-gold);
    font-size: 2rem;
    margin-bottom: 10px;
}

.operator-header .operator-subtitle {
    color: var(--color-accent-light);
    font-size: 1.1rem;
}

/* Mobile Optimizations */
@media (max-width: 600px) {
    .operator-gallery-main {
        height: 300px;
    }
    
    .operator-call-box h3 {
        font-size: 1.1rem;
    }
    
    .operator-content h2 {
        font-size: 1.3rem;
    }
    
    .nav-call-btn {
        font-size: 0.8rem;
        padding: 8px 15px !important;
    }
}