/* ========================================
   BIO PAGE STYLES
   ======================================== */

/* Bio Grid Layout */
.bio-section {
    padding: 100px 0 4rem;
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    margin: 0 0.5rem;
}

/* Images Section - Centered */
.bio-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.main-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 3/4;
    border-radius: 16px;
    overflow: hidden;
    background: var(--card-bg);
    margin: 0 auto;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Thumbnail Gallery - Centered under main image */
.thumbnail-gallery {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    width: 100%;
}

.thumb-btn {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid transparent;
    cursor: pointer;
    padding: 0;
    background: var(--card-bg);
    transition: border-color 0.2s;
    flex-shrink: 0;
}

.thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-btn.active,
.thumb-btn:hover {
    border-color: var(--primary);
}

/* Bio Info - Centered */
.bio-info {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.bio-header {
    margin-bottom: 2rem;
}

.bio-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Call Section */
.call-section {
    margin: 2rem 0;
}

.btn-call-now {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 60px;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-call-now:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 51, 102, 0.4);
}

.phone-icon {
    font-size: 2rem;
}

.call-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.call-text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.call-number {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.call-note {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* About Section */
.bio-about {
    margin: 2rem 0;
    text-align: left;
}

.bio-about h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.bio-about p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Specialties */
.bio-specialties {
    margin: 2rem 0;
}

.bio-specialties h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.spec-tag {
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Rates Section */
.bio-rates {
    margin: 2rem 0;
}

.bio-rates h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.rates-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.rate-item:last-of-type {
    border-bottom: none;
}

.rate-item.highlight {
    background: rgba(255, 51, 102, 0.1);
    margin: 0.5rem -1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--primary);
}

.rate-name {
    font-weight: 600;
}

.rate-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.rate-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Center rate details */
.rate-details {
    text-align: center !important;
}

.rate-details p {
    text-align: center;
}
.rate-details p {
    margin-bottom: 0.5rem;
}

.billing-note {
    color: var(--text);
    font-weight: 600;
}

.age-note {
    color: var(--primary);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Related Models Section */
.related-section {
    margin-top: 4rem;
    text-align: center;
}

.related-section h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.related-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.related-card h3 {
    padding: 1rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.related-tag {
    display: block;
    padding: 0 1rem 1rem;
    font-size: 0.8rem;
    color: var(--primary);
}

.redhead-sayings {
    margin: 2rem 0;
    text-align: center;
}

.redhead-sayings h2 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.redhead-sayings ul {
    list-style: none;
}

.redhead-sayings li {
    padding: 0.5rem;
    color: var(--primary);
    font-style: italic;
}

/* Desktop Layout */
@media (min-width: 1024px) {
    .bio-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
    
    .bio-images {
        position: sticky;
        top: 100px;
    }
    
    .related-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}