@charset "UTF-8";

@font-face {
  font-family: 'SuisseBPIntl-Bold';
src: url(./../fonts/SuisseBPIntl-Bold.ttf);
}

@font-face {
  font-family: 'SuisseBPIntl-Medium';
src: url(./../fonts/SuisseBPIntl-Medium.otf);
}

@font-face {
  font-family: 'SuisseBPIntl-Regular';
src: url(./../fonts/SuisseBPIntl-Regular.otf) ;
}


body {
  width: 100vw;
  height: 100vh;
  font-family: "SuisseBPIntl-Medium";
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
}

header {
  position: fixed;
  max-width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  right: 25px;
  padding-bottom: 25px;
  padding-top: 120px;
  z-index: 10;
}

main {
  min-height: 100svh;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-direction: column;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

body.is-red {
  background-color: black;
}

body.is-blue {
  background-color: rgb(235, 235, 235);
}

h1 {
  padding-top: 50px;
  transition: color 0.3s;
  font-size: 17vw;
  text-align: center;
  position: relative;
  font-family: "SuisseBPIntl-Medium";
  line-height: 0.8;
  transition: filter 0.5s;
  filter: blur(20px);
}

h1:hover {
  color: black;
  filter: blur(0px);
}

.is-red h1 {
  color: rgb(235, 235, 235);
}

.background-image-grace-01 {
  position: absolute; /* Pour couvrir tout l'écran */
  width: 40%;
  height: 75%;
  top: 50%;
  left: 50%;
  z-index: -1; /* Pour mettre l'image derrière les autres contenus */
  background-image: url("./../images/Grace_01.png"); /* Assurez-vous que le chemin est correct */
  background-size: cover; /* ou `contain` selon vos besoins */
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%);
}

h2 {
  color: rgb(235, 235, 235);
  font-size: 50px;
}


footer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.fixed-bottom-center {
  position: fixed; /* Fixe l'élément par rapport à la fenêtre de visualisation */
  bottom: 0; /* Place l'élément en bas de la fenêtre */
  left: 50%; /* Centre l'élément horizontalement */
  transform: translateX(-50%);
  text-align: center;
  color: rgb(235, 235, 235);
  font-family: "SuisseBPIntl-Medium";
  font-size: 20px;
  padding: 10px; /* Ajoute du padding pour le confort visuel */
  text-decoration: none; /* Enlève le soulignement par défaut des liens */
  width: 100%; /* Assurez-vous que le lien est centré */
  box-sizing: border-box; /* Inclut le padding et la bordure dans la largeur totale */
}

.is-blue .fixed-bottom-center {
  /* display: none; */
  color: black;
}

.fixed-bottom-center:hover {
  text-decoration: underline; /* Ajout d'un effet visuel au survol */
}

.two-images-container {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  flex-wrap: wrap;
  height: auto;
}
.paragraph {
  width: 40vw;
  height: 50vh;
}

.image-half {
  width: 30%;
  padding: 2rem;
}

@media screen and (max-width: 600px) {
  .image-half {
    width: 60%;
  }
}
