:root {
    --colorBody: black;
    --colorText: white;
    --ColorNumberOne: #1ea507d4;
    --ColorNumber2: #f30404d4;
    --ColorNumber3: #858582d4;
    --ColorNumber4: #f30404d4;
    --ColorNumber5: #858582d4;
    --colorText2: white;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0px;
    color: var(--colorText);
    background: var(--colorBody);
}

#prefond {
    position: fixed;
    background: linear-gradient(114deg, var(--ColorNumberOne), var(--ColorNumber2), var(--ColorNumberOne), var(--ColorNumber3));
    background-size: 400% 400%;
    animation: gradient 5s ease infinite;
    width: 20vw;
    height: 100vh;
    z-index: -2;
    top: 0vh;
    left: 40vw;
}

#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; /* Transition pour un effet de fondu */
	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: grey;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
    width: 12px;
}

::-webkit-scrollbar:horizontal {
    height: 12px;
}

::-webkit-scrollbar-thumb {
    background-color: silver;
    border-radius: 10px;
    border: 2px solid #ffffff;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #ffffff;
}

h1 {
    margin: 0;
}

h2 {
    margin: 0;
}

h3 {
    margin: 0;
}

p {
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    font-weight: 100;
    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;
    /* Safari seems to support, but seems deprecated and does the same thing as the others. */
    image-rendering: -webkit-optimize-contrast;
}

.alternative {
    background: linear-gradient(114deg, var(--ColorNumber2), var(--colorBody), var(--ColorNumber4), var(--colorBody));
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
    color: var(--colorText2);
}

.alternative2 {
    background: #000000c2;
}

.Format80 {
    width: 80vw;
    margin: 3vh 10vw 3vh;
}

.Format60 {
    width: 60vw;
    margin: 3vh 20vw 3vh;
}

@media screen and (orientation: portrait) {
    .Format60 {
        width: 80vw;
        margin: 3vh 10vw 3vh;
    }
}

.supertitle {
    font-size: 2.5em;
    text-transform: uppercase;
    font-weight: 100;
    padding: 1vh;
    text-align: center;
}

.title {
    font-size: 2em;
    text-transform: uppercase;
    font-weight: 100;
    padding: 1vh;
    text-align: center;
}

.subtitle {
    font-size: 1.5em;
    text-align: center;
    padding: 1vh;
}



@media screen and (orientation: portrait) {
    .supertitle {
        font-size: 2em;
    }

    .title {
        font-size: 1.5em;
    }

    .subtitle {
        font-size: 1.2em;
    }
}

@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.2), 0 6px 20px 0 rgba(200, 200, 200, 0.2);
}

.shadow2 {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
}

.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 {
    flex: 40%;
    margin: 20px;
    display: grid;
    align-content: center;
    max-width: 80vw;
    justify-content: center;
    justify-items: center;
}

.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: .7;
    margin-top: 75vh;
    border-radius: 50px;
    left: 75vw;
    display: flex;
	 transition: 1s ease-in;
}

.Boutique:hover {
	 transition: 1s ease-out;
    opacity: .95;

}

.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%;
    }
}

/* 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: grey;
}

@media screen and (orientation: portrait) {
    input {
        width: 80vw;
    }

    textarea {
        width: 80vw;
    }

    .ButtonForm {
        width: 80vw;
    }
}

/* contact */


/* Empechement du paysage */
#PortraitSVP {
  background-color: silver;
  color: black;
  width: 100vw;
  height: 100vh;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#PortraitSVP img {
  width: 30%;
}

/* Empechement du paysage */



#footer {

	background:black;
	display: flex;
    justify-content: center;
	padding:2vh;
	height:10vh;
	
	}
	
#footer p{
	
	font-size:12px;
	
	}
	
#footer a{
	
	color:blue;
	text-decoration:underline;
	
	}