/* ---------------------------------------------
   HOME.CSS — Homepage-specific styling
   Studaria — A Scholarly Atelier
----------------------------------------------*/

/* =========================================================
   HERO — Clean, Editorial, Studaria Aesthetic
   ========================================================= */

.hero {
    /* spacing under floating nav */
    padding-top: calc(var(--space-xxl) + 80px);
    padding-bottom: var(--space-xxl);

    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Gold ribbon animation placeholder */
.hero-ribbon {
    width: 100%;
    height: 6px;
    background: var(--gold);
    opacity: 0;
    border-radius: 3px;
    margin-bottom: var(--space-lg);
    transform: translateX(-20%);
}

/* HERO TITLE — refined + depth */
.hero-title {
    font-family: var(--serif);
    font-size: 2.8rem;              /* slightly smaller, more editorial */
    font-weight: 500;
    color: var(--espresso);
    margin-bottom: var(--space-md);
    line-height: 1.25;

    /* soft depth shadow */
    text-shadow: 0 2px 6px rgba(59, 48, 40, 0.08); /* espresso shadow at 8% */
}

/* HERO SUBTITLE — softer, calmer */
.hero-subtitle {
    font-family: var(--sans);
    font-size: 1.15rem;
    color: var(--text-soft);
    max-width: 650px;
    margin: 0 auto var(--space-lg);
    line-height: 1.6;
}

/* CTA button spacing */
.hero .cta-button {
    margin-top: var(--space-md);
}

/* Gold ribbon animation placeholder */
.hero-ribbon {
    width: 100%;
    height: 6px;
    background: var(--gold);
    opacity: 0;
    border-radius: 3px;
    margin-bottom: var(--space-lg);
    transform: translateX(-20%);
}

/* ---------------------------------------------
   WHAT IS STUDARIA
----------------------------------------------*/

.what-is {
    text-align: center;
}

.what-is p {
    max-width: 750px;
    margin: 0 auto;
    color: var(--text-soft);
    font-size: 1.15rem;
    line-height: 1.7;
}

/* ---------------------------------------------
   TEACHER TOOLS GRID
----------------------------------------------*/

.tools {
    text-align: center;
}

.tool-grid {
    margin-top: var(--space-xl);
}

.tool-card {
    background: var(--bg-soft);
    border: 1px solid var(--sand);
    border-radius: 12px;
    padding: var(--space-lg);
    font-size: 1.1rem;
    color: var(--espresso);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tool-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* ---------------------------------------------
   FUTURE PLATFORM SECTION
----------------------------------------------*/

.future {
    text-align: center;
}

.future p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-soft);
    font-size: 1.15rem;
}

/* ---------------------------------------------
   WHY STUDARIA
----------------------------------------------*/

.why {
    text-align: center;
}

.why ul {
    margin-top: var(--space-lg);
}

.why li {
    font-size: 1.1rem;
    color: var(--espresso);
    margin-bottom: var(--space-sm);
}

/* ---------------------------------------------
   SPACING BETWEEN SECTIONS
----------------------------------------------*/

.section + .section {
    margin-top: var(--space-xxl);
}
