/* Principal Consultant Up Close Page Styles */

:root {
    --warm-bg: #fdfbf7;
    --warm-accent: #e67e22;
    /* Terracotta/Warm Orange */
    --text-dark: #2c3e50;
    --text-light: #596275;
    --soft-white: #ffffff;
    --primary-blue: #0056b3;
    /* Keeping brand consistency */
}

body.up-close-page {
    background-color: var(--warm-bg);
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
}

/* Custom Navigation for this page */
.pc-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.pc-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pc-nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.pc-nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.pc-nav-links a:hover,
.pc-nav-links a.active {
    color: var(--warm-accent);
}

/* Hero Section */
.pc-hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.pc-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pc-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(253, 251, 247, 0.95) 30%, rgba(253, 251, 247, 0.4) 100%);
}

.pc-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.pc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding-left: 2rem;
}

.handwritten-intro {
    font-family: 'Montserrat', sans-serif;
    /* Fallback, ideally a script font */
    font-weight: 700;
    color: var(--warm-accent);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.pc-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.pc-hero p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.signature-img {
    height: 60px;
    opacity: 0.8;
}

/* Bio Section */
.pc-bio-section {
    padding: 6rem 0;
    background: white;
}

.bio-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.bio-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.bio-text p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-size: 1.05rem;
    color: var(--text-light);
}

.personal-touch-box {
    background: var(--warm-bg);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--warm-accent);
    margin-top: 2rem;
}

.personal-touch-box h3 {
    margin-bottom: 1rem;
    color: var(--warm-accent);
}

.family-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Book Section */
.pc-book-section {
    padding: 6rem 0;
    background: var(--warm-bg);
}

.book-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.book-cover-stage {
    position: relative;
    padding: 2rem;
}

.book-cover-img {
    width: 80%;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: rotate(-3deg);
    transition: transform 0.3s;
}

.book-cover-img:hover {
    transform: rotate(0deg) scale(1.02);
}

.book-recognition-gallery {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.gallery-item img:hover {
    opacity: 0.8;
}

/* Radio Section */
.pc-radio-section {
    padding: 6rem 0;
    background: white;
}

.radio-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.radio-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.radio-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #2c3e50;
    /* Dark background to frame contained images */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.radio-card img {
    width: 100%;
    height: 300px;
    /* Reduced height as requested */
    object-fit: contain;
    /* Ensures full image is visible */
    object-position: center;
    transition: transform 0.5s;
}

.radio-card:hover img {
    transform: scale(1.02);
    /* Subtle zoom */
}

.radio-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 10%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    /* Stronger gradient */
    color: white;
    padding: 3rem 1.5rem 1.5rem;
    text-align: left;
}

.radio-caption h3 {
    color: var(--warm-accent);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.radio-caption p {
    font-size: 1rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Footer CTA */
.pc-footer-cta {
    padding: 5rem 0;
    background: var(--text-dark);
    color: white;
    text-align: center;
}

.pc-footer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .pc-hero h1 {
        font-size: 2.5rem;
    }

    .bio-grid,
    .book-showcase,
    .radio-gallery {
        grid-template-columns: 1fr;
    }

    .pc-hero-bg::after {
        background: rgba(253, 251, 247, 0.9);
    }

    .pc-hero-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Lightbox Close Button Override - Top Right Fixed */
.lb-dataContainer .lb-close {
    position: fixed !important;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: white;
    /* Visibility against dark overlay */
    border-radius: 50%;
    opacity: 0.8;
    z-index: 10000;
    display: flex;
    /* Center the icon if it's strictly bg-image based, styling container */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, opacity 0.2s;
}

.lb-dataContainer .lb-close:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Hide the default data container positioning context if needed, but usually fixed works out of it */