/* about.css - Specific Styles for the About Page */

/* --- VIDEO HERO --- */
.hero { 
    position: relative; 
    height: 85vh; 
    width: 100%; 
    overflow: hidden; 
    display: flex; 
    align-items: flex-end; 
    padding: 80px 5%; 
    background: #000; 
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Dark gradient overlay so text remains readable */
.hero::after { 
    content: ''; 
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; 
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%); 
    z-index: 2; 
}

.hero-content { 
    position: relative; 
    z-index: 3; 
    width: 100%; 
    max-width: 1000px; 
}

/* Adjusting the H1 for the longer About title */
.about-title {
    font-size: 65px !important;
    line-height: 1 !important;
    text-transform: none !important;
}

/* --- BIO SPLIT SECTION (True 6-Col / 6-Col Grid) --- */
.bio-split {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Exact 50/50 split */
    gap: 80px; 
    align-items: center; /* Vertically centers the text with the image */
    max-width: 1200px; /* Wider container so the 50/50 layout breathes */
    margin: 0 auto; /* Centers the grid on the page */
}

.bio-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.bio-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Bold intro paragraph */
.bio-text p strong {
    font-weight: 700;
}

/* --- SPLIT ROW LAYOUT (For CTA Block) --- */
.no-padding { padding: 0 !important; }

.split-row { 
    display: flex; 
    width: 100%; 
    min-height: 600px; 
}

.split-content { 
    flex: 50%; 
    padding: 100px 8%; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}

.split-content .intro-support-text {
    margin-top: 0;
    text-align: left; 
}

.split-content .intro-support-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Force dark mode colors for the CTA block */
.section-dark .split-content .intro-support-text,
.section-dark .split-content .intro-support-text p {
    color: var(--white);
    opacity: 0.9;
}
.section-dark .split-content .section-title {
    color: var(--white) !important;
}

.split-image { 
    flex: 50%; 
    position: relative; 
    overflow: hidden; 
}

.split-image img { 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

/* --- ACHIEVEMENTS FLOW (CSS Columns) --- */
.achievements-flow {
    column-count: 2;
    column-gap: 80px;
    margin-top: 40px;
}

.achievement-category {
    display: block; 
    break-inside: avoid; /* Prevents splitting lists across columns */
    margin-bottom: 40px; 
}

.achievement-category h4 {
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 20px;
}

.achievement-list {
    list-style: none;
    padding: 0;
    margin-top: 0;
}

.achievement-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 15px;
    line-height: 1.4;
    color: #333;
    font-weight: 400;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
    .about-title { font-size: 50px !important; }
    .bio-split { gap: 40px; }
    .achievements-flow { column-gap: 40px; }
}

@media (max-width: 768px) {
    .about-title { font-size: 40px !important; }
    .hero { height: 65vh; }
    
    /* Stacks the 50/50 Bio on mobile */
    .bio-split { grid-template-columns: 1fr; gap: 40px; }
    .bio-image { order: -1; margin-bottom: 10px; }
    
    /* Drops achievements back to a single column */
    .achievements-flow { column-count: 1; }
    
    /* Stacks the CTA Split Row on mobile */
    .split-row { flex-direction: column; }
    .split-image { min-height: 400px; order: -1; }
}