/* ============================================
   CUM DROP INN - AGE GATE & SITE STYLES
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #ff0099;
    --primary-dark: #cc0077;
    --secondary-color: #ff0066;
    --bg-dark: #0a0012;
    --bg-card: #15051a;
    --text-light: #e8e8e8;
    --text-muted: #999;
    --border-color: rgba(255, 0, 150, 0.3);
    --glow: 0 0 30px rgba(255, 0, 150, 0.4);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

/* ============================================
   AGE GATE OVERLAY - FIXED FULL SCREEN
   ============================================ */

.agegate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 0, 18, 0.98);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.agegate-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.agegate-modal {
    background: linear-gradient(145deg, #1a0a1f 0%, #120515 100%);
    border: 2px solid #ff0099;
    border-radius: 15px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 0, 150, 0.4);
    position: relative;
}

.agegate-modal h2 {
    color: #ff0099;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
}

.agegate-modal p {
    color: #b8b8b8;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.7;
}

.agegate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ff0099 0%, #ff0066 100%);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    box-shadow: 0 0 30px rgba(255, 0, 150, 0.4);
    font-family: inherit;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 150, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #888;
    border: 1px solid #444;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-secondary:hover {
    border-color: #ff0099;
    color: #ff0099;
}

/* ============================================
   SITE HEADER & NAVIGATION
   ============================================ */

.site-header {
    background: linear-gradient(180deg, #0d0015 0%, #0a0012 100%);
    padding: 0;
    border-bottom: 1px solid rgba(255, 0, 150, 0.2);
}

.banner-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.banner-container img {
    width: 100%;
    height: auto;
    display: block;
}

.main-nav {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 0, 150, 0.2);
    padding: 0;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 80%;
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    min-height: 50vh;
}

.content-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 0, 150, 0.1);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.content-section h1 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content-section h2 {
    color: var(--text-light);
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    font-weight: 400;
}

.content-section p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* ============================================
   GIRLS GRID
   ============================================ */

.girls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.girl-card {
    background: linear-gradient(145deg, #1a0a1f 0%, #120515 100%);
    border: 1px solid rgba(255, 0, 150, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.girl-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 150, 0.2);
    border-color: rgba(255, 0, 150, 0.4);
}

.girl-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.girl-info {
    padding: 1.5rem;
}

.girl-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.girl-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.call-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.call-btn:hover {
    background: var(--primary-dark);
    box-shadow: var(--glow);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: #050008;
    border-top: 1px solid rgba(255, 0, 150, 0.2);
    padding: 3rem 1rem;
    margin-top: 3rem;
}

.entry-footer {
    background: #050008;
    border-top: 1px solid rgba(255, 0, 150, 0.2);
    padding: 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.compliance-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.compliance-badges img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.compliance-badges img:hover {
    opacity: 1;
}

.legal-text {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.8;
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

.legal-text strong {
    color: #888;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .main-nav a {
        padding: 0.875rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .agegate-modal {
        padding: 2rem;
    }
    
    .agegate-modal h2 {
        font-size: 1.4rem;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .girls-grid {
        grid-template-columns: 1fr;
    }
    
    .agegate-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .agegate-buttons {
        flex-direction: column;
    }
}

/* Skip to content for accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 10px 10px;
}

.skip-link:focus {
    top: 0;
}

/* Hidden class for JS toggle */
.hidden {
    display: none !important;
}