/* about.css - About Us Page */
/* Refreshed with Green & Nature-Inspired Palette */

:root {
    --cream: #f6faf4;
    --dark: #1a2e1a;
    --primary: #2d6a4f;
    --primary-light: #40916c;
    --taupe: #52796f;
    --light: #e9f5e9;
    --sage: #9aab8e;
    --mist: #cbd8d4;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Jost', sans-serif;
}

/* Page Body Background */
body.about-page {
    background-color: #eef4ea;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.about-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #e2f0df 0%, #d0e8ca 100%);
    text-align: center;
    position: relative;
}

.about-header-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 300;
    font-family: var(--font-serif);
    color: var(--dark);
}

.about-header-content h1 span {
    color: var(--primary);
    font-style: italic;
}

.about-header-content p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    color: var(--taupe);
    font-family: var(--font-sans);
}

/* ============================================
   STORY SECTION
   ============================================ */
.story-section {
    padding: 5rem 0;
    background: var(--cream);
}

.story-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.story-content .lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
}

.story-content p {
    margin-bottom: 1.25rem;
    color: var(--taupe);
    line-height: 1.7;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(45, 106, 79, 0.15);
}

.stat-item {
    text-align: left;
}

.stat-item .stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary);
    line-height: 1.2;
}

.stat-item .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--taupe);
}

.story-image {
    position: relative;
    border: 0.5px solid rgba(26, 46, 26, 0.1);
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: 1.5rem;
    right: -1rem;
    background: var(--dark);
    color: var(--cream);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ============================================
   MISSION & VISION
   ============================================ */
.mission-vision {
    padding: 5rem 0;
    background: #eef4ea;
}

.mission-card, .vision-card {
    background: var(--cream);
    padding: 2.5rem;
    text-align: center;
    border: 0.5px solid rgba(26, 46, 26, 0.08);
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 28px rgba(0,0,0,0.05);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(45, 106, 79, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.mission-card h3, .vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: var(--font-serif);
}

.mission-card p, .vision-card p {
    color: var(--taupe);
    line-height: 1.7;
}

/* ============================================
   CORE VALUES SECTION
   ============================================ */
.values-section {
    padding: 5rem 0;
    background: var(--cream);
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--taupe);
    font-size: 1rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: #eef4ea;
    transition: all 0.3s ease;
    border: 0.5px solid rgba(26, 46, 26, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    background: var(--cream);
    border-color: var(--primary);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(45, 106, 79, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    border-radius: 0;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.value-card h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-family: var(--font-sans);
    letter-spacing: 0.05em;
}

.value-card p {
    font-size: 0.8rem;
    color: var(--taupe);
    line-height: 1.6;
}

/* ============================================
   FOUNDER DETAIL SECTION
   ============================================ */
.founder-detail {
    padding: 5rem 0;
    background: #eef4ea;
}

.founder-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.founder-image-large {
    position: relative;
    overflow: hidden;
    border: 0.5px solid rgba(26, 46, 26, 0.1);
}

.founder-image-large img {
    width: 100%;
    height: auto;
    display: block;
}

.founder-social-links {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    background: rgba(26, 46, 26, 0.8);
    padding: 0.75rem;
}

.founder-social-links a {
    width: 36px;
    height: 36px;
    background: var(--cream);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.founder-social-links a:hover {
    background: var(--primary);
    color: var(--cream);
    transform: translateY(-2px);
}

.founder-info {
    padding: 1rem 0;
}

.founder-tag {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: var(--font-sans);
}

.founder-info h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.5rem;
}

.founder-qualification {
    font-size: 0.85rem;
    color: var(--taupe);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(26, 46, 26, 0.1);
}

.founder-info p {
    margin-bottom: 1rem;
    color: var(--taupe);
    line-height: 1.7;
}

.founder-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(26, 46, 26, 0.08);
    border-bottom: 1px solid rgba(26, 46, 26, 0.08);
}

.founder-stats div {
    text-align: left;
}

.founder-stats .number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary);
}

.founder-stats span:not(.number) {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: var(--taupe);
}

.founder-info .btn-primary {
    background: var(--dark);
    color: var(--cream);
    padding: 0.8rem 2rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.founder-info .btn-primary:hover {
    background: var(--primary);
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    padding: 5rem 0;
    background: var(--cream);
}

.team-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #eef4ea;
    transition: all 0.3s ease;
    border: 0.5px solid rgba(26, 46, 26, 0.05);
}

.team-card:hover {
    transform: translateY(-5px);
    background: var(--cream);
    border-color: var(--primary);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.25rem;
    border: 2px solid var(--primary);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-family: var(--font-serif);
}

.team-title {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.team-bio {
    font-size: 0.75rem;
    color: var(--taupe);
}

/* ============================================
   MILESTONES TIMELINE
   ============================================ */
.milestones-section {
    padding: 5rem 0;
    background: #eef4ea;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
}

.timeline-item.left {
    padding-right: calc(50% + 2rem);
}

.timeline-item.right {
    padding-left: calc(50% + 2rem);
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    z-index: 2;
}

.timeline-content {
    background: var(--cream);
    padding: 1.5rem;
    border: 0.5px solid rgba(26, 46, 26, 0.08);
    transition: all 0.3s;
}

.timeline-content:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.timeline-year {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.8rem;
    color: var(--taupe);
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .founder-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-image-large {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item.left,
    .timeline-item.right {
        padding-left: 50px;
        padding-right: 0;
    }
    
    .timeline-dot {
        left: 20px;
        transform: translateX(0);
    }
    
    .timeline-content {
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    .about-header {
        padding: 110px 0 40px;
    }
    
    .stats-row {
        gap: 1rem;
        justify-content: space-between;
    }
    
    .stat-item .stat-number {
        font-size: 1.5rem;
    }
    
    .mission-card, .vision-card {
        padding: 1.5rem;
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .founder-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .founder-stats div {
        flex: 1;
        min-width: 80px;
    }
    
    .team-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-header-content p {
        font-size: 0.85rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-item .stat-number {
        font-size: 1.8rem;
    }
    
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        position: static;
        margin-top: 1rem;
        display: inline-block;
        right: auto;
        bottom: auto;
    }
    
    .story-image {
        margin-top: 2rem;
    }
    
    .timeline-content {
        padding: 1rem;
    }
    
    .founder-info h2 {
        font-size: 1.8rem;
    }
}