/* Ce fichier CSS reset est utilisé : https://cdn.githubraw.com/elad2412/the-new-css-reset/main/css/reset.css */

/* On active la grille de 2 colonnes quand le point de rupture est atteint */
@media (min-width: 576px) {
  .website {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
  }
}

.primary {
  grid-row: 2 / span 2;
}

.main {
  grid-row: 2;
  grid-column: 2;
}

.article {
  grid-row: 3;
  grid-column: 2 / span 2;
}

.secondary {
  grid-row: 2;
  grid-column: 3;
}

.header,
.footer {
  grid-column: 1 / -1;
}

/* Bonus : Toute la hauteur ? */
.website {
  min-height: 100vh;
}

/* Bonus : Centré ? */
//.website {
  max-width: 800px;
  margin: 0 auto;
}

/* Base */
body {
  margin: 0;
  font-size: 1rem;
  background-color: #fff;
  color: #212529;
  font-family: "Butler", serif;
  line-height: 1.5;
}

/* Decoration optionnelle (juste pour la demo) */
ul {
  background: #bbb;
  padding: 1rem;
}
li {
  background: #ccc;
}
article {
  background: #50817d;
  padding: 1rem;
}
[class*="grid"] > * {
  background: #ccc;
  padding: 1rem;
}
header,
footer {
  background: #dee7e7;
  padding: 1rem;
}
main {
  background: #bdd0ce;
  padding: 1rem;
}
aside {
  background: #87a9a5;
  padding: 1rem;
}
a {
  color: #212529;
}
.navigation-link {
  padding: 1rem;
  display: block;
}

.navigation-link:hover,
.navigation-link:focus {
  background: rgba(0, 0, 0, 0.15);
}

/* Vos styles ici */
@font-face {
  font-family: "Butler";
  src: url("Butler-UltraLight.woff2") format("woff2"),
    url("Butler-UltraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Butler";
  src: url("Butler-Medium.woff2") format("woff2"),
    url("Butler-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Butler";
  src: url("Butler-Light.woff2") format("woff2"),
    url("Butler-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Butler";
  src: url("Butler-Black.woff2") format("woff2"),
    url("Butler-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Butler";
  src: url("Butler-Bold.woff2") format("woff2"),
    url("Butler-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Butler";
  src: url("Butler-ExtraBold.woff2") format("woff2"),
    url("Butler-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Butler";
  src: url("Butler.woff2") format("woff2"), url("Butler.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/*------------------------------------*\
	VARIABLES
\*------------------------------------*/

:root {
  --orange: #e7755e;
  --bleu: #487aff;
  --gris: #777777;
  --gris-clair: #dddddd;
  --gris-fonce:#333333;
  --vert-fonce: #195a54;
  --vert-clair: #a9c97c;
}
.flex{
  display: flex;
  justify-content: space-between;
  align-items:center;
}
.wrap{
  flex-wrap: wrap;
}
header{
	/* background: var(--gris-clair); */
	color: var(--gris-fonce);
  text-align: center;
}
header p{
  width: 100%;
  margin: 0;
}
aside p a{
  color: var(--vert-fonce);
}
h1{
	color: var(--vert-fonce);
  width: 100%;
  text-align: center;
}
h2{
  width: 100%;
  text-align: center;
  font-size: 20px;
}
h2.vert{
  color: var(--orange);
}
h2.bleu{
  color: var(--bleu);
}
h3{
	color: var(--orange);
}
.adresse{
  text-align: center;
  width: 35%;
}
.plan{
  width: 65%;
}
article.vert{
  text-align: center;
  width: 100%;
}
article p{
  width: 100%;
  text-align: center;
}
.full{
  width: 100%;
}
strong{
  color: var(--vert-clair);
  font-size: 20px;
}


