:root {
    --colorBody: transparent;
    --colorText: white;

    --ColorNumberOne: #d96c1c;   /* orange principal */
    --ColorNumber2: #f3c89f;     /* orange sable */
    --ColorNumber3: #8c4b1f;     /* brun chaud */
    --ColorNumber4: #fff7f1;     /* blanc chaud */
    --ColorNumber5: #ffb067;     /* orange clair accent */
    --colorText2: white;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--colorText);
    background: linear-gradient(114deg, var(--ColorNumberOne), var(--ColorNumber2), var(--ColorNumberOne), var(--ColorNumber3));
    background-size: 200% 200%;
    animation: gradient 20s ease infinite;
}

.Body {
    scroll-behavior: smooth;
    background-image: url('images/fond.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: auto;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Portrait mode → image différente */
@media (orientation: portrait) {
    .Body {
        background-image: url('images/fondP.png');
        background-size: contain;
    }
}

#prefond {
    position: fixed;
    background: white;
    width: 15vw;
    height: 100vh;
    z-index: -2;
    top: 0vh;
    left: 65vw;
}

#fond {
    position: fixed;
    background-image: url(images/fond.jpg);
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 90vw;
    left: 5vw;
    height: 50vh;
    z-index: -1;
    top: 35vh;
    transition: background-image 1s ease;
    display: none;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

a {
    color: var(--colorText);
    text-decoration: none;
}

a:hover {
    color: #ffe1c4;
}

a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}

/* Pour Chrome, Safari et Opera */
::-webkit-scrollbar {
    display: none;
}

/* Pour Firefox */
body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.Body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.Body::-webkit-scrollbar {
    display: none;
}

h1,
h2,
h3 {
    margin: 0;
}

p {
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    font-weight: 300;
    padding: 3vh;
}

hr {
    display: block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: auto;
    margin-right: auto;
    border-style: inset;
    border-width: 10px;
    border-color: var(--colorText);
}

.margin-top-10 {
    padding-top: 10px;
}

.line-break {
    border-bottom: 3px solid var(--colorText);
    width: 60vw;
    margin: 0 auto;
    margin-bottom: 6vh;
}

img {
    image-rendering: auto;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    image-rendering: -webkit-optimize-contrast;
}

.alternative {
    background: linear-gradient(114deg, var(--ColorNumber2), var(--ColorNumberOne), var(--ColorNumber2), var(--ColorNumberOne));
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
    color: var(--colorText2);
}

.alternative2 {
    background: rgba(0, 0, 0, 0.76);
}

.flex {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    padding: 2vh;
}

.Format80 {
    width: 80vw;
    margin: 3vh 10vw 3vh;
}

.Format60 {
    width: 60vw;
    margin: 3vh 20vw 3vh;
}

.Format60bis {
    width: 60vw;
    margin: 3vh 20vw 3vh;
    background-color: rgba(181, 94, 29, 0.82);
    height: 60vh;
}

.Format20 {
    width: 20vw;
    height: 20vw;
    margin: 3vh 40vw 3vh;
}

.Photo {
    width: 15vw;
    border-radius: 10%;
    background: linear-gradient(114deg, #4a2817, #b85a1b, #f1a35e, #fff0e2);
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
    margin: 5vh;
}

.Photo img {
    width: 95%;
    height: auto;
    border-radius: 10%;
}

.Photo2 {
    width: 15vw;
    border-radius: 10%;
    background: linear-gradient(114deg, #4a2817, #b85a1b, #f1a35e, #fff0e2);
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    margin: 5vh;
}

.Photo2 img {
    width: 95%;
    height: auto;
    border-radius: 10%;
}

@media screen and (orientation: portrait) {
    .Photo,
    .Photo2 {
        width: 70vw;
        float: unset;
        margin: 4% 4% 4% 7%;
    }
}

@media screen and (orientation: portrait) {
    .Format60 {
        width: 80vw;
        margin: 3vh 10vw 3vh;
    }

    .Format60bis {
        width: 80vw;
        margin: 3vh 10vw 3vh;
        height: 60vh;
    }

    .Format20 {
        width: 40vw;
        height: 40vw;
        margin: 3vh 30vw 3vh;
    }
}

.supertitle {
    font-size: 2.5em;
    text-transform: uppercase;
    font-weight: 300;
    padding: 1vh;
    text-align: center;
}

.title {
    font-size: 2em;
    text-transform: uppercase;
    font-weight: 300;
    padding: 1vh;
    text-align: center;
}

.subtitle {
    font-size: 1.5em;
    text-align: center;
    padding: 1vh;
}

@media screen and (orientation: portrait) {
    .supertitle {
        font-size: 2em;
        padding: 3vh;
    }

    .title {
        font-size: 1.5em;
    }

    .subtitle {
        font-size: 1.2em;
        padding: 3vh;
    }
}

@media screen and (orientation: landscape) and (max-width: 1024px) {
    .supertitle {
        font-size: 1.5em;
    }

    .title {
        font-size: 1.2em;
    }

    .subtitle {
        font-size: 1.1em;
    }
}

.shadow {
    box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.18), 0 6px 20px 0 rgba(255, 214, 177, 0.18);
}

.shadow2 {
    box-shadow: 4px 4px 8px 20px rgba(140, 75, 31, 0.42), 8px 48px 34px 20px rgba(217, 108, 28, 0.25);
}

.radius {
    border-radius: 2vh;
}

#BaliseH1 {
    width: 92%;
    margin: 4%;
}

