/* ============================================
   OLAYEMI FOUNDATION - REDESIGNED HOME PAGE
   Modern & Classic Design
   Colors: Gold #D2AE6D, Navy Blue #004790
   Fonts: Cinzel (headings), DM Sans (body)
============================================ */

/* CSS Variables */
:root {
    --gold: #D2AE6D;
    --navy: #004790;
    --navy-dark: #003366;
    --navy-light: #2A6BB0;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E9ECEF;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --success: #28A745;
    --warning: #FFC107;
    --error: #DC3545;
    
    --heading-font: 'Cinzel', serif;
    --body-font: 'DM Sans', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.2);
    --shadow-gold: 0 4px 20px rgba(210, 174, 109, 0.3);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--off-white);
    overflow-x: hidden;
}

.landing-redesigned {
    overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

.highlight {
    color: var(--gold);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    opacity: 0.3;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background: #C19A5B;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

.icon-arrow {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    padding: 0 1rem;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.section-subtitle::before {
    left: -40px;
}

.section-subtitle::after {
    right: -40px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* =========================
   HERO SLIDESHOW
========================= */
.hero-slideshow {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.slideshow-container {
    height: 100%;
    position: relative;
}

.slides-wrapper {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomIn 20s linear infinite;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    padding-top: 0;
}

.slide-badge {
    display: inline-block;
    background: rgba(210, 174, 109, 0.2);
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(210, 174, 109, 0.3);
}

.slide-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.slide-description {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.slide-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Slideshow Navigation */
.slideshow-nav {
    position: absolute;
    bottom: 40%;
    width: 100%;
    z-index: 10;
}

.nav-btn {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(210, 174, 109, 0.3);
    border-color: var(--gold);
    transform: scale(1.1);
}

.nav-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
}

.nav-btn.prev {
    left: 2rem;
}

.nav-btn.next {
    right: 2rem;
}

/* Indicators */
.slide-indicators {
    position: absolute;
    bottom: 8rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.indicator.active {
    background: var(--gold);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(210, 174, 109, 0.7);
}

/* Progress Bar */
.progress-container {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gold);
    width: 0%;
    transition: width 0.3s ease;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255,255,255,0.7);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* =========================
   IMPACT METRICS
========================= */
.impact-metrics {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.impact-metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--navy));
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.metric-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
}

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.metric-value {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-label {
    font-size: 1.125rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.metric-icon {
    font-size: 2.5rem;
    opacity: 0.2;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

/* =========================
   MISSION & VALUES
========================= */
.mission-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-statement {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.mission-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.mission-text p {
    font-size: 1.125rem;
    line-height: 1.8;
}

.mission-image {
    position: relative;
}

.image-frame {
    width: 100%;
    height: 300px; /* adjust height as needed */
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    background-size: cover;       /* make the image cover the frame */
    background-position: center;  /* center the image */
    background-repeat: no-repeat;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* optional: subtle shadow */
}

.frame-decoration {
    position: absolute;
    top: 15px;       /* padding from frame edges */
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--gold);
    border-radius: var(--radius-md);
    pointer-events: none; /* so it doesn’t block clicks */
    box-sizing: border-box;
}


/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--navy);
    color: var(--gold);
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.value-card h4 {
    margin-bottom: 1rem;
}

.value-pillar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(0, 71, 144, 0.1);
    overflow: hidden;
}

.pillar-fill {
    background: var(--gold);
    width: 100%;
    transition: height 1s ease;
}

/* =========================
   PROGRAMS SHOWCASE
========================= */
.programs-showcase {
    padding: 6rem 0;
    background: var(--white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.program-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.program-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.program-icon {
    width: 56px;
    height: 56px;
    background: var(--navy);
    color: var(--gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-icon svg {
    width: 28px;
    height: 28px;
}

.program-tag {
    background: rgba(210, 174, 109, 0.1);
    color: var(--gold);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.program-card h3 {
    margin-bottom: 1rem;
}

.program-features {
    list-style: none;
    margin: 1.5rem 0;
}

.program-features li {
    padding: 0.5rem 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 1.5rem;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.program-link:hover {
    color: var(--gold);
    gap: 0.75rem;
}

/* =========================
   PROCESS TIMELINE
========================= */
.process-timeline {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
}

.process-timeline .section-title,
.process-timeline .section-description {
    color: var(--white);
}

.process-timeline .section-subtitle {
    color: var(--gold);
}

.process-timeline .section-subtitle::before,
.process-timeline .section-subtitle::after {
    background: var(--gold);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,0.1);
}

.timeline-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    width: 100%; /* Ensure full width */
}

.timeline-step:nth-child(odd) {
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 2rem;
    z-index: 1;
}

.step-content {
    flex: 1;
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    min-width: 0; /* Prevents flex items from overflowing */
}

.step-content h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: rgba(255,255,255,0.8);
}

.step-line {
    position: absolute;
    left: 50%;
    width: 30px;
    height: 2px;
    background: var(--gold);
    z-index: 1;
}

.timeline-step:nth-child(even) .step-line {
    left: calc(50% - 30px);
}

.timeline-step:nth-child(odd) .step-line {
    left: calc(50% + 30px);
}

/* =========================
   STATUS CHECK
========================= */
.status-check {
    padding: 6rem 0;
    background: var(--white);
}

.status-card {
    background: linear-gradient(135deg, var(--off-white) 0%, #E9ECEF 100%);
    border-radius: var(--radius-xl);
    padding: 4rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.status-icon {
    width: 120px;
    height: 120px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon svg {
    width: 48px;
    height: 48px;
}

.status-content h2 {
    margin-bottom: 1rem;
}

.status-features {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--medium-gray);
}

.feature svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

/* =========================
   IMPACT STORIES
========================= */
.impact-stories {
    padding: 6rem 0;
    background: var(--off-white);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.story-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.story-image.placeholder {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.story-content {
    padding: 2rem;
}

.story-category {
    display: inline-block;
    background: rgba(210, 174, 109, 0.1);
    color: var(--gold);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.story-card p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.story-meta {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.story-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.story-link:hover {
    color: var(--gold);
    gap: 0.75rem;
}

/* =========================
   TRANSPARENCY COMMITMENT
========================= */
.transparency-commitment {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.commitment-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-xl);
    padding: 4rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.commitment-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.commitment-header svg {
    width: 48px;
    height: 48px;
    color: var(--gold);
}

.commitment-badge {
    display: inline-block;
    background: rgba(210, 174, 109, 0.2);
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(210, 174, 109, 0.3);
}

.commitment-card h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.commitment-card p {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.transparency-metrics {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.transparency-metrics .metric {
    text-align: center;
}

.transparency-metrics .metric-value {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.transparency-metrics .metric-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================
   FINAL CTA
========================= */
.final-cta {
    padding: 6rem 0;
    background: var(--white);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cta-card {
    background: var(--off-white);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.cta-card:hover::before {
    transform: scaleX(1);
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-card h3 {
    margin-bottom: 1rem;
}

.cta-card p {
    margin-bottom: 2rem;
    color: var(--medium-gray);
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    
    .slide-title {
        font-size: 3rem;
    }
    
    .mission-statement {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline::before {
        left: 30px; /* Move vertical line to the left */
        transform: none;
    }

    .timeline-step {
        flex-direction: row !important; /* Force icons to the left */
        align-items: flex-start;
        gap: 0;
    }
    .step-number {
        margin: 0 1rem 0 0; /* Adjust spacing for left-aligned vertical line */
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        z-index: 2;
    }

    .step-content {
        margin-left: 0.5rem;
        padding: 1.5rem; /* Slightly less padding on mobile */
        width: calc(100% - 70px); /* Ensure it fills remaining space */
    }

    .step-line {
        display: none;
    }
    
    
    .status-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .status-icon {
        margin: 0 auto;
    }
    
    .status-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-step {
        margin-bottom: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .nav-btn {
        width: 48px;
        height: 48px;
    }
    
    .nav-btn.prev {
        left: 1rem;
    }
    
    .nav-btn.next {
        right: 1rem;
    }
    
    .status-card {
        padding: 2rem;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .timeline::before {
        left: 20px; /* Shift line further left on tiny screens */
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 15px;
    }
    
    .step-content {
        padding: 1.25rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
    }
}

/* Print Styles */
@media print {
    .hero-slideshow,
    .slideshow-nav,
    .scroll-indicator,
    .section-cta {
        display: none;
    }
    
    .landing-redesigned {
        padding-top: 0;
    }
    
    section {
        page-break-inside: avoid;
        margin-bottom: 2rem;
    }
    
    .btn {
        border: 1px solid var(--dark-gray);
        color: var(--dark-gray);
        background: none;
    }
}

.grad-icon {
  color: #D4AF37;
  fill: currentColor; /* This tells the SVG to inherit the 'color' value */
}


/* Default positioning (desktop) */
.slideshow-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    .slideshow-nav {
        top: 80%; /* moves the nav slightly down */
    }

    .slideshow-nav .nav-btn {
        width: 40px; /* optional: adjust button size for mobile */
        height: 40px;
    }

    .slideshow-nav .grad-icon {
        width: 20px;
        height: 20px;
    }
}
