/* Mobile-First Optimized Styles for TwinLove69 */
/* Minimal CSS for fast loading */

:root {
    --xnxx-orange: #FF6C00;
    --xnxx-orange-dark: #E35F00;
    --xnxx-black: #0D0D0D;
    --xnxx-gray: #1A1A1A;
    --xnxx-gray-light: #2A2A2A;
    --white: #FFFFFF;
    --text-gray: #CCCCCC;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--xnxx-black);
    color: var(--text-gray);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Mobile-First Navigation */
.navbar {
    background: var(--xnxx-gray) !important;
    border-bottom: 2px solid var(--xnxx-orange);
    padding: 8px 0 !important;
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--xnxx-orange) !important;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--text-gray) !important;
    padding: 8px 12px !important;
    font-weight: 500;
}

.nav-link:active, .nav-link.active {
    color: var(--xnxx-orange) !important;
}

/* Compact Hero */
.hero-section {
    background: var(--xnxx-gray);
    padding: 30px 0 !important;
    border-bottom: 2px solid var(--xnxx-orange);
}

.hero-section h1 {
    font-size: 1.8rem;
    color: var(--xnxx-orange);
    font-weight: 800;
    margin-bottom: 0;
}

/* Cards - Mobile Optimized */
.card {
    background: var(--xnxx-gray);
    border: 1px solid rgba(255, 108, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.escort-card img {
    height: 180px;
    object-fit: cover;
    width: 100%;
    display: block;
}

.placeholder-image {
    height: 180px;
    background: var(--xnxx-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--xnxx-orange);
}

.card-title {
    color: var(--xnxx-orange);
    font-weight: 700;
    font-size: 0.95rem;
}

/* Buttons - Touch Friendly */
.btn {
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600;
    border: none;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: var(--xnxx-orange);
    color: white;
}

.btn-primary:active {
    background: var(--xnxx-orange-dark);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
}

/* Forms - Touch Friendly */
.form-control, .form-select {
    background: var(--xnxx-black);
    border: 1px solid rgba(255, 108, 0, 0.3);
    color: white;
    padding: 10px 12px;
    font-size: 0.95rem;
}

.form-control-sm, .form-select-sm {
    padding: 8px 10px;
    font-size: 0.9rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--xnxx-orange);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 108, 0, 0.2);
}

/* Badge */
.badge {
    padding: 4px 8px;
    font-size: 0.7rem;
    border-radius: 12px;
}

/* Search/Filter Section */
.bg-light {
    background: var(--xnxx-gray) !important;
}

/* Footer */
footer {
    background: var(--xnxx-gray);
    border-top: 2px solid var(--xnxx-orange);
}

footer a {
    color: var(--xnxx-orange);
    text-decoration: none;
}

/* Text Colors */
.text-primary {
    color: var(--xnxx-orange) !important;
}

.text-muted {
    color: rgba(204, 204, 204, 0.7) !important;
}

/* Utility Classes */
.bg-success { background: #28a745 !important; }
.bg-secondary { background: #6c757d !important; }

/* Tablet Breakpoint */
@media (min-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .escort-card img {
        height: 250px;
    }
    
    .navbar-brand {
        font-size: 1.6rem;
    }
}

/* Desktop Breakpoint */
@media (min-width: 992px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .escort-card img {
        height: 300px;
    }
    
    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(255, 108, 0, 0.3);
    }
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

