/* public/css/about.css - Zocdoc Inspired Styles */

:root {
    /* Color Palette (Inspired by Zocdoc, adjust as needed) */
    --color-primary: #4361ee; /* Existing primary blue */
    --color-primary-light: #e0e7ff; /* Light blue bg */
    --color-secondary: #f97316; /* Orange accent */
    --color-secondary-light: #ffedd5; /* Light orange bg */
    --color-accent: #10b981;   /* Green accent */
    --color-accent-light: #d1fae5;  /* Light green bg */
    --color-dark: #1f2937;     /* Dark text/bg */
    --color-light: #f9fafb;    /* Light neutral bg */
    --color-neutral: #ffffff;  /* White bg */
    --color-neutral-alt: #f3f4f6; /* Slightly different neutral for variety */
    --color-light-alt: #ecfdf5;   /* Alternative light green */
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-text-white: #ffffff;
    --color-border: #e5e7eb;

    /* Typography */
 
    --font-primary: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Helvetica stack for headings */
    --font-secondary: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Helvetica stack for body */

    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-section: 5rem; /* Vertical padding for sections */

    /* Border Radius */
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;

    /* Shadows */
     --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body.about-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    color: #ffffff;
    line-height: 1.6;
    background-color: #000000; /* Premium black background */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Main Content Area */
main.about-page {
    width: 100%;
}

/* Section Base Styles */
.about-section {
    padding: var(--spacing-section) var(--spacing-lg);
    width: 100%;
    box-sizing: border-box;
    position: relative; /* For potential pseudo-elements or absolute positioning */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-md); /* Add horizontal padding within wrapper */
    position: relative; /* Ensure content is above pseudo-elements */
    z-index: 2;
}

.content-wrapper.text-center {
    text-align: center;
}

h1, h2, h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-weight: 300; /* Premium light weight */
    color: #ffffff;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em; /* Subtle tightening */
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.25;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600; /* Slightly lighter than h1/h2 */
    line-height: 1.3;
}

p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    margin-bottom: var(--spacing-lg);
}

p.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #d6d6d6;
    max-width: 650px;
    margin: 0 auto var(--spacing-xl) auto;
}

p.vision-statement {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 600;
    color: #ffffff;
    margin-top: var(--spacing-xl);
    margin-bottom: 0;
}



/* --- Section Specific Styles & Color Blocking --- */

/* 1. Hero Section */
.hero-section {
    background-color: #000000;
    text-align: center;
    padding-bottom: calc(var(--spacing-section) + 2rem); /* Extra bottom padding */
    overflow: hidden; /* Contain potential decorative elements */
}

.hero-section h1 {
    color: #ffffff;
    margin-bottom: var(--spacing-sm);
}

/* 2. Problem Section */
.problem-section {
    background-color: #1a1a1a; /* Dark gray */
}

/* 3. Mission Section */
.mission-section {
    background-color: #000000;
}

.text-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* 4. Deserve Better Section */
.deserve-better-section {
    background-color: #1a1a1a;
}

/* 5. Story Section */
.story-section {
    background-color: #000000;
}

/* 6. Help Advocates Section */
.help-advocates-section {
    background-color: #1a1a1a;
}

/* 7. Vision Section */
.vision-section {
    background-color: #000000;
    text-align: center;
}

.vision-section h2 {
    margin-bottom: var(--spacing-sm);
}

.vision-section .subtitle {
    max-width: 700px;
    margin-bottom: var(--spacing-xl);
}



/* 8. Founders Section */
.founders-section {
    background-color: #1a1a1a;
    background-image: none !important;
    min-height: auto;
    display: block;
}

.founders-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.founders-section .subtitle {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    max-width: 900px;
    margin: 0 auto;
}

.founder-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--spacing-xl);
    align-items: start;
    background-color: #222222;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid #333333;
    box-shadow: var(--shadow-md);
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 3px solid var(--color-primary-light);
}

.founder-content h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: var(--spacing-sm);
}

.founder-title {
    font-size: 1rem;
    color: #999999;
    font-weight: 600;
    margin-bottom: var(--spacing-lg) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.founder-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: var(--spacing-md);
}

.founder-content p:last-child {
    margin-bottom: 0;
}

/* 9. Join Us (CTA) Section */
.join-us-section {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    background-image: none !important;
    min-height: auto;
    display: block;
}

.join-us-section h2 {
    color: #ffffff;
    margin-bottom: var(--spacing-sm);
}

.join-us-section > .content-wrapper > p {
     color: rgba(255, 255, 255, 0.8);
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
     margin-bottom: var(--spacing-xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-2xl);
}

/* Button Styles (Shared) */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-full);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}
.btn-primary:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
}

.btn-secondary {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}
.btn-secondary:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
}

.btn-outline-light {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}
.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: var(--spacing-2xl) auto;
    max-width: 400px;
}

.advocate-cta h3 {
    color: var(--color-text-white);
    margin-bottom: var(--spacing-sm);
}

.advocate-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-lg);
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.2rem; }
    p { font-size: 1rem; }

    .about-section {
        padding: var(--spacing-xl) var(--spacing-md); /* Reduced padding */
        padding-top: 4rem;
    }

    .text-content {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .hero-section {
        padding-bottom: var(--spacing-xl);
        min-height: 60vh;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .founder-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--spacing-lg);
        gap: var(--spacing-lg);
        background-color: #222222;
        border: 1px solid #333333;
    }

    .founder-image {
        max-width: 150px;
        margin: 0 auto;
    }

    .founder-image img {
        height: 150px;
        border-width: 2px;
        border-color: #333333;
    }

    .founder-content h3 {
        font-size: 1.25rem;
        text-align: left;
    }

    .founder-title {
        font-size: 0.875rem;
        margin-bottom: var(--spacing-md) !important;
    }

    .founder-content p {
        font-size: 0.9rem;
        text-align: left;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 80%;
        max-width: 300px;
        text-align: center;
    }

     .vision-section .subtitle {
         max-width: 90%;
     }

     .about-section {
         min-height: 60vh;
     }
} 