/* ============================================
   Founder Page Styles
   ============================================ */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.5' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.1;
    pointer-events: none;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Founder Section */
.founder-section {
    padding: 80px 0;
    background: #f8fafc;
}

.founder-grid {
    display: grid;
    gap: 60px;
    margin-bottom: 80px;
}

.founder-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.founder-image-wrapper {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.founder-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.founder-content {
    padding: 40px 40px 40px 0;
}

.founder-name {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.founder-post {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.founder-bio {
    margin-bottom: 30px;
}

.founder-bio p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 15px;
}

.founder-achievements {
    background: #f1f5f9;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.founder-achievements h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.founder-achievements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.founder-achievements li {
    font-size: 15px;
    color: #475569;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.founder-achievements li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Legacy Section */
.founder-legacy {
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.founder-legacy h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.founder-legacy>p {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    max-width: 900px;
    margin: 0 auto 50px;
}

.legacy-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .founder-card {
        grid-template-columns: 1fr;
    }

    .founder-image-wrapper {
        padding: 30px;
    }

    .founder-image {
        height: 350px;
    }

    .founder-content {
        padding: 0 30px 30px;
    }

    .legacy-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .founder-section {
        padding: 50px 0;
    }

    .founder-name {
        font-size: 28px;
    }

    .founder-post {
        font-size: 16px;
    }

    .founder-legacy {
        padding: 40px 30px;
    }

    .founder-legacy h2 {
        font-size: 28px;
    }

    .founder-legacy>p {
        font-size: 16px;
    }

    .legacy-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 60px 0 40px;
    }

    .page-title {
        font-size: 28px;
    }

    .founder-image {
        height: 300px;
    }

    .founder-content {
        padding: 0 20px 20px;
    }

    .founder-achievements {
        padding: 20px;
    }

    .founder-legacy {
        padding: 30px 20px;
    }
}