/*
 * SK PRO — Base styles
 * Reset, typographie, éléments globaux
 */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-background);
    color: var(--color-on-surface);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Sélection de texte avec teinte secondaire */
::selection {
    background-color: rgba(138, 81, 0, 0.2);
    color: var(--color-on-surface);
}

/* ===== HIÉRARCHIE TYPOGRAPHIQUE ===== */

/* Display — Titres héroïques */
.skpro-display {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.9;
    font-family: var(--font-family);
}

/* Headline — Titres de section */
.skpro-headline {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.05;
    font-family: var(--font-family);
}

/* Title — Sous-titres */
.skpro-title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    line-height: 1.3;
}

/* Body — Corps de texte */
.skpro-body {
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* Label — Métadonnées, chips */
.skpro-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* ===== MATERIAL SYMBOLS ===== */
.material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    user-select: none;
    vertical-align: middle;
}

/* ===== LIENS ===== */
a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* ===== IMAGES ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== RESET GÉNÉREPRESS ===== */
/* Supprimer les styles GP qui entrent en conflit avec notre design */
.site-header {
    display: none !important;
}

.site-footer {
    display: none !important;
}

/* Padding-top compensant le header fixe */
.skpro-content-wrap {
    padding-top: 0;
}

/* Conteneur max-width centré */
.skpro-container {
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: 2rem;
}
