/*------------------------------------------------------------------
corps
------------------------------------------------------------------ */

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

.wrapper {
  max-width: 1170px;
  margin: auto;
}

.fond {
  background-image: url(../images/fond.jpg);
  background-size: cover;
}

img .ligne {
  width: 1170px;
}

/*------------------------------------------------------------------
texte
------------------------------------------------------------------ */

h1 {
  font-family: "Bungee Inline", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 90px;
  line-height: 105%;
  letter-spacing: 10px;
  text-transform: uppercase;
  align-content: center;
}

h2 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 60px;
  line-height: 115%;
  letter-spacing: 2px;
  text-transform: uppercase;
  align-content: center;
}

h3 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  line-height: 108%;
  letter-spacing: 1px;
}

h4 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 115%;
}

p {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  line-height: 150%;
}

.BTN {
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  line-height: auto;
  letter-spacing: 3px;
  text-transform: uppercase;
}

a {
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 2px;
}

/*------------------------------------------------------------------
Header
------------------------------------------------------------------ */

header {
  background-image: url(../images/fond\ header.jpg);
  height: auto;
}

header .wrapper {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav ul {
  display: flex;
  justify-content: flex-end;
  margin-left: 371px;
}

nav li {
  list-style: none;
  margin-left: 86px;
}

nav a {
  text-decoration: none;
  color: #123C52;
}

nav a:hover {
  font-weight: bold;
  color: #E48927;
  text-decoration: underline;
}

/*------------------------------------------------------------------
Hero
------------------------------------------------------------------ */

.Hero {
  background-image: url(../images/Hero\ fond\ 1.png);
  height: 900px;
  background-repeat: no-repeat;
  background-size: cover;
}

.Hero .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.Hero img {
  height: 419px;
  width: 540px;
  margin-top: 75px;
}

.Hero h1 {
  margin-top: 20px;
  /* a faire verifier */
  background: linear-gradient(180deg, #FFFEF8, #C4AA9E);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lineaire-simple {
  background: linear-gradient(#FFFEF8, #C4AA9E);
}

/*------------------------------------------------------------------
Section Dino
------------------------------------------------------------------ */

.Dinos .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.Dinos .tuilegauche,
.Dinos .tuiledroite {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 85px;
  height: 234px;
  width: 1170px;
}

.Dinos article {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.Dinos .tuiledroite aside {
  order: -1;
}

.Dinos .tuiledroite article div {
  order: -1;
}

h2 {
  color: #55C679;
  margin-bottom: 4px;
  margin-top: 52px;
}

h3 {
  color: #EEE6D2;
  margin-top: 4px;
  margin-bottom: 20px;
}

/*------------------------------------------------------------------
Dinos tuiles
------------------------------------------------------------------ */

.Dinos article {
  border: #123243 2px solid;
  border-radius: 5px;
  height: fit-content;
  width: fit-content;

}

.Dinos article div {
  width: 528px;
  height: 234px;
  padding: 5px 10px 5px 10px;
  background-image: url(../images/fond\ header.jpg);
}

.Dinos article div h3 {
  color: #123C52;
  margin-top: 6px;
  margin-bottom: 12px;
}

.Dinos article div h4 {
  color: #E48927;
  margin-top: 0;
  margin-bottom: 12px;
}

.Dinos article div p {
  color: #123C52;
  margin-top: 0;
  margin-bottom: 0;

}

.Dinos article div span {
  float: left;
}

.Dinos article div .BTN {
  background-color: #55C679;
  color: #123C52;
  padding: 0 11px 0 11px;
  border-radius: 5px;
  float: inline-end;
  text-decoration: none;
  margin-top: 10px;
}

.Dinos article div .BTN:hover {
  background-color: #123C52;
  color: #55C679;
  border: #55C679 2px solid;
  text-decoration: none;
}

.Dinos aside div {
  background-color: #0A222F;
  opacity: 75%;
  padding: 10px;
  height: 234px;
  width: 260px;
}

.Dinos aside div h3 {
  color: #55C679;
  margin-top: 10px;
  margin-bottom: 10px;
}

.Dinos aside div p {
  color: #EEE6D2;
  padding: 0;
}

.Dinos .tuilegauche article div {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.Dinos .tuilegauche article img {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.Dinos .tuiledroite article div {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.Dinos .tuiledroite article img {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

/*------------------------------------------------------------------
Section Maps
------------------------------------------------------------------ */

.Maps .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.Maps img {
  width: 1170px;
  margin: auto;
  align-self: center;
}

/*------------------------------------------------------------------
Section Workshop
------------------------------------------------------------------ */

.Workshop .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.Workshop h3 {
  text-align: center;
}

.Workshop .wrapper .tuilesworkshop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 31.5px;
  margin-bottom: 60px;
}

.Workshop .wrapper .tuilesworkshop article {
  background-image: url(../images/fond\ header.jpg);
}

.Workshop .wrapper .tuilesworkshop article div {
  height: 151px;
  padding: 0px 20px 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.Workshop .wrapper .tuilesworkshop div h3 {
  text-align: left;
  color: #E48927;
  margin: 0;
}

.Workshop .wrapper .tuilesworkshop div a {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 35px;
  line-height: 108%;
  letter-spacing: 1px;
  text-decoration: none;
  color: #123C52;
  margin: 0;
}

.Workshop .wrapper .tuilesworkshop div a:hover {
  font-weight: 900;
  text-decoration: underline;
}

.Workshop .wrapper .tuilesworkshop div hr {
  color: #123C52;
  margin: 0;
  border: 1.5px #123C52 solid;
}

.Workshop .wrapper .tuilesworkshop div ul {
  display: flex;
  padding: 0;
  gap: 12px;
  align-items: center;
  margin: 0;
}

.Workshop .wrapper .tuilesworkshop div li {
  list-style: none;
  color: #123C52;
}

/*------------------------------------------------------------------
Section DLC
------------------------------------------------------------------ */

.DLC .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.DLC h3 {
  text-align: center;
}

.DLC .wrapper .tuilesDLC {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 31.5px;
  margin-bottom: 60px;
}

.DLC .wrapper .tuilesDLC article {
  background-color: #0A222F;
  width: 371px;
  height: 400px;
  border: #55C679 1px solid;
  border-radius: 5px;
}

.DLC .wrapper .tuilesDLC article h4 {
  text-align: center;
  color: #0A222F;
  background-color: #55C679;
  background-size: cover;
  margin: 0;
  padding: 8px 0 8px 0;
}

.DLC .wrapper .tuilesDLC article div {
  padding: 0 10px 0 10px;
}

.DLC .wrapper .tuilesDLC article div {
  text-align: center;
}

.DLC .wrapper .tuilesDLC article div .BTN {
  background-color: #E48927;
  color: #0A222F;
  padding: 5px 20px 5px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
}

.DLC .wrapper .tuilesDLC article div .BTN:hover {
  background-color: #123C52;
  color: #E48927;
  border: #E48927 2px solid;
  text-decoration: none;
}

.DLC .wrapper .tuilesDLC article div p {
  color: #EEE6D2;
  margin: 12px 0 14px 0;
}
.DLC .wrapper .tuilesDLC .DLCcomingsoon {
  align-content: center;
  
}
.DLC .wrapper .tuilesDLC .DLCcomingsoon h3{
  color: #ca1e44;
}

/*------------------------------------------------------------------
Footer
------------------------------------------------------------------ */
.fondfooter {
  background-color: #123243;
}

footer .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px
}

footer .wrapper nav ul {
  display: flex;
  padding: 0;
  gap: 15px;
  align-items: center;
  margin: 0;
  align-content: center;
}

footer .wrapper li {
  list-style: none;
  margin-left: 0;
}

footer .wrapper nav {
  margin-top: 12px;
}

footer .wrapper nav ul {
  gap: 40px;
}

footer .wrapper nav img {
  margin-left: 30px;
  margin-right: 30px;
}

footer .wrapper nav a {
  color: #EEE6D2;
}

footer .wrapper nav a:hover {
  color: #E48927;
  font-weight: bolder;
  text-decoration: underline;
}

footer .wrapper p {
  color: #EEE6D2;
  text-align: center;
}

footer .wrapper .ligne {
  width: 1440px;
}

footer .wrapper nav div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

footer .wrapper nav div ul li img {
  margin: 0;
}

footer .wrapper nav div a:hover {
  color: #E48927;
}