body{
    background-color: black;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main{
    min-height: 100vh; /* couvre tout l'écran */
    height: auto; /* laisse la hauteur s’adapter au contenu */
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px; 
}

[class*="col-"] {
    min-height: 80px;
    padding: 10px;
    box-sizing: border-box;
}

img{
    max-width: 100%;
}

/* Largeur des colonnes */

.col-1 { width: 8.33%; }
.col-2 { width: 16.66%; }
.col-3 { width: 25%; }
.col-4 { width: 33.33%; }
.col-5 { width: 41.66%; }
.col-6 { width: 50%; }
.col-7 { width: 58.33%; }
.col-8 { width: 66.66%; }
.col-9 { width: 75%; }
.col-10 { width: 83.33%; }
.col-11 { width: 91.66%; }
.col-12 { width: 100%; }

/* Largeur des colonnes */


@font-face {
    font-family: 'Comedik';
    src: url('/fonts/Comedik.woff2') format('woff2'),
         url('/fonts/Comedik.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Schabo';
    src: url('/fonts/SCHABO-Condensed.woff2') format('woff2'),
         url('/fonts/SCHABO-Condensed.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}



h1{ 
    font-family: "Schabo";
    font-size: 200px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 200px */
    letter-spacing: -3.8px;
    text-transform: uppercase;
    color: var(--Blanc, #FFF);
    margin-top: 160px;
    margin-bottom: 0;
}

h2{
    font-family: "Schabo";  
    font-size: 160px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 176px */
    letter-spacing: -3.04px;
    text-transform: uppercase;
    color: var(--Blanc, #FFF);
    margin: 0 0;
}

p{
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 115%;
    letter-spacing: -0.38px;
    color: var(--Blanc, #FFF);
}

.champ-obligatoire{
    color: #B0B0B0;
}

/* Titres */

.title{
    font-family: "Schabo";
}

.type-h1{ 
    font-size: 200px !important;;
}

.type-h2{ 
    font-size: 160px !important;
}

.var-type-h2{ 
    color: var(--Orange, #FFA14F);
}

.ecriture-main{
    color: var(--Orange, #FFA14F);
    font-family: "Comedik";
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 105%; /* 52.5px */
    letter-spacing: -0.95px;
    text-decoration: none;
}

.texte-header{
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 30px */
    letter-spacing: -0.38px;
    color: var(--Blanc, #FFF);
}

/* Titres */


/* Formulaire */

.section-form{
    padding-bottom: 30px;
}

.form{
    display: flex;
    background-image: url("image/image-fond-hero-contact copie.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

.style-form{
    display: flex;
    width: 447px;
    padding: 14px 110px 14px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 70px;
    border: 1px solid #B0B0B0;
    background-color: transparent;
    flex: 1;
    box-sizing: border-box;
    color: #B0B0B0;
}

.style-form-message{
    width: 100%;
    min-height: 150px;
    padding: 14px 20px;
    border: 1px solid #B0B0B0;
    border-radius: 20px;
    background-color: transparent;
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    box-sizing: border-box;
    resize: vertical;
}

.form-text{
    color: #B0B0B0;
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.style-form::placeholder {
    color: #B0B0B0;
    opacity: 1;
}

.style-form-message::placeholder {
    color: #B0B0B0;
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 25px;
    opacity: 1;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;

    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 115%;
    letter-spacing: -0.38px;
    color: var(--Blanc, #FFF);
}

.custom-checkbox a{
    color: var(--Blanc, #FFF);
    text-decoration: underline;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.custom-checkbox .checkmark {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #B0B0B0;
    box-sizing: border-box;
    position: relative;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: 16px;
    height: 15px;
    border-radius: 50%;
    background-color: #B0B0B0;
}

button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Schabo";
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -1.14px;
    text-transform: uppercase;
    text-transform: uppercase;
    color: white;
    background-color: transparent; 
    border: none; 
    cursor: pointer;
    padding: 0 0;
    gap: 5px; 
}

button[type="submit"]:hover {
    color: var(--Orange, #FFA14F);
}

.vite{
    position: absolute;
    top: 920px;
    left: 810px;
    transform: rotate(-5deg);
}

.form-p{
    margin-bottom: 20px;
}




/* header */

.couleur-header{
    width: 100%;
    height: 156px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #000 19.71%, rgba(0, 0, 0, 0.00) 100%);
    position: fixed;
}

.navigation{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
}

.navigation-menu{
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navigation-menu li:not(:last-child){
    margin-right: 60px;
}

.navigation-menu__link{
    text-decoration: none;
}

.navigation-menu__link,
.navigation-menu__link:visited,
.navigation-menu__link:active{
    color: var(--Blanc, #FFF);
}

.navigation-menu__link:hover{
    color: var(--Orange, #FFA14F);
}

/* header */




/* footer */

.selection-footer{
    padding-top: 80px;
    padding-bottom: 20px;
    background-color: #2A2A2A;
}

.texte-gras{
    font-family: "Inter";
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: 115%; /* 24.15px */
    letter-spacing: -0.399px;
}

.ecrit-main{
    color: var(--Orange, #FFA14F);
    font-family: "Comedik";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 105%;
    letter-spacing: -0.57px;
}

.style-news{
    flex: 1;
    padding: 15px 20px;
    background-color: #fff;
    border: none;
    outline: none;
}

.news-text{
    color: #B7B7B7;
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 105%;
    letter-spacing: -0.38px;
}

.news-row {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 600px;
}

.btn-news-envoyer {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}



.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFF;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 115%; /* 18.4px */
    letter-spacing: -0.304px;
    flex-wrap: wrap;
}
  
.checkbox-wrapper input[type="checkbox"] {
    display: none;
}
  
.custom-checkmark {
    width: 24px;
    height: 24px;
    border: 1px solid #B0B0B0;
    border-radius: 50%; 
    display: inline-block;
    position: relative;
    background-color: transparent;
}

.checkbox-wrapper input[type="checkbox"]:checked + .custom-checkmark::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #B0B0B0;
}

.text-cgu {
    display: inline;
    max-width: 90%;
}

.panier-basket{
    position: absolute;
    top: 1400px;
    left: 980px;
}

.col-droite{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;  
}

.email{
    color: var(--Orange, #FFA14F)!important;
    text-decoration: none;
}

.footer-line {
    display: flex;
    align-items: center;
    gap: 20px;
    
}

.copy{
    color: var(--Blanc, #FFF);
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: -0.304px;
    text-transform: uppercase;
}

.footer-line2 {
    display: flex;
    align-items: center;
}

.navigation-lien-footer {
    display: flex;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: auto;
}

.navigation-lien-footer li {
    position: relative;
}
  
.navigation-lien-footer li a {
    color: #FFF;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 105%;
    letter-spacing: -0.304px;
    text-decoration: none;
}
  
.navigation-lien-footer span {
    color: var(--Blanc, #FFF);
    margin: 0 8px;
    text-decoration: none;
}

.navigation-lien-footer a,
.navigation-lien-footer a:visited,
.navigation-lien-footer a:active{
    color: var(--Blanc, #FFF);
    text-decoration: none;
}

.text-cgu a,
.text-cgu a:visited,
.text-cgu a:active{
    color: var(--Blanc, #FFF);
}








@media (max-width: 780px){

    h1{ 
        font-family: "Schabo";
        font-size: 66px;
        font-style: normal;
        font-weight: 200;
        line-height: 100%;
        letter-spacing: 0px;
        text-transform: uppercase;
        color: var(--Blanc, #FFF);
        margin-top: 160px;
        margin-bottom: 0;
    }

    h2{
        font-family: "Schabo";  
        font-size: 58px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%; /* 176px */
        letter-spacing: 0px;
        text-transform: uppercase;
        color: var(--Blanc, #FFF);
        margin: 0 0;
    }

    p{
        font-family: "Inter";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 115%;
        letter-spacing: -0.304px;
        color: var(--Blanc, #FFF);
    }

    /* Titres */

    .title{
        font-family: "Schabo";
    }

    .type-h1{ 
        font-size: 66px !important;;
    }

    .type-h2{ 
        font-size: 58px !important;
    }

    .var-type-h2{ 
        color: var(--Orange, #FFA14F);
    }

    .ecriture-main{
        color: var(--Orange, #FFA14F);
        font-family: "Comedik";
        font-size: 30px;
        font-style: normal;
        font-weight: 400;
        line-height: 105%; /* 52.5px */
        letter-spacing: -0.57px;
        text-decoration: none;
    }


    .navigation{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 40px 0;
    }
    
    .navigation-menu li:not(:last-child){
        margin-right: 30px;
    }

    .col-4, .col-6, .col-8, .col-10 {
        width: 100%!important;
    }

    .panier-basket {
        display: none !important;
    }

    .vite{
        position: absolute;
        top: 1000px;
        left: 400px;
        transform: rotate(-5deg);
    }

    .col-2{
        display: none !important;
    }

}




.burger {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1001;
}


@media (max-width: 630px){

    .burger {
        display: block;
    }
    
    .navigation-menu {
        display: none;
        flex-direction: column;
        align-items: flex-end;
        position: absolute;
        top: 156px; 
        right: 0;
        width: 100%;
        background-color: black;
        padding: 20px;
        gap: 20px;
        z-index: 1000;
    }
    
    .navigation-menu.active {
        display: flex;
    }
    
    .navigation {
        flex-wrap: wrap;
        position: relative;
    }
    
    .navigation-menu li:not(:last-child) {
        margin-right: 0;
    }
    
    .navigation-menu__link {
        font-size: 24px;
    }

    .vite{
        position: absolute;
        top: 1100px;
        left: 210px;
        transform: rotate(-5deg);
    }

}
