/* Importation des polices personnalisées */
@font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Book.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'LT Wave Black';
    src: url('fonts/LTWave-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

/* Variables de couleur de la marque */
:root {
    --primary-color: #F8C806; /* Jaune Signal */
    --dark-color: #0C0A00;    /* Noir Profond */
    --light-color: #FFFFFF;   /* Blanc Pur */
}

/* Styles globaux */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Gotham', sans-serif;
    background-color: var(--dark-color);
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

header .logo {
    max-width: 250px;
    margin-bottom: 2rem;
}

main h1 {
    font-family: 'LT Wave Black', sans-serif;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

main p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

footer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    position: absolute;
    bottom: 20px;
    width: 100%;
    left: 0;
}
