﻿/* ===== FOUNDER SECTION (partial) ===== */
.founder-section {
    font-family: 'Inter', sans-serif;
    background: #f9fbfd;
    padding: 3rem 1.5rem;
}

.founder-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.5rem;
}

/* left content */
.founder-content {
    flex: 1 1 50%;
    min-width: 280px;
}

.founder-badge {
    display: inline-block;
    background: #e3f0e8;
    color: #1f6e43;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.25rem 1rem;
    border-radius: 40px;
    letter-spacing: 0.3px;
    margin-bottom: 1rem;
}

.founder-content h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0b2b1e;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

    .founder-content h2 span {
        color: #2a8e5c;
    }

.founder-content .subhead {
    font-size: 1.1rem;
    color: #2d4a3b;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.founder-content .bio {
    color: #3d4f46;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.founder-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    margin-bottom: 1.8rem;
}

.founder-meta-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: #1a3b2c;
}

    .founder-meta-item i {
        color: #2a8e5c;
        font-size: 1.2rem;
        width: 1.6rem;
        text-align: center;
    }

.founder-social {
    display: flex;
    gap: 1rem;
}

    .founder-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.6rem;
        height: 2.6rem;
        border-radius: 50%;
        background: #e8f0ec;
        color: #1f6e43;
        transition: 0.2s;
        text-decoration: none;
    }

        .founder-social a:hover {
            background: #1f6e43;
            color: white;
            transform: translateY(-3px);
        }

/* right image */
.founder-image {
    flex: 1 1 40%;
    min-width: 260px;
    display: flex;
    justify-content: center;
}

    .founder-image img {
        width: 100%;
        max-width: 420px;
        border-radius: 40px 40px 40px 4px;
        box-shadow: 0 25px 40px -12px rgba(0, 40, 20, 0.25);
        object-fit: cover;
        aspect-ratio: 1/1.1;
        background: #d9e6df;
        transition: transform 0.4s ease;
    }

        .founder-image img:hover {
            transform: scale(1.01);
        }

/* ===== CARDS SECTION ===== */
.cards-section {
    max-width: 1280px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
}

.card-item {
    border-radius: 28px;
    padding: 1.8rem 1.5rem 2rem;
    box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
}

    .card-item::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -20%;
        width: 120px;
        height: 120px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        pointer-events: none;
    }

    .card-item:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 0 30px 40px -16px rgba(0, 40, 20, 0.25);
    }

.card-icon {
    font-size: 2.6rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.card-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    letter-spacing: -0.3px;
}

.card-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.85;
    flex: 1;
}

.card-tag {
    margin-top: 1.2rem;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* different colors for cards */
.card-vision {
    background: linear-gradient(145deg, #e1f0fa, #d0e6f5);
    color: #0b3b4a;
}

    .card-vision .card-icon {
        color: #1f7a8c;
    }

.card-mission {
    background: linear-gradient(145deg, #f2efe6, #ece6d8);
    color: #4d3e2b;
}

    .card-mission .card-icon {
        color: #b48b4b;
    }

.card-strength1 {
    background: linear-gradient(145deg, #e5f2e8, #d3e8db);
    color: #1d462f;
}

    .card-strength1 .card-icon {
        color: #2d7a4e;
    }

.card-strength2 {
    background: linear-gradient(145deg, #f5e8e8, #f0dddd);
    color: #6d3a3a;
}

    .card-strength2 .card-icon {
        color: #b45a5a;
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .founder-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .founder-content {
        text-align: center;
    }

        .founder-content .bio {
            margin-left: auto;
            margin-right: auto;
        }

    .founder-meta {
        justify-content: center;
    }

    .founder-social {
        justify-content: center;
    }

    .founder-image img {
        max-width: 280px;
        border-radius: 30px;
    }

    .founder-content h2 {
        font-size: 2rem;
    }

    .cards-section {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .cards-section {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .founder-content h2 {
        font-size: 1.8rem;
    }
}