.row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    width: 92%;
    margin: 4%;
}

.column,
.column1 {
    flex: 40%;
    margin: 20px;
    display: grid;
    align-content: center;
    max-width: 80vw;
    justify-content: center;
    justify-items: center;
}

.column2 {
    flex: 30%;
    margin: 20px;
    display: grid;
    align-content: center;
    max-width: 80vw;
    justify-content: center;
    justify-items: center;
}

.Boutique {
    position: fixed;
    width: 20vw;
    height: 12vh;
    background-color: var(--ColorNumberOne);
    z-index: 1000;
    opacity: .85;
    margin-top: 75vh;
    border-radius: 50px;
    left: 75vw;
    display: flex;
    transition: 1s ease-in;
    justify-content: center;
    border: 4px ridge rgba(255, 255, 255, 0.95);
}

.Boutique:hover {
    transition: 1s ease-out;
    opacity: .98;
}

.Boutique img {
    width: 15%;
}

.Boutique a {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--colorText);
}

@media screen and (orientation: portrait) {
    .Boutique {
        width: 70vw;
        height: 10vh;
        left: 15vw;
        margin-top: 80vh;
    }

    .Boutique img {
        width: 15%;
    }
}

.Depannage img {
    width: 30%;
    border-radius: 2vh;
}

.Boutique2 {
    position: relative;
    width: 25vw;
    height: 12vh;
    background-color: var(--ColorNumberOne);
    z-index: 1000;
    opacity: .8;
    border-radius: 50px;
    display: flex;
    transition: 0.5s ease-in;
    justify-content: center;
}

.Boutique2:hover {
    border-radius: 15px;
}

.Boutique2 a {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--colorText);
}

#Decennale1 img {
    width: 50%;
    border-radius: 2vh;
}

@media screen and (orientation: portrait) {
    .Depannage img {
        width: 100%;
    }

    .Boutique2 {
        width: 70vw;
        height: 10vh;
        position: relative;
    }

    .Boutique2 img {
        width: 15%;
    }
}

/* contact */

input {
    width: 30vw;
    padding: 6px 10px;
    margin: 8px 0;
    box-sizing: border-box;
    margin-left: 0vw;
    background-color: transparent;
    color: white;
    border: solid white 1px;
}

input::placeholder {
    font-style: italic;
    color: white;
}

textarea {
    width: 30vw;
    padding: 6px 10px;
    margin: 8px 0;
    box-sizing: border-box;
    margin-left: 0vw;
    background-color: transparent;
    color: white;
    border: solid white 1px;
}

textarea::placeholder {
    font-style: italic;
    color: white;
}

.ButtonForm {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 50px;
    width: 30vw;
    margin-left: 0vw;
}

.ButtonForm:hover {
    background-color: rgba(255, 176, 103, 0.28);
}

@media screen and (orientation: portrait) {
    input {
        width: 80vw;
    }

    textarea {
        width: 80vw;
    }

    .ButtonForm {
        width: 50vw;
    }
}

/* contact */

#SectionArticle {
    min-width: 90vw;
    max-width: 90vw;
    margin-left: 5vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10px;
    position: relative;
    border-radius: 3vh;
}

#SectionArticleText {
    display: grid;
    align-content: center;
    color: white;
    justify-items: center;
}

/* Container for flexboxes */
.rowPresentation {
    display: flex;
    flex-wrap: wrap;
    top: 15vh;
    width: 90vw;
    justify-content: center;
}

/* Create two equal columns */
.columnPresentationA {
    flex: 60%;
    padding: 2vh;
    margin: 2vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    hyphens: auto;
    text-align: justify;
}

.columnPresentationA .title {
    font-size: 2em;
    text-align: center;
    color: white;
    margin: 2vh;
}

.columnPresentationA .text {
    text-align: justify;
    hyphens: auto;
    color: white;
    margin: 2vh;
}

.columnPresentationA ul {
    max-width: 30vw;
    margin: 2vh;
}

@media only screen and (orientation: portrait) {
    .columnPresentationA .title {
        font-size: 1.3em;
    }

    .columnPresentationA ul {
        max-width: 50vw;
        margin: 2vh;
        font-size: 1em;
    }
}

.columnPresentationA ul .title {
    font-size: 1.1em;
    text-align: center;
    color: white;
    margin: 2vh;
    font-weight: 700;
}

.columnPresentationB {
    flex: 25%;
    padding: 3vh;
    margin: 3vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: white;
    border-radius: 3vh;
    height: fit-content;
}

.underMenu {
    font-size: 2em;
    padding: 2vh;
}

@media only screen and (orientation: portrait) {
    .underMenu {
        font-size: 1.3em;
    }
}

.underMenu li {
    margin: 0 0 2vh 0;
}

.underMenu a {
    color: white;
    text-decoration: underline;
    margin: 0;
}

#footer {
    background: black;
    display: flex;
    justify-content: center;
    height: 10vh;
}

#footer p {
    font-size: 12px;
}

#footer a {
    color: #ffb067;
    text-decoration: underline;
}