/* ===========================
   O NAS PAGE STYLES
   =========================== */

/* --- About Hero --- */
.about-hero {
    background-color: #FFF5ED;
    padding: 5rem 0 4rem;
    overflow: hidden;
}

.about-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.about-hero-text {
    max-width: 520px;
}

.about-hero-text h1 {
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: 1.25rem;
}

.underline-accent {
    text-decoration: underline;
    text-decoration-color: var(--color-accent);
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
}

.about-hero-text p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Decorative shapes */
.about-hero-deco {
    position: relative;
    width: 400px;
    height: 300px;
    flex-shrink: 0;
}

.deco-yellow-circle {
    position: absolute;
    top: 20px;
    left: 120px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FBBF24;
}

.deco-green-dots {
    position: absolute;
    top: 10px;
    left: 200px;
    display: grid;
    grid-template-columns: repeat(3, 8px);
    gap: 6px;
}

.deco-green-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #34D399;
}

.deco-heart {
    position: absolute;
    top: 60px;
    right: 40px;
    width: 65px;
    height: 60px;
}

.deco-heart svg {
    width: 100%;
    height: 100%;
}

.deco-zigzag {
    position: absolute;
    bottom: 10px;
    right: 20px;
    width: 50px;
    height: 140px;
}


/* --- Team Section --- */
.team-section {
    padding: 5rem 0;
    background-color: #fff;
}

.team-title {
    font-size: 3.375rem; /* 54px */
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 4rem;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 4rem; /* 64px */
    margin-bottom: 4rem;
}

.team-member-reverse {
    flex-direction: row-reverse;
}

.member-photo {
    flex-shrink: 0;
}

.member-photo img {
    width: 343px;
    height: 343px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.member-bio {
    max-width: 809px;
    width: 100%;
}

.member-bio h3 {
    font-size: 2rem; /* 32px */
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.member-bio p {
    font-size: 1.25rem; /* 20px */
    line-height: 1.4;
    color: var(--color-text-muted);
}

.text-right {
    text-align: right;
}

/* Remove team divider since it's not in Figma */
.team-divider {
    display: none;
}


/* --- History / Timeline Section --- */
.history-section {
    padding: 5rem 0;
    background-color: #F9FAFB;
}

.history-header {
    text-align: center;
    margin-bottom: 4rem;
}

.history-header h2 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: 0.75rem;
}

.history-header p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-track {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #00016B;
    transform: translateX(-50%);
}

.tl-item {
    position: relative;
    display: flex;
    margin-bottom: 3rem;
    width: 100%;
}

.tl-item:last-child {
    margin-bottom: 0;
}

/* Left-aligned card */
.tl-left .tl-card {
    margin-right: auto;
    margin-left: 0;
    width: 42%;
}

/* Right-aligned card */
.tl-right .tl-card {
    margin-left: auto;
    margin-right: 0;
    width: 42%;
}

.tl-card {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #EAECF0;
    border-radius: 16px;
    position: relative;
}

/* Dot on the timeline track */
.tl-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 1.75rem;
    width: 16px;
    height: 16px;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.tl-year {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.tl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.tl-dot-orange { background: var(--color-accent); }
.tl-dot-purple { background: #8B5CF6; }
.tl-dot-cyan { background: var(--color-cyan); }

.tl-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.tl-card p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--color-text-muted);
}


/* --- Areas Section --- */
.areas-section {
    padding: 5rem 0;
    background-color: #fff;
}

.areas-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-text-main);
    text-align: center;
    margin-bottom: 3rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.area-card {
    background: #FAFAFA;
    padding: 2.5rem;
    border-radius: 24px;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.area-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    color: white;
}

.area-icon-cyan { background: var(--color-cyan); }
.area-icon-orange { background: var(--color-accent); }
.area-icon-purple { background: #8B5CF6; }
.area-icon-yellow { background: #FBBF24; }

.area-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.area-card p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--color-text-muted);
}


/* --- Join CTA Section --- */
.join-section {
    padding: 5rem 0;
    background: #FFB349;
}

.join-card {
    background: #FFF5ED;
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 1216px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

.join-card h2 {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.join-card > p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.join-squiggle-left {
    position: absolute;
    left: -20px;
    bottom: 30px;
    width: 60px;
    height: 60px;
}

.join-squiggle-right {
    position: absolute;
    right: -30px;
    top: 10px;
    width: 50px;
    height: 140px;
}


/* --- Transparency Section --- */
.trans-section {
    padding: 5rem 0;
    background: #fff;
}

.trans-title {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    color: var(--color-text-main);
    margin-bottom: 3rem;
}

.trans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.trans-card {
    background: #F9FAFB;
    padding: 2.5rem;
    border-radius: 16px;
}

.trans-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    color: white;
}

.trans-icon-cyan { background: var(--color-cyan); }
.trans-icon-orange { background: var(--color-accent); }

.trans-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.trans-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.trans-card ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin-top: 0.75rem;
}

.trans-card ul li {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.trans-note {
    font-size: 0.8125rem;
    margin-top: 1.5rem;
    color: var(--color-text-muted);
    font-style: italic;
}


/* --- Responsive --- */
@media (max-width: 768px) {
    .about-hero-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .about-hero-deco {
        display: none;
    }
    
    .team-member,
    .team-member-reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .team-member-reverse .member-bio {
        text-align: center;
    }
    
    .tl-left .tl-card,
    .tl-right .tl-card {
        width: 85%;
        margin-left: auto;
    }
    
    .timeline-track {
        left: 20px;
    }
    
    .tl-item::after {
        left: 20px;
    }
    
    .areas-grid,
    .trans-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .about-hero-text h1 {
        font-size: 2.25rem;
    }
    
    .member-photo img {
        width: 180px;
        height: 180px;
    }
    
    .join-card {
        padding: 2.5rem 1.5rem;
    }
}
