/* ------------------ GLOBAL ------------------ */
@font-face {
    font-family: eva;
    src: url(../font/blazed/Blazed.ttf) format('truetype');
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: linear-gradient(black 43%, gray);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

/* ------------------ ANIMATIONS ------------------ */
@keyframes shadowColor {
    0% { box-shadow: 3px 3px 30px rgb(47, 255, 0); }
    25% { box-shadow: 3px 3px 60px rgb(0, 255, 255); }
    50% { box-shadow: 3px 3px 30px rgb(255, 0, 255); }
    75% { box-shadow: 3px 3px 60px rgb(255, 255, 0); }
    100% { box-shadow: 3px 3px 10px rgb(47, 255, 0); }
}

/* ------------------ HEADER ------------------ */
#nav-bar {
    width: 100vw;
    height: 180px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background: black;
    z-index: 999;
    animation: shadowColor 3.5s infinite alternate;
}

#enseigne {
    width: 60vw;
    height: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 92px;
    color: white;
    font-family: eva;
}

/* ------------------ MAIN ------------------ */
main {
    margin-top: 200px;
}

/* ----------- ONGLET (menu sous header) ----------- */
#onglet {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10%;
    margin: 20px auto;
    position: relative;
    z-index: 1;
}

.onglet-btn {
    padding: 15px 30px;
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    color: cyan;
    border: 2px solid cyan;
    border-radius: 50px;
    font-size: 25px;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 0 10px cyan, 0 0 20px cyan inset;
    transition: all 0.3s ease-in-out;
    font-family: eva, sans-serif;
}

.onglet-btn:hover {
    color: black;
    background: cyan;
    box-shadow: 0 0 15px white, 0 0 30px cyan;
    transform: scale(1.05);
}
/* ----------- PERSONNALISEZ ----------- */

#formulaire-customisation {
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid cyan;
    border-radius: 20px;
    padding: 60px;
    max-width: 1000px;
    margin: 60px auto;
    color: white;
    font-family: sans-serif;
    box-shadow: 0 0 20px cyan;
}

#formulaire-customisation h2 {
    color: cyan;
    text-align: center;
    margin-bottom: 50px;
    font-size: 40px;
    text-shadow: 0 0 10px cyan;
}

.form-section {
    margin-top: 40px;
    padding: 20px;
    border: 1px solid cyan;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 10px cyan;
}

.form-section h3, .form-section h4 {
    color: cyan;
    margin-bottom: 10px;
    text-shadow: 0 0 5px cyan;
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.form-section label {
    display: block;
    margin-top: 15px;
    color: white;
}

.form-group label {
    margin-bottom: 10px;
    font-weight: bold;
    color: cyan;
}

.form-section select,
.form-section input[type="text"],
.form-section input[type="email"],
.form-section input[type="tel"],
.form-section textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    background: #111;
    border: 1px solid cyan;
    border-radius: 8px;
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    font-size: 17px;
    border: 1px solid cyan;
    border-radius: 10px;
    background: #111;
    color: white;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: white;
}

.checkboxes label {
    margin-bottom: 10px;
    color: white;
    font-weight: normal;
}

#formulaire-customisation button[type="submit"] {
    background: cyan;
    color: black;
    padding: 15px 30px;
    font-size: 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    display: block;
    margin: 40px auto 0;
    box-shadow: 0 0 15px cyan;
}

#formulaire-customisation button:hover {
    background: white;
    color: black;
    transform: scale(1.05);
}
/* ------------------ FOOTER ------------------ */

#footer {
    background: black;
    color: cyan;
    text-align: center;
    padding: 40px 20px;
    border-top: 2px solid cyan;
    box-shadow: 0 -3px 10px cyan;
}

#footer a {
    color: cyan;
    text-decoration: none;
    margin: 0 10px;
}

#footer a:hover {
    text-decoration: underline;
}

.footer-contenu .social img {
    height: 60px;
    margin: 10px;
    transition: transform 0.5s;
}

.footer-contenu .social img:hover {
    transform: scale(1.5);
    transform: rotate(360deg);
}
