/* =========================
   ABOUT PAGE BASE
========================= */

.about-page {
    padding: 60px 0;
}


/* HERO */

.about-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.85;
    line-height: 1.6;
}


/* =========================
   GENERAL SECTIONS
========================= */

.about-section {
    margin-bottom: 80px;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}


/* TWO COLUMN LAYOUT */

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


/* =========================
   IMAGES
========================= */

.about-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}


/* =========================
   TIMELINE
========================= */

.timeline {
    border-left: 3px solid var(--primary);
    padding-left: 25px;
    max-width: 700px;
    margin: 40px auto 0;
}

.timeline-item {
    margin-bottom: 30px;
    position: relative;
}

.timeline-item span {
    font-weight: 600;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.timeline-item p {
    opacity: 0.85;
}


/* Timeline dot */

.timeline-item::before {
    content: "";
    position: absolute;
    left: -34px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
}


/* =========================
   MISSION + FOUNDER COMBINED
========================= */

.mission-founder {
    align-items: center;
}


/* RIGHT SIDE TEXT */

.mission-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.mission-text p {
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.6;
}


/* =========================
   FOUNDER CARD
========================= */

.founder-card {
    text-align: center;
    max-width: 320px;
    margin: auto;
}


/* IMAGE WRAPPER */

.image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}


/* IMAGE */

.image-wrapper img {
    width: 100%;
    display: block;
    transition: all 0.3s ease;
}


/* HOVER EFFECT: BLUR + ZOOM */

.founder-card a:hover img {
    filter: blur(3px);
    transform: scale(1.05);
}


/* OPTIONAL LINKEDIN OVERLAY */

.image-wrapper::after {
    content: "View LinkedIn";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    color: white;
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 20px;
    opacity: 0;
    transition: 0.3s;
}

.founder-card a:hover .image-wrapper::after {
    opacity: 1;
}


/* NAME */

.founder-info h3 {
    margin-top: 15px;
    font-size: 20px;
}


/* TITLE */

.founder-info p {
    font-size: 14px;
    opacity: 0.7;
}


/* =========================
   SPACING IMPROVEMENTS
========================= */


/* Extra breathing room between major sections */

.about-section+.about-section {
    margin-top: 40px;
}


/* Optional: bigger gap for mission section */

.mission-founder {
    margin-top: 100px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 32px;
    }
    .two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .mission-founder {
        margin-top: 60px;
    }
    .timeline {
        padding-left: 20px;
    }
    .timeline-item::before {
        left: -28px;
    }
}