
@import url("couleurs.css");
@import url("fonts.css");
@import url("navigation.css");
@import url("voyageurs.css");
@import url("options.css");
@import url("reservez.css");
@import url("extensions.css");
@import url("validation.css");
@import url("infos.css");
@import url("payment.css");
@import url("contact.css");
@import url("footer.css");


@charset "UTF-8";

*, *::before, *::after {
    box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
}

/* Tout cacher par défaut */
div[data-resolution],.mobile, .desktop{
    display: none;
}

/* Montrer seulement Mobile quand l'écran est petit */
@media (max-width: 1439px) {
    .mobile{
        display: flex;
    }
    .desktop{
        display: none;
    }
    div[data-resolution="Mobile"] {
        display: flex;
    }
}

/* Montrer seulement Desktop quand l'écran est grand */
@media (min-width: 1440px) {
    .mobile{
        display: none;
    }
    .desktop{
        display: flex;
    }
    div[data-resolution="Desktop"] {
        display: flex;
    }
}

@-webkit-keyframes spinner-rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spinner-rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl {
    width: 100%;
    padding: 0;
    margin: 0;
}

.hidden, .cacher {
    display: none; !important
}

.alerte {
    color: var(--rouge-erreur);
    font-family: PoppinsExtraBold;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 25px;
}
.info {
    color: var(--vert-clair);
    font-family: PoppinsExtraBold;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 25px;
}

html{
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    /*display: block;*/
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    z-index: 0;
}

body{
    display: flex;
    flex-direction: column; /* 1 par “ligne” (vertical) */
    align-items: flex-start;
    justify-content: space-evenly;
    gap: 10px;              /* espace entre éléments */
    /*display: block;*/
    /*width: 100%;*/
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    color: var(--gris-fonce);
    line-height: normal;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 100vh;
    z-index: 0;
}

section.accueil{
    display: flex;
    flex-direction: column; /* 1 par “ligne” (vertical) */
    align-items: flex-start;
    justify-content: center;  /* centre horizontalement */
    gap: 5px;
    width: 100%;
    /*max-width: 600px;*/
    position: relative;
    padding: 10px;
    margin: 0 auto;
}

@media (min-width: 1440px) {
    section.accueil{
        display: grid;
        gap: 30px;
        align-items: start;
        width: 1440px;
        grid-template-columns: repeat(2, max-content); /* largeur = contenu */
        justify-content: center;
        grid-template-columns: 6.5fr 3.5fr; /* 70/30 */
        max-width: 1440px;
        margin: 0 auto;
        padding: 0;

    }
}

input, select {
    height:30px;
    display: block;
    width: 100%;
}

label{
    margin:0;
    padding:0;
}

select {
    appearance: none;           /* enlève la flèche native (Chrome, Safari) */
    -webkit-appearance: none;   /* Safari */
    -moz-appearance: none;      /* Firefox */
    padding: 6px 32px 6px 12px; /* espace à droite pour la flèche */
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    /* ton SVG en data URI (avec # encodé en %23) */
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='9' viewBox='0 0 13 9' fill='none'><path d='M0.970459 0.677612L6.66947 7.51643L12.3685 0.677612' stroke='%23333' stroke-width='1.5'/></svg>")
    no-repeat right 10px center;
    background-size: 11px 9px;
    cursor: pointer;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-family: sans-serif;
}

.custom-checkbox input {
    display: none; /* Masquer la checkbox native */
}

.custom-checkbox .checkmark {
    width: 17px !important;
    height: 17px !important;
    border: 2px solid var(--coche);
    border-radius: 3px; /* facultatif */
    display: inline-block;
    margin-right: 10px;
    position: relative;
    background-color: #fff;
    transition: border-color 0.2s, background-color 0.2s;
}

/* SVG coche en vert quand checked */
.custom-checkbox input:checked + .checkmark {
    border-color: var(--coche);
    background-color: #fff;
    background-image: url("data:image/svg+xml;utf8,<svg fill='none' stroke='%2313413C' stroke-width='3' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M5 13l4 4L19 7'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
}

.checkmark{
    flex: 0 0 17px;
}

.dev{
    color: var(--rouge-erreur);
    display: block;
    max-width: 80vw;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 15px;
    border: 1px dotted var(--rouge-erreur);
    border-radius: 25px;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-right: 15px;
    overflow-x: auto;
}

.loading-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.75);
    z-index: 9999;
    cursor: wait;
}

.loading-overlay[hidden] {
    display: none;
}

.loading-overlay__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--vert-fonce);
    font-family: Poppins;
}

.loading-overlay__icon {
    width: 48px;
    height: 48px;
    animation: spinner-rotate 1.1s linear infinite;
}

.loading-overlay__text {
    font-size: 14px;
    font-weight: 600;
}

