/* Typography System */

/* Base Typography - Sans-serif pour le corps (lisible et moderne) */
body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-primary);
}

/* Headings - Serif élégant pour les titres principaux */
h1, h2 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif !important;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
}

/* Sous-titres - Sans-serif avec épaisseur moyenne */
h3, h4, h5, h6 {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 500;
}

/* Paragraph - Sans-serif léger pour la lisibilité */
p {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
    font-weight: 400;
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* Links - Sans-serif avec épaisseur moyenne */
a {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    opacity: 0.8;
}

/* Strong */
strong {
    font-weight: 600;
}

/* Small text */
small {
    font-size: 0.875rem;
}

/* Special Classes */
.text-large {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.7;
}

.text-small {
    font-size: 0.875rem;
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.font-mono {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

/* Logo Typography - Utilise l'image maintenant, mais garde le style si texte */
.nav__logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Hero Title - Serif élégant pour l'impact */
.hero__title-main {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-weight: 700;
    letter-spacing: -0.01em;
}
