<style>
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body, html {
  font-family: "Roboto", sans-serif;
  color: #000000;
}

a {
  color: #47b2e4;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #87CEEB; /* Ciel bleu */
  display: flex;
  align-items: flex-end; /* Soleil commence en bas */
  justify-content: center;
  z-index: 9999;
}

/* Soleil */
#sun {
  width: 100px;
  height: 100px;
  background-color: #FFD700;
  border-radius: 50%;
  position: relative;
  bottom: 0;
  animation: sunrise-sunset 5s infinite ease-in-out;
}

/* Animation lever et coucher de soleil */
@keyframes sunrise-sunset {
  0% {
    transform: translateY(100px); /* Soleil en bas */
  }
  50% {
    transform: translateY(-300px); /* Soleil au sommet */
  }
  100% {
    transform: translateY(100px); /* Retour en bas */
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  height: 100vh;
  width: 100vw;
  
  background-size: cover;
  position: relative;
  background-position: center;
  object-fit: cover;
}

#hero:before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.60);
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 15px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 64px;
  font-family: "Satisfy", serif;
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#hero .btn-scroll {
  transition: 0.4s;
  color: rgba(255, 255, 255, 0.6);
  animation: up-down 1s ease-in-out infinite alternate-reverse both;
}

#hero .btn-scroll i {
  font-size: 48px;
}

#hero .btn-scroll:hover {
  color: #ffb727;
}

@media (max-width: 575px) {
  #hero h1 {
    font-size: 40px;
  }

  #hero h2 {
    text-align: center;
    margin-bottom: 30px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(-5px);
  }
}

.box-shadow1 {
    box-shadow: 0 16px 24px 2px black;

}

.bg-text {
  text-align: center;
  position: static;
  color: white;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #37517e;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Image et texte
--------------------------------------------------------------*/

/* Bottom right text */
.text-block {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: transparent;
  color: white;
  padding-left: 20px;
  padding-right: 20px;
}

.bg-text {
  text-align: center;
  position: static;
  color: white;
}

</style>