/* Reset CSS - Hub des Formalités */
/* SCOPE : Reset global pour le front uniquement */
/* À charger UNIQUEMENT sur les pages front (index.php) */

/* Reset global pour le front */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Reset typographique */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family-primary);
    line-height: 1.6;
    color: var(--text-primary);
    min-height: 100vh;
    height: 100%;
    /* Pas de background ici - géré par .front-page */
}

/* Reset des éléments */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: inherit;
}

p, ul, ol, dl, blockquote, pre, address, figure {
    margin: 0;
}

ul, ol {
    list-style: none;
    padding: 0;
}

img, video, canvas, audio, iframe, embed, object {
    display: block;
    max-width: 100%;
    height: auto;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Reset pour l'accessibilité */
:focus {
    outline: 2px solid var(--primary-end);
    outline-offset: 2px;
}

/* Reset pour les éléments interactifs */
[role="button"], [role="link"] {
    cursor: pointer;
}

/* Suppression du focus outline pour les clics souris uniquement */
:focus:not(:focus-visible) {
    outline: none;
} 