/* ============================================
   APONGA — Typographie (Kanit + DM Sans + Montserrat + PT Serif)
   ============================================ */

body {
    font-family: var(--aponga-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--aponga-text-light);
    background-color: var(--aponga-bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--aponga-font-heading);
    font-weight: 600;
    line-height: 1.1;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

.hero-title {
    font-family: var(--aponga-font-heading);
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 5rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.05;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.section-title {
    font-family: var(--aponga-font-heading);
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.5em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--aponga-text-muted);
    max-width: 600px;
}

.text-accent { color: var(--aponga-accent) !important; }
.text-muted-custom { color: var(--aponga-text-muted) !important; }
.font-serif { font-family: var(--aponga-font-serif); }
.font-nav { font-family: var(--aponga-font-nav); font-weight: 600; text-transform: uppercase; }

.text-uppercase-spaced {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    font-weight: 600;
}

a {
    color: var(--aponga-accent);
    text-decoration: none;
    transition: color var(--aponga-transition);
}
a:hover { color: var(--aponga-accent-hover); }

.section-light,
.section-light h1, .section-light h2, .section-light h3,
.section-light h4, .section-light h5, .section-light h6 {
    color: var(--aponga-text-dark);
}
.section-light .text-muted-custom { color: var(--aponga-text-muted-light) !important; }

:focus-visible {
    outline: 2px solid var(--aponga-accent);
    outline-offset: 2px;
}
