
/* ------------------------------------------------------------------- */
/* GENERAL SETUP (Adjust these to match your site's global styles)     */
/* ------------------------------------------------------------------- */
:root {
    --cpeepstds-color-primary: #1a1a1a; /* Black for text/buttons */
    --cpeepstds-color-secondary: #777777; /* Grey for light text */
    --cpeepstds-color-background: #ffffff; /* White background */
    --cpeepstds-font-heading: 'Poppins', sans-serif;
    --cpeepstds-font-body: 'Inter', sans-serif;
    --cpeepstds-spacing-large: 60px;
    --cpeepstds-spacing-xl: 100px;
}

.cpeepstds-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Base fade-in animation for all elements */
.cpeepstds-fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: cpeepstds-fadeInUp 1s forwards;
}

@keyframes cpeepstds-fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cpeepstds-delay-1 { animation-delay: 0.1s; }
.cpeepstds-delay-2 { animation-delay: 0.2s; }
.cpeepstds-delay-3 { animation-delay: 0.3s; }
.cpeepstds-delay-4 { animation-delay: 0.4s; }

/* ------------------------------------------------------------------- */
/* ABOUT HERO MINIMAL STYLES (Focus Area)                              */
/* ------------------------------------------------------------------- */

.cpeepstds-about-hero-minimal {
    /* Pushes content down, compensating for a fixed or tall navbar */
    padding-top: var(--cpeepstds-spacing-xl); 
    padding-bottom: var(--cpeepstds-spacing-xl);
    background: var(--cpeepstds-color-background);
    color: var(--cpeepstds-color-primary);
}

.cpeepstds-about-container {
    display: flex;
    flex-direction: column;
}

/* Subtitle/Category Tag */
.cpeepstds-about-hero-minimal .cpeepstds-subtitle {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cpeepstds-color-secondary);
    margin-bottom: 20px;
}

/* Main Title */
.cpeepstds-about-hero-minimal .cpeepstds-title {
    font-family: var(--cpeepstds-font-heading);
    font-size: 4rem; /* Large size for impact */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 50px;
    text-align: left;
}

.cpeepstds-about-hero-minimal .cpeepstds-title strong {
    color: var(--cpeepstds-color-primary); /* Ensure bolding stands out */
}

/* Content Layout (Main Story + Stats/Actions) */
.cpeepstds-content-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start; /* Aligns content blocks to the top */
}

/* Main Story Text Block */
.cpeepstds-main-story {
    flex: 2; /* Takes up more space */
    max-width: 650px; 
    font-size: 1.15rem;
    line-height: 1.7;
}

.cpeepstds-main-story p {
    margin-bottom: 25px;
}

.cpeepstds-mission-statement {
    font-weight: 600;
    border-left: 3px solid var(--cpeepstds-color-primary);
    padding-left: 20px;
    margin-top: 30px;
    /*font-style: italic;*/
}

/* Stats and Actions Sidebar */
.cpeepstds-stats-and-actions {
    flex: 1; /* Takes remaining space */
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 10px; /* Slight offset to align with text */
}

.cpeepstds-stat-item {
    display: flex;
    flex-direction: column;
}

.cpeepstds-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cpeepstds-color-primary);
    line-height: 1;
}

.cpeepstds-stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--cpeepstds-color-secondary);
    letter-spacing: 1px;
}

/* Action Buttons */
.cpeepstds-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    width: 100%; /* Match container width */
}

.cpeepstds-btn {
    padding: 12px 25px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    font-size: 1rem;
}

.cpeepstds-btn-primary-dark {
    background-color: var(--cpeepstds-color-primary);
    color: var(--cpeepstds-color-background);
    border: 2px solid var(--cpeepstds-color-primary);
}

.cpeepstds-btn-primary-dark:hover {
    background-color: var(--cpeepstds-color-secondary);
    border-color: var(--cpeepstds-color-secondary);
}

.cpeepstds-btn-secondary-light {
    background-color: transparent;
    color: var(--cpeepstds-color-primary);
    border: 2px solid var(--cpeepstds-color-primary);
}

.cpeepstds-btn-secondary-light:hover {
    background-color: var(--cpeepstds-color-primary);
    color: var(--cpeepstds-color-background);
}


/* ------------------------------------------------------------------- */
/* RESPONSIVENESS (Mobile First)                                       */
/* ------------------------------------------------------------------- */

/* Tablet and below */
@media (max-width: 992px) {
    .cpeepstds-about-hero-minimal .cpeepstds-title {
        font-size: 3rem; 
        margin-bottom: 30px;
    }

    .cpeepstds-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .cpeepstds-main-story {
        max-width: 100%;
        font-size: 1.1rem;
    }
    
    .cpeepstds-stats-and-actions {
        flex-direction: row; /* Stack stats horizontally */
        flex-wrap: wrap;
        gap: 40px;
        padding-top: 0;
    }
    
    .cpeepstds-stat-item {
        min-width: 150px;
    }
    
    .cpeepstds-action-buttons {
        width: 100%;
        margin-top: 0;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .cpeepstds-about-hero-minimal {
        padding-top: var(--cpeepstds-spacing-large); 
        padding-bottom: var(--cpeepstds-spacing-large);
    }
    
    .cpeepstds-about-hero-minimal .cpeepstds-title {
        font-size: 2.2rem;
    }
    
    .cpeepstds-stats-and-actions {
        flex-direction: column; /* Stack stats vertically again on small screens */
        gap: 20px;
    }
}
