/* ================= */
/* |     FONTS     | */
/* ================= */
/* Copié depuis ton fonts.css */
@font-face {
    font-family: "Alatsi";
    src: url("../fonts/Alatsi-Regular.ttf"); /* Vérifie bien ce chemin */
}
@font-face {
    font-family: "Chunk Five";
    src: url("../fonts/Chunkfive\ Ex.ttf"); /* Vérifie bien ce chemin */
}

@font-face {
    font-family: "Bungee";
    src: url("../fonts/Bungee-Regular.ttf"); /* Vérifie bien ce chemin */
}

/* ================= */
/* |      BASE     | */
/* ================= */
/* Basé sur login.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    background-color: #161616; /* Ton fond principal */
    font-family: "Alatsi", sans-serif;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

::selection {
    background-color: #ff3b30; /* Ton rouge signature */
    color: #ffffff;
}

/* =================== */
/* |      HEADER     | */
/* =================== */
header {
    text-align: center;
    padding-top: 5vh;
}

header h1 {
    font-family: "Chunk Five";
    font-size: 4em;
    color: #ffffff;
}

header h1 span {
    color: #ff3b30; /* Ton rouge */
}

/* ====================== */
/* |    CONSTRUCTION    | */
/* ====================== */
main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.construction-panel {
    width: 100%;
    max-width: 600px;
    background-color: #262624; 
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.construction-panel h2 {
    font-family: "Bungee", serif;
    font-size: 2.5em;
    color: #ffffff;
    border-bottom: #ff3b30 4px solid;
    border-radius: 2px;
    margin-bottom: 8px;
}

.divider {
    height: 4px;
    width: 100%;
    background-color: #ff3b30;
    border-radius: 2px;
    margin-bottom: 8px;
}

.construction-panel p {
    font-family: "Alatsi", sans-serif;
    font-size: 1.2em;
    line-height: 1.6;
    color: #dcdcdc;
    margin-bottom: 20px;
}

/* =================== */
/* |      BOUTON     | */
/* =================== */
.action-btn {
    padding: 15px 40px;
    font-family: "Alatsi", sans-serif;
    font-size: 1.2em;
    text-decoration: none;
    color: #000000;
    background-color: white;
    border-radius: 30px;
    transition: 0.5s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.action-btn:hover {
    background-color: #ff3b30;
    color: white;
    transition: 0.5s;
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.4);
}

/* =================== */
/* |      FOOTER     | */
/* =================== */
footer {
    text-align: center;
    padding: 20px;
    font-family: "Alatsi", sans-serif;
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

/* =================== */
/* |    RESPONSIVE   | */
/* =================== */
@media screen and (max-width: 768px) {
    header h1 {
        font-size: 3em;
    }
    
    .construction-panel {
        width: 90%;
        padding: 2rem 1rem;
    }
    
    .construction-panel h2 {
        font-size: 2em;
    }
}