*{
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

body{
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}


header{
  width: 100%;
}

.navbar{
  position: absolute;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  font-size: 1.2em;
  z-index: 1;
}

.navbar a{
  color: white;
}

a:hover
{ /* Ajouter un style pour l'état de active */
color: #223edf9f;
}

.navbar .logo {
  font-family: 'Amatic SC', sans-serif;
  font-size: 2em;
  font-weight: bold; 
  color: white;
}

.navbar .nav-links ul {
  display: flex;

}

.navbar .nav-links ul li {
  margin: 0 25px;
}

.navbar .nav-links ul li.active a {
  color: red;
  font-weight: 600;
}

.navbar .menu-hamb {
  display: none;
  position: absolute;
  width: 60px;    
  top: 10px;
  right: 30px;
}

.hero-section {
  display: flex;
  height: 450px;
  color: #fff;
}

.hero-section1 {
  display: flex;
  height: 100vh;
  color: #fff;
  flex-direction: column;
}

.hero-section1 video {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-section img {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 450px;
  object-fit: cover;
  z-index: -1;
}

.hero-section h1 {
  width: 100%;
  font-family: 'Amatic SC', sans-serif;                                                
  font-size: 4rem;
  text-align: center;
  margin-top: 25vh;
  user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}

.hero-section1 h1 {
  width: 100%;
  font-family: 'Amatic SC', sans-serif;                                                
  font-size: 6rem;
  text-align: center;
  margin-top: 25vh;
  user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}

@media screen and (max-width: 1250px) {
  .navbar{
      padding: 0;
  }
  
  .navbar .logo {
      font-family: 'Amatic SC', sans-serif;
      position: absolute;
      top: 20px;
      left: 50px;
  }

  .navbar .menu-hamb{
      display: block;
  }
  .nav-links{
      top: 0;
      left: 0;
      position: absolute;
      background-color: rgba(255, 255, 255, 0.20);
      backdrop-filter: blur(7px);
      width: 100%;    
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-left: -100%;
      transition: all 0.5s ease;   
  }

  .nav-links.mobile-menu {
      margin-left: 0;
  }

  .nav-links ul {
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .navbar .nav-links ul li {
      margin: 25px 0;
      font-size: 1,2em;
  }
}

footer {
  flex-shrink: 0;
  border-top: 1px dashed #000;
  width: 100%;
  background: #f1f1f1;
  color: #333;
}

.contenu-footer {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-size: 15px;
}

.bloc {
  width: 230px;
  max-width: 0 30px;
  box-sizing: border-box;
  text-align: center;
  margin: 0 50px;
  padding-top: 60px;
}

.footer-contact h3,
.footer-services h3,
.footer-horaire h3,
.footer-media h3 {
  font-size: 25px;
  padding-bottom: 20px;
  color: #223edf9f;
}

.footer-contact p{
  padding: 5px 0;
}

.liste-services,
.liste-horaire,
.liste-media {
  list-style-type: none;
}
.liste-services li {
  padding: 2px 0;
}
.liste-services a {
  text-decoration: none;
  color: #333;
}
.liste-services a:hover {
  color: rgb(3,3,3);
}
.liste-media img {
  width: 30px;
  margin: 10px 10px;
  height: 30px;
}
.liste-media a {
  width: 150px;
  text-decoration: none;
  color: #333;
  display: flex;
  justify-content: start;
  align-items: center;
}
.liste-media li {
  display:flex;
  justify-content:center;
  align-items: center;    
}

@media screen and (max-width: 1300px) {
  
  .contenu-footer {
      width: 700px;
      flex-wrap: wrap;
  }
  .bloc {
      width: 40%;
      margin: 0 0;
  }
  .bloc:nth-child(1),
  .bloc:nth-child(2) {
      margin-bottom: 50px;
  }
}

@media screen and (max-width: 800px) {
  .contenu-footer {
      width: 320px;
  }
  .bloc {
      width: 300px;
      margin: 30px 30px;
  }
  .bloc:nth-child(1),
  .bloc:nth-child(2) {
      margin-bottom: 30px;
  }
  .bloc:nth-child(1) {
      margin-top: 0;
  }
  .navbar .logo {
      left: 30px;
  }
}

@media screen and (max-width: 1300px) {
  
  .contenu {        
      flex-wrap: wrap;
  }
  .contenu p {
      max-width: 395px;
      margin: 5 0;
  }
  .contenu p:nth-child(1),
  .contenu p:nth-child(2) {
      margin-bottom: 50px;
  }
}

@media screen and (max-width: 800px) {
  .contenu p {
      margin: 30px 30px;
      margin: 5 0;
  }
  .contenu p:nth-child(1),
  .contenu p:nth-child(2) {
      margin-bottom: 30px;
  }
}


.arrondie {
  -moz-border-radius:7px;
  -webkit-border-radius:7px;
  border-radius:7px;
  }

@media screen and (max-width: 800px) {
  .hero-section1 h1{
    display: none;
  }
}

@media screen and (max-width: 470px) {
  
  .hero-section h1{
    margin-top: 15vh;
  }
}

.footer-contact a {
  text-decoration: none;
  color: #333;
}

.footer-horaire a {
  text-decoration: none;
  color: #333;
}