/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: #f7f8fa;
    color: #1a1a1a;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid #e5e6ea;
}

.nav-logo {
    height: 52px;  /* BIGGER */
    width: auto;
}

.nav-right a {
    margin-left: 28px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

.nav-cta {
    padding: 10px 18px;
    background: #0E1A2B;  /* dark navy */
    color: white !important;  /* forces white text */
    border-radius: 8px;
    font-weight: 600;
}

/* HERO */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 80px 40px;
    align-items: center;
}

.hero-text .eyebrow {
    color: #6c6f75;
    font-size: 12px;
    letter-spacing: 1.4px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero-text p {
    margin-top: 10px;
    max-width: 95%;
}

.hero-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.primary-btn {
    display: inline-block;
    margin-top: 28px;
    background: #0E1A2B;
    color: white;
    padding: 16px 28px;
    border-radius: 32px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
}

.email-line {
    margin-top: 16px;
    font-size: 14px;
}

.email-line a {
    color: #0a438b;
    font-weight: 500;
}

/* SECTIONS */
.section {
    padding: 80px 40px;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 32px;
}

/* HOW IT WORKS */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.step-card {
    background: white;
    border-radius: 14px;
    padding: 22px 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.step-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

/* SUBJECTS */
.subheader {
    margin-top: -18px;
    margin-bottom: 40px;
    color: #6f757c;
}

.subjects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

/* SUBJECT BLOCK TITLES */
.subject-block h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

/* COLORED CARDS */
.subject-card {
    background: white;
    padding: 22px 24px;
    border-radius: 14px;
    margin-bottom: 24px;
    border: 1px solid #e3e6ea;
}

/* High school colors */
.hs-math {
    background: #fdf3e0;
}

.hs-science {
    background: #eaf4ff;
}

.hs-english {
    background: #fdeaf3;
}

.hs-other {
    background: #e8f7f0;
}

/* College color - updated to orange/peach */
.college-card {
    background: #ffe9d6;   /* SOFT ORANGE-PEACH */
}

/* Test prep lavender */
.testprep-card {
    background: #f2e9ff;
}

/* LISTS */
.subject-card ul li {
    margin-bottom: 6px;
}

/* MEET SIENA */
.meet-grid {
    display: grid;
    grid-template-columns: 0.55fr 1fr;
    gap: 40px;
    align-items: start;
}

.meet-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* CTA SECTION */
.cta {
    text-align: center;
    background: #f4f6f9;
    padding: 100px 40px;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta p {
    max-width: 620px;
    margin: 10px auto;
}

/* FOOTER */
.footer {
    background: #0E1A2B;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.footer-logo {
    width: 130px;   /* bigger stacked logo */
    margin-bottom: 14px;
}

.tagline {
    opacity: 0.85;
    margin-top: 4px;
    font-size: 14px;
}

/* MOBILE LAYOUT (phones & small tablets) */
@media (max-width: 900px) {
    body {
        background: #f7f8fa;
    }

    /* NAVBAR: stack logo + links so they don't overlap */
    .navbar {
        padding: 12px 16px;
        flex-direction: column;        /* logo on top, links under */
        align-items: flex-start;
    }

    .nav-logo {
        height: 40px;
        margin-bottom: 8px;
    }

    .nav-right {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 16px;                /* rows of links if needed */
        margin-top: 4px;
    }

    .nav-right a {
        margin-left: 0;                /* remove big desktop spacing */
        font-size: 14px;
    }

    .nav-cta {
        padding: 8px 14px;
        font-size: 14px;
    }

    /* HERO: stack text and image vertically */
    .hero {
        grid-template-columns: 1fr;
        padding: 32px 16px;
        gap: 24px;
        text-align: center;
    }

    .hero-text p {
        margin: 10px auto 0;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.25;
    }

    .hero-img {
        max-width: 90%;
        margin: 0 auto;
        border-radius: 14px;
    }

    .primary-btn {
        width: 100%;
        max-width: 320px;
    }

    .email-line {
        font-size: 13px;
    }

    /* GENERIC SECTION PADDING */
    .section {
        padding: 40px 16px;
    }

    /* HOW IT WORKS: cards full-width stacked */
    .steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-card {
        padding: 18px 16px;
    }

    /* SUBJECTS: make ALL of them one column */
    .subjects-grid {
        grid-template-columns: 1fr;    /* high school, college, test prep stacked */
        gap: 28px;
    }

    .subject-block h3 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .subject-card {
        padding: 18px 16px;
    }

    /* MEET SIENA: photo on top, text below */
    .meet-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .meet-img {
        max-width: 90%;
        margin: 0 auto;
    }

    /* CTA + FOOTER */
    .cta {
        padding: 56px 16px;
    }

    .cta h2 {
        font-size: 26px;
    }

    .footer {
        padding: 28px 16px;
    }

    .footer-logo {
        width: 110px;
    }
}

