/* Escorts Page Specific Styles */

/* Escorts Hero Section */
.escorts-hero {
    background: linear-gradient(135deg, var(--color-navy) 0%, rgba(16,26,43,0.9) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.escorts-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    color: var(--color-light);
    margin-bottom: 1rem;
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Filters Section */
.filters-section {
    padding: 3rem 0;
    background: var(--color-ivory);
}

.filters-content {
    text-align: center;
}

.filters-content h2 {
    color: var(--color-dark);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
}

/* Escorts Section */
.escorts-section {
    padding: 3rem 0 6rem;
    background: var(--color-ivory);
    min-height: 60vh;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-gold);
    background: transparent;
    color: var(--color-gold);
    border-radius: 25px;
    font-family: var(--font-alt);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Escort Card Buttons */
.escort-cta {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    font-family: var(--font-alt);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-dark);
    border: 2px solid var(--color-gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.btn-secondary:hover {
    background: var(--color-dark);
    color: var(--color-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 24, 24, 0.3);
}

.btn-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
}

/* Responsive Design */
/* Responsive Design */
@media (max-width: 768px) {
    .escorts-hero {
        padding: 6rem 0 3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .filters-content h2 {
        font-size: 1.5rem;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .escorts-hero {
        padding: 5rem 0 2.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .filters-content h2 {
        font-size: 1.3rem;
    }

    .filter-buttons {
        justify-content: center;
    }

    .filter-btn {
        flex: 1;
        min-width: auto;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}