/* ===== ABOUT PAGE STYLES ===== */

:root {
    --cream: #F7EFE1;
    --cream-dark: #EFE1C8;
    --ink: #2B2320;
    --ink-soft: #5B4E44;
    --rust: #B5502D;
    --rust-dark: #8F3D20;
    --gold: #D9A441;
    --green: #47614A;
    --board: #2E3B2E;
    --board-light: #3C4C3C;
    --white-ghost: #F8F8FF;
    --display: 'Fraunces', serif;
    --body: 'Manrope', sans-serif;
    --chalk: 'Caveat', cursive;
    --radius: 22px;
    --radius-sm: 12px;
    --shadow: 0 18px 40px -18px rgba(43,35,32,0.35);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--display);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.amp {
    color: var(--gold);
    font-weight: 700;
}

ul {
    list-style: none;
}

/* ===== HEADER STYLES USING STYLE.CSS ===== */

/* ===== HERO SECTION ===== */
.about-hero {
    margin-top: 70px;
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, var(--board) 0%, var(--board-light) 100%);
    text-align: center;
    color: var(--cream);
}

.hero-content h1 {
    font-family: var(--display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-family: var(--body);
    font-size: 16px;
    opacity: 0.9;
}

/* ===== ABOUT PAGE ===== */
.about-page {
    padding: 60px 20px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== SECTION STYLES ===== */
.content-section {
    margin-bottom: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: var(--display);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 600;
    color: var(--board);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.section-header h2 i {
    color: var(--gold);
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin: 0 auto;
    border-radius: 2px;
}

/* ===== STORY CONTENT ===== */
.story-content {
    background: var(--white-ghost);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.story-text {
    font-family: var(--body);
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.8;
}

.lead-paragraph {
    font-size: 18px;
    color: var(--board);
    font-weight: 500;
    margin-bottom: 24px;
    padding: 24px;
    background: var(--cream-dark);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm);
}

.story-text p {
    margin-bottom: 16px;
}

/* ===== VALUES SECTION ===== */
.values-section {
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.value-card {
    background: var(--white-ghost);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--board);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 28px;
    color: var(--gold);
}

.value-card h3 {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 600;
    color: var(--board);
    margin-bottom: 12px;
}

.value-card p {
    font-family: var(--body);
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-item {
    background: var(--white-ghost);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.feature-number {
    font-family: var(--chalk);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 8px;
}

.feature-item h3 {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 600;
    color: var(--board);
    margin-bottom: 8px;
}

.feature-item p {
    font-family: var(--body);
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
}

/* ===== TEAM SECTION ===== */
.team-section {
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.team-member {
    background: var(--white-ghost);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-4px);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: var(--board);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid var(--gold);
}

.team-avatar i {
    font-size: 32px;
    color: var(--gold);
}

.team-member h3 {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 600;
    color: var(--board);
    margin-bottom: 4px;
}

.team-role {
    font-family: var(--body);
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-bio {
    font-family: var(--body);
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    margin-bottom: 40px;
}

.cta-content {
    background: linear-gradient(135deg, var(--board) 0%, var(--board-light) 100%);
    border-radius: var(--radius);
    padding: 60px 40px;
    text-align: center;
    color: var(--cream);
    box-shadow: var(--shadow);
}

.cta-content h2 {
    font-family: var(--display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-content p {
    font-family: var(--body);
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--gold);
    color: var(--board);
    border-radius: var(--radius-sm);
    font-family: var(--body);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(217, 164, 65, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 20px 40px;
    }

    .about-page {
        padding: 40px 16px;
    }

    .story-content {
        padding: 28px 20px;
    }

    .values-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .lead-paragraph {
        padding: 16px;
        font-size: 16px;
    }
}
