/* ========================================= */
/* ABOUT HERO SECTION                        */
/* ========================================= */
.about-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    padding-bottom: var(--space-xl);
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.about-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    animation: slowZoom 30s infinite alternate var(--ease-out);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-charcoal) 0%, rgba(31, 31, 27, 0.6) 50%, transparent 100%);
}

.about-hero-content {
    z-index: 2;
    max-width: 800px;
}

/* ========================================= */
/* CINEMATIC SHOWCASE & QUEUE                */
/* ========================================= */
.cinematic-showcase {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: var(--color-charcoal);
}

.showcase-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
    transform: scale(1);
    z-index: 1;
}

.showcase-bg.active {
    opacity: 1;
    transform: scale(1.05); /* Subtle Ken Burns */
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(31,31,27,0.9) 0%, rgba(31,31,27,0.4) 60%, rgba(31,31,27,0.2) 100%);
    z-index: 2;
}

.showcase-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 3;
    width: 40%;
    max-width: 550px;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: var(--space-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.showcase-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s var(--ease-premium);
}

.showcase-desc {
    font-size: 1.1rem;
    color: var(--color-sand);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s var(--ease-premium) 0.15s; /* Staggered */
}

.showcase-text-box.active .showcase-title,
.showcase-text-box.active .showcase-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Upcoming Images Queue (Bottom Right) */
.showcase-queue {
    position: absolute;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 4;
    display: flex;
    gap: 15px;
}
/* ========================================= */
/* LIMIT CINEMATIC SHOWCASE QUEUE            */
/* ========================================= */

/* Hide any thumbnails beyond the 2nd one */
.showcase-queue .queue-thumb:nth-child(n+5) {
    display: none;
}
.queue-thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.2);
    opacity: 0.4;
    filter: blur(2px) brightness(0.7);
    transition: all 0.5s var(--ease-premium);
    cursor: pointer;
    position: relative;
}

.queue-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.queue-thumb.active {
    opacity: 1;
    filter: blur(0) brightness(1);
    border-color: var(--color-sunlight);
    transform: scale(1.05);
}

.queue-thumb:hover:not(.active) {
    opacity: 0.7;
    filter: blur(1px) brightness(0.9);
}

/* ========================================= */
/* 3 PILLARS GLASS SECTION                   */
/* ========================================= */
.pillars-section {
    position: relative;
    overflow: hidden;
}

/* Subtle mesh gradient behind glass cards */
.pillars-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(107, 143, 113, 0.2) 0%, transparent 70%);
    top: -200px; right: -200px;
    z-index: 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

.pillar-card {
    transition: transform var(--transition-mid), background var(--transition-fast);
}

.pillar-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
}

.pillar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08); /* Subtle glass background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-md);
    color: var(--color-sunlight); /* Warm yellow icon color */
    font-size: 1.8rem; /* Controls the icon size */
    transition: all var(--transition-fast);
}

/* Optional premium hover effect */
.pillar-card:hover .pillar-icon {
    background: rgba(232, 184, 75, 0.15); /* Subtle sunlight glow on hover */
    transform: translateY(-3px);
}
.pillar-sdg {
    font-size: 0.75rem;
    color: var(--color-sunlight);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.pillar-list {
    margin-top: var(--space-md);
    padding-left: 1rem;
}

.pillar-list li {
    color: var(--color-sand-muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.pillar-list li::before {
    content: '•';
    color: var(--color-leaf);
    position: absolute;
    left: -1rem;
}

/* ========================================= */
/* SPACING FOR PROGRAMS SECTION              */
/* ========================================= */
.pillars-section .section-header {
    margin-bottom: var(--space-xl); /* Adds generous space before the cards start */
}

.pillars-section .section-header .heading-2 {
    margin-bottom: var(--space-md); /* Adds space between heading and sub-description */
}

.pillars-section .section-header .body-text {
    margin-top: var(--space-xs); /* Ensures the paragraph isn't glued to the heading */
}

/* ========================================= */
/* FOUNDERS SECTION                          */
/* ========================================= */
.founders-section {
    background-color: var(--color-sand); /* Changed from bg to Sand Beige for earthy warmth */
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.founder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.founder-img-wrap {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: var(--space-md);
    border: 4px solid var(--color-leaf); /* Changed from sand to Fresh Leaf Green for contrast */
    box-shadow: 0 15px 30px rgba(74, 59, 42, 0.15); /* Warmer, softer shadow for light bg */
}

.founder-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-premium);
}

.founder-card:hover .founder-img-wrap img {
    transform: scale(1.1);
}

.founder-title {
    color: var(--color-clay); /* Clay brown stays, looks great on sand */
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}