/*
Theme Name: Drop Theme
Author: elysey
Description: Clean, SEO-optimized theme for escort/model directory
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: drop-theme
Tags: directory, custom-theme, seo-ready
*/

/* ===== CSS Variables ===== */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --accent-hover: #ff6b6b;
    --text-color: #333;
    --text-light: #666;
    --text-muted: #999;
    --bg-color: #fff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container-width: 1200px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-color);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header ===== */
.site-header {
    background: var(--bg-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo a {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.site-logo span {
    color: var(--accent-color);
}

/* ===== Navigation ===== */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav .current-menu-item a::after {
    width: 100%;
}

/* Categories Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown > a::before {
    display: none;
}

.dropdown-arrow {
    font-size: 10px;
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 200px;
    padding: 10px 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    margin-top: 15px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: #fff;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--accent-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: var(--transition);
}

/* ===== Filter Section ===== */
.filter-section {
    background: var(--bg-light);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.filter-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
}

.filter-select {
    padding: 10px 35px 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;
    background-size: 18px;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    min-width: 150px;
    transition: var(--transition);
}

.filter-select:hover,
.filter-select:focus {
    border-color: var(--accent-color);
    outline: none;
}

/* ===== Cards Grid ===== */
.cards-section {
    padding: 50px 0;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ===== Profile Card ===== */
.profile-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.profile-card:hover .card-image img {
    transform: scale(1.05);
}

/* Watermark */
.card-watermark {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 3px 8px;
    font-size: 10px;
    border-radius: 4px;
    font-weight: 500;
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-color);
    color: #fff;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
}

.card-badge.verified {
    background: #28a745;
}

.card-badge.new {
    background: #007bff;
}

.card-badge.vip {
    background: #ffc107;
    color: #333;
}

/* Card Content */
.card-content {
    padding: 15px;
}

.card-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.card-name a {
    color: inherit;
}

.card-name a:hover {
    color: var(--accent-color);
}

.card-location {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-params {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.card-params span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-color);
}

/* ===== SEO Text Section ===== */
.seo-section {
    background: var(--bg-light);
    padding: 50px 0;
}

.seo-content {
    max-width: 900px;
}

.seo-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.seo-content h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.seo-content p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

/* ===== Single Model Page ===== */

.model-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
}

.model-gallery {
    position: sticky;
    top: 100px;
}

.model-main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.model-main-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-thumb {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

/* Model Info */
.model-info h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.model-location {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.model-params-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
}

.param-item {
    text-align: center;
}

.param-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.param-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Services */
.model-services {
    margin-bottom: 30px;
}

.model-services h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tag {
    background: var(--bg-light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.service-tag.included {
    background: rgba(233, 69, 96, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Pricing */
.model-pricing {
    background: var(--primary-color);
    padding: 25px;
    border-radius: var(--radius-lg);
    color: #fff;
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.price-item {
    text-align: center;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
}

.price-duration {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 22px;
    font-weight: 700;
}

/* Contact Button */
.model-contact {
    display: block;
    width: 100%;
    padding: 18px;
    background: var(--accent-color);
    color: #fff;
    text-align: center;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.model-contact:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== Related Models ===== */
.related-section {
    padding: 50px 0;
    background: var(--bg-light);
}

.related-section .section-title {
    margin-bottom: 30px;
}

/* ===== Info Pages (Legal) ===== */
.info-page {
    padding: 60px 0;
}

.info-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-meta {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.info-content h2 {
    font-size: 24px;
    margin: 35px 0 15px;
    color: var(--primary-color);
}

.info-content h3 {
    font-size: 20px;
    margin: 25px 0 12px;
    color: var(--primary-color);
}

.info-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.info-content ul,
.info-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.info-content li {
    margin-bottom: 10px;
    line-height: 1.7;
    list-style: disc;
}

.info-content ol li {
    list-style: decimal;
}

.info-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* ===== 404 Page ===== */
.error-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.error-content h1 {
    font-size: 120px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 20px;
}

.error-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.error-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.error-btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--accent-color);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}

.error-btn:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== Breadcrumbs ===== */
.breadcrumbs {
    padding: 15px 0;
    background: var(--bg-light);
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--text-muted);
}

.breadcrumbs a:hover {
    color: var(--accent-color);
}

.breadcrumbs span {
    color: var(--text-color);
}

.breadcrumbs .separator {
    margin: 0 10px;
    color: var(--text-muted);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .model-layout {
        grid-template-columns: 350px 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        padding: 20px;
        display: none;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        width: 100%;
    }
    
    .main-nav a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        margin: 0;
        padding-left: 20px;
        box-shadow: none;
        background: transparent;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-menu a {
        color: rgba(255,255,255,0.7);
        padding: 10px 0;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .model-layout {
        grid-template-columns: 1fr;
    }
    
    .model-gallery {
        position: static;
    }
    
    .model-params-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-inner {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .error-content h1 {
        font-size: 80px;
    }
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.hidden { display: none; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}


/* ===== About Page ===== */
.about-page .lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.about-section {
    margin-bottom: 40px;
}

.about-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== Contact Page ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .lead {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    color: var(--accent-color);
}

.contact-text h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-text a,
.contact-text p {
    color: var(--text-light);
    font-size: 15px;
}

.contact-text a:hover {
    color: var(--accent-color);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form-wrapper h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--accent-hover);
}

/* Responsive */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===== Legal/Info Pages ===== */
.legal-page .info-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-page .info-meta {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.legal-content h2 {
    font-size: 24px;
    margin: 40px 0 15px;
    color: var(--primary-color);
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    font-size: 20px;
    margin: 30px 0 12px;
    color: var(--primary-color);
}

.legal-content h4 {
    font-size: 18px;
    margin: 25px 0 10px;
    color: var(--primary-color);
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.legal-content ul,
.legal-content ol {
    margin: 15px 0 20px 0;
    padding-left: 25px;
}

.legal-content ul li {
    list-style: disc;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content ol li {
    list-style: decimal;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content ul ul,
.legal-content ol ol {
    margin: 10px 0 10px 20px;
}

.legal-content strong {
    font-weight: 600;
    color: var(--primary-color);
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--accent-hover);
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.legal-content table th,
.legal-content table td {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.legal-content table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.legal-content table tr:nth-child(even) {
    background: var(--bg-light);
}

.legal-content blockquote {
    margin: 20px 0;
    padding: 20px 25px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    font-style: italic;
}

.legal-content hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 30px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page h1 {
        font-size: 28px;
    }
    
    .legal-content h2 {
        font-size: 20px;
    }
    
    .legal-content h3 {
        font-size: 18px;
    }
    
    .legal-content table {
        font-size: 14px;
    }
    
    .legal-content table th,
    .legal-content table td {
        padding: 8px 10px;
    }
}