/* Fichier : css/main.css */
@import url('variables.css');
@import url('layout.css');
@import url('components.css');
@import url('pages.css');

/* Resets fondamentaux */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    background-color: var(--color-bg);
    color: var(--color-vert-noir);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.3;
    margin-bottom: 15px;
}

section {
    padding: 80px 20px;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: var(--font-size-h2);
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

.section-title::after {
    content: '✨';
    display: block;
    font-size: 14pt;
    color: var(--color-accent);
    margin-top: 10px;
}