/* ========================================
   Global Styles
   ======================================== */
:root {
    --text-color: #111;
    --text-muted: #444;
    --bg-light: #fff;
    --bg-gray: #f8f9fa;
    --accent: #3b82f6;
}

body {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    background: var(--bg-light);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

section {
    padding: 6rem 8%; /* unified section spacing for consistency */
}

@media (max-width: 768px) {
    section {
        padding: 4rem 6%;
    }
}

/* Subtle fade animation */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   Hero Section (unchanged alignment/colors)
   ======================================== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: url('/wp-content/uploads/2025/10/new_her0_img.jpeg') center/cover no-repeat;
    min-height: 90vh;
    padding: 0 8%;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0,0,0,0.65), rgba(0,0,0,0.35));
    z-index: 0;
}

.hero-content {
    max-width: 1200px;
    z-index: 1;
    animation: fadeUp 1.2s ease forwards;
}

.hero-title {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: bold;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

@media (min-width: 992px) {
    .hero {
        justify-content: flex-start;
        text-align: left;
        padding: 0 10%;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* ========================================
   Bio Section
   ======================================== */
.bio-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2%;
    box-sizing: border-box;
}

.bio-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 3rem 0; /* reduced from 4–6rem to sync with section rhythm */
}

.bio-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bio-image .profile-photo {
    background: url('/wp-content/uploads/2025/08/gvw-photo-scaled.jpg') center/cover no-repeat;
    width: 260px;
    height: 360px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    margin-bottom: 1.25rem; /* slightly smaller for symmetry */
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem; /* reduced slightly to match photo spacing */
}

.social-links a img {
    width: 30px;
    height: 30px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.social-links a img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.bio-content {
    max-width: 700px;
    text-align: justify;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.bio-content .section-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
	text-align: center
}

.bio-content p {
    font-size: 1.05rem; /* slightly smaller than before for hierarchy clarity */
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

@media (min-width: 992px) {
    .bio-container {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
        padding: 4rem 0; /* reduced from 6rem for better balance */
    }

    .bio-content {
        flex: 1;
        margin-left: 3rem;
    }

    .bio-content .section-title {
        text-align: left;
        
    }
}

/* ========================================
   Metrics Section (no color or layout changes)
   ======================================== */
.metrics {
    padding: 6rem 8%; /* matches global section padding */
    border-top: 1px solid #eee;
    background: black;
}

.metrics-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bg-light);
    margin: 0;
    text-align: center;
}

.metrics-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem; /* consistent gap across breakpoints */
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    align-items: stretch;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .metrics-container {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 1fr;
    }
}

@media (min-width: 1200px) {
    .metrics-container {
        grid-template-columns: repeat(6, 1fr);
    }
}


.metrics-card {
    background: black;
    color: var(--bg-light);
    padding: 2.5rem 1.5rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* ensures number stays at the top */
    align-items: center;
    text-align: center;
}

.metrics-card strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;       /* tighter so it hugs the top edge */
    margin-bottom: 0.5rem;  /* consistent spacing below number */
    color: var(--bg-light);
}

.metrics-card span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--bg-light);
    line-height: 1.4;
}


.metrics-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}


/* ========================================
   Utility & Finishing Touches
   ======================================== */
a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #2563eb;
}

hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 4rem 0;
}
