/* home.css - Styles specific to homepage */

/* ===== HERO SECTION ===== */
.hero {
    padding: 60px 0 40px 0;
    text-align: center;
}

.hero-eyebrow {
    color: var(--golden);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 16px;
}

.hero h1 span {
    color: var(--golden);
    background-color: rgba(250, 202, 11, 0.1);
    padding: 0 8px;
    display: inline-block;
}

.hero-sub {
    font-size: 1.25rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 32px;
}

/* ===== FEATURED CARDS ===== */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 60px 0;
}

.school-card {
    background: var(--pure-white);
    border-radius: 24px;
    padding: 28px;
    color: var(--text-dark);
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.2s;
}

.school-card:hover {
    transform: translateY(-5px);
}

.school-icon {
    background-color: var(--teal-bright);
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.school-icon i {
    font-size: 26px;
    color: white;
}

.school-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 6px;
}

.school-tag {
    display: inline-block;
    background-color: rgba(42, 163, 184, 0.1);
    color: var(--teal-bright);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 5px 12px;
    border-radius: 50px;
    margin: 8px 0 12px;
}

.school-desc {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.5;
}

.school-link {
    color: var(--teal-bright);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
    background: var(--pure-white);
    border-radius: 28px;
    padding: 45px;
    margin: 60px 0 70px;
    color: var(--text-dark);
    box-shadow: 0 25px 40px -12px black;
}

.founder-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.founder-left {
    flex: 1 1 280px;
    text-align: center;
}

.avatar-placeholder {
    background: linear-gradient(145deg, var(--deep-navy), #1a2f44);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--golden);
}

.avatar-placeholder i {
    font-size: 70px;
    color: var(--golden);
}

.founder-left h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 4px;
}

.founder-left .title {
    color: var(--teal-bright);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.founder-left .degree {
    background-color: var(--off-white);
    padding: 5px 16px;
    border-radius: 60px;
    display: inline-block;
    font-weight: 500;
    color: var(--deep-navy);
    border-left: 3px solid var(--golden);
}

.founder-right {
    flex: 2 1 400px;
}

.founder-right p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2d3e5a;
    margin-bottom: 25px;
}

.founder-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-item i {
    color: var(--golden);
    font-size: 1.4rem;
}

/* ===== CHAT WIDGET ===== */
.chat-widget {
    background-color: rgba(255,255,255,0.03);
    border-radius: 60px;
    padding: 18px 25px;
    margin: 30px 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    border: 1px dashed var(--golden);
}

.chat-widget p {
    font-size: 1.1rem;
    font-weight: 500;
}

.chat-widget p i {
    color: var(--golden);
    margin-right: 8px;
}

.chat-cta {
    background: var(--golden);
    border: none;
    color: var(--deep-navy);
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.chat-cta i {
    font-size: 1.2rem;
}

/* ===== HOMEPAGE RESPONSIVE ===== */
@media screen and (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }

    .founder-section {
        padding: 25px 20px;
    }

    .founder-left h2 {
        font-size: 1.6rem;
    }

    .founder-stats {
        flex-direction: column;
        gap: 15px;
    }

    .chat-widget p i {
        display: none;
    }

    .chat-cta {
        width: 100%;
        justify-content: center;
    }
}