/* Variables */
:root {
    --black: #000000;
    --white: #FFFFFF;
}

html, body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background-color: black;
}

html {
    width: 100vw;
    height: 100vh;
}

body {
    overflow-x: hidden;
    background-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

* Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--black)
}

*::-webkit-scrollbar {
    max-height: 8px;
    max-width: 8px;
    background-color: var(--black);
    
    cursor: none;
}

*::-webkit-scrollbar-track {
    max-height: 8px;
    border-radius: 8px;
}

*::-webkit-scrollbar-thumb {
    max-height: 8px;
    border-radius: 8px;
    background-clip: border-box;
    background-color: var(--black);
}

*::-webkit-scrollbar-thumb:hover {
    background-color: var(--black);
}

/* URLs */

a {
    height: 100%;
    background-color: transparent;
    color: white;
    outline: 2px solid transparent;
    border-radius: 8px;
    text-decoration: underline;
    
    cursor: pointer !important;
    transition: color ease-in-out .25s, outline ease-in-out .25s;
}

a:-webkit-any-link {
    text-decoration: none;
}

a:focus-visible {
    color: white;
    outline: 2px solid var(--black) !important;
    text-decoration: underline;
    
    transition: color ease-in-out .25s, outline ease-in-out .25s;
}

a:hover, a:hover #language-active-text {
    color: white;
    
    cursor: pointer !important;
    transition: color ease-in-out .25s, outline ease-in-out .25s;
}

/* Selected (Highlighted) Text */

::-moz-selection { /* Code for Firefox */
    background: blue;
    color: white;
}

::selection {
    background: blue;
    color: white;
}

#len-tête {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;

    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    /* background-color: blue; */

    -webkit-animation: sestomperAvecÉchelle ease-in-out 1s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: sestomperAvecÉchelle ease-in-out 1s; /* Firefox < 16 */
    -ms-animation: sestomperAvecÉchelle ease-in-out 1s; /* Internet Explorer */
    -o-animation: sestomperAvecÉchelle ease-in-out 1s; /* Opera < 12.1 */
    animation: sestomperAvecÉchelle ease-in-out 1s;
}

h1#bienvenue {
    color: white;
    font-family: "Amarante", serif;
    font-size: 64px;
    font-weight: 400;
    font-style: normal;
    white-space: nowrap;

    margin: 0;
    padding: 0;
}

#marque {
    height: 72px;
    margin-top: -20px;
}

#à-propos {
    margin-left: 64px;
    margin-right: 64px;

    -webkit-animation: sestomper ease-in-out 4s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: sestomper ease-in-out 4s; /* Firefox < 16 */
    -ms-animation: sestomper ease-in-out 4s; /* Internet Explorer */
    -o-animation: sestomper ease-in-out 4s; /* Opera < 12.1 */
    animation: sestomper ease-in-out 4s;
}

p {
    color: white;
    font-family: "Amarante", serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    text-align: center;

    margin: 0;
    padding: 0;
}

button, input[type="submit"], input[type="reset"] {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

button {
    margin-top: 16px;
    font-family: 'Poppins';
    padding: 8px;

    border: 1px solid #F1F1F1;
    background-color: var(--black);
    color: var(--white);

        -webkit-animation: sestomperBouton ease-in-out 6s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: sestomperBouton ease-in-out 6s; /* Firefox < 16 */
    -ms-animation: sestomperBouton ease-in-out 6s; /* Internet Explorer */
    -o-animation: sestomperBouton ease-in-out 6s; /* Opera < 12.1 */
    animation: sestomperBouton ease-in-out 6s;

    opacity: 33%;
    transition: ease-in-out .25s;
}

button a {
    text-decoration: none;
}

button:hover {
    opacity: 100%;
    transition: ease-in-out .25s;
}


footer {
    width: 100%;
    position: absolute;
    top: 97%;
    border-top: 1px solid #F1F1F10b;
    padding-top: 3px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* background-color: blue; */
    -webkit-animation: sestomper ease-in-out 10s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: sestomper ease-in-out 10s; /* Firefox < 16 */
    -ms-animation: sestomper ease-in-out 10s; /* Internet Explorer */
    -o-animation: sestomper ease-in-out 10s; /* Opera < 12.1 */
    animation: sestomper ease-in-out 10s;
}

p {
    font-size: 16px;
}

footer p {
    opacity: 20%;
}

@media screen and (max-width: 1000px) {
    .produit-inclus-diviseur {
        display: block;
    }
    #produit-details {
        flex-direction: column;
    }

    #produit-details > #produit-gauche {
        width: 100%;
    }

    #produit-details > #produit-droite {
        width: 100%;
        flex-direction: column-reverse;
    }

    #produit-prix-information {
        /* margin-top: 32px; */
        margin-bottom: 12px;
    }
    
    .produit-texte > p {
        margin-top: 16px;
    }

    .produit-img-wrapper > img {
        height: 300px;
    }

    .produit-img-wrapper {
        width: 400px;
    }

    #gallery {
        padding-bottom: 64px;
    }

    #produit-kit-inclus {
        margin-top: 64px;
    }

    #rentals-nav {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    #rentals-nav > ul {
        display: none;
    }

    #rentals-nav #section-nav-logo > a > p {
        white-space: nowrap;
    }

    #rentals-nav #section-nav-quote {
        white-space: nowrap;
        flex-wrap: nowrap;
    }

    #len-tête {
        gap: 8px;
    }

    h1#bienvenue {
        font-size: 48px;
    }

    #marque {
        height: 52px;
        margin-bottom: -6px;
    }

    #à-propos {
        margin-left: 8px;
        margin-right: 8px;
    }

    p {
        font-size: 12px !important;
    }

    body {
        min-height: 91.5vh;
    }


    .page-quote #produit-details > #produit-gauche,
    .page-quote #produit-details > #produit-droite {
        width: 100%;
        display: flex;
    }

    #rental-form {
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 700px) {
        #len-tête {
        gap: 6px;
    }

    h1#bienvenue {
        font-size: 32px;
    }

    #marque {
        height: 40px;
        margin-bottom: -6px;
    }

    #à-propos {
        margin-left: 16px;
        margin-right: 16px;
    }

    p {
        font-size: 12px;
    }

    body {
        min-height: 91.5vh;
    }
}

@media screen and (max-width: 500px) {
        #len-tête {
        gap: 6px;
    }

    h1#bienvenue {
        font-size: 32px;
    }

    #marque {
        height: 40px;
        margin-bottom: -6px;
    }

    #à-propos {
        margin-left: 16px;
        margin-right: 16px;
    }

    p {
        font-size: 11px !important;
    }

    body {
        min-height: 91.5vh;
    }

    #len-tête {
        transform: scale(70%);
    }
}