@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800&family=Roboto:wght@100;300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');

body {
    margin: 0px;
    padding: 0px;
    top: 0px;
    background-color: #eae8dd;
}

section {
  margin: auto 5%;
}

#logo {
  max-width: 15%;
  margin-left: 0px;
  border-radius: 10%;
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 80px;
  color: white;
  z-index: 1000;
}

header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.header-content {
  display: flex;
  flex-direction: row;
}

#menu-icon {
  max-width: 15%;
}

nav {
  position: sticky;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  justify-content: space-evenly;
  align-items: center;
  overflow: hidden;
  transition: 0.50s;
  padding-top: 0;
  padding-bottom: 0;
  height: 50vh;
  width: 100%;
}

nav.hidden {
  height: 0px;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 10px 40px;
  border-radius: 10px;
  transition: 0.5s;
  background-color: #e98075;
}

nav a:hover {
  color: rgb(255, 255, 255);
}

h1{
    text-align: center;
    color: #e98075;
    animation: titreAnimation 1.5s ease-out;

}
h2 {
  font-family: 'Outfit', sans-serif;
}
p {
  font-family: 'Poppins';
}

a {
  font-family: 'Poppins';
}

#zoomed {
  display: flex;
  justify-content: center;
  margin: 50px auto;
  width: 70%;
  border-radius: 10%;
}
#gallery{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  gap: 5%;
  margin-bottom: 10%;
  margin: 5%;

}

#gallery *{
width: 17%;
}

#gallery img{
border-radius: 10px;
border: 100px;
border-color: black;
}

footer {
    margin-top: 50%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #e98075;
    color: white;
    gap: 5%;
    width: 100%;
    padding: 5%;
  }
  footer p {
    font-size: 14px;
    margin: 5px 0px;
    width: 60%;
  }
  
  .footer-link,
  .footer-contact-info, .footer-social {
    display: flex;
    flex-direction: column;
    
  }
  .footer-logo {
    align-items: flex-end;
  }
  
  .footer-social .footer-link, a {
    text-decoration: none;
    color: white;
    margin: 5px 0;
    font-size: 14px;
  }
  
  #logo-tiktok {
    max-width: 20%;
  }
  #logo-insta {
    max-width: 20%;
  }
  
  .footer-image {
    width: 24px;
    height: 24px;
    object-fit: cover;
  }

@media only screen and (min-width: 480px) {
    #menu-icon {
      display: none;
    }
  
    h1 {
      font-size: 60px;
    }
  
    nav {
      flex-direction: row;
    }
    nav.hidden {
      height: auto;
    }
    nav a {
      color:#e98075;
      text-decoration: none;
      transition: 1s;
      font-size: 16px;
      background-color: #dddddd00;
    }

  a.active, a:hover {
      color: white;
  }
  
  header{
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.5));
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
    header .container {
      display: flex;
      flex-direction: row;
      align-items: center;
    }
  
    button:hover {
      background: #ffffff;
      color: #e98075;
    }

  .contact h2{
    display: block;
  }
  #zoomed {
    display: flex;
    justify-content: center;
	  width: 20%;
    margin-bottom: 120px;
}
#gallery{
	  display: flex;
    flex-direction: row;
    justify-content: space-evenly;
	  gap: 5px;
    margin-bottom: 10%;

}
#gallery *{
	width: 10%;

}
#gallery img{
	border-radius: 20px;    
}

footer{
  padding: 5px;
  margin-top: 0%;
}
  }


  @keyframes titreAnimation {
    0% {
      transform: translateY(-50px);
      opacity: 0;
    }
    50% {
      transform: translateY(10px);
      opacity: 0.7;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }