@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';
  }

  .construction {
    margin-top: 10%;
    text-align: center;
}

.countdown {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

#timer {
    font-size: 32px;
    margin-top: 20px;
}

#days, #hours, #minutes, #seconds {
    display: inline-block;
    padding: 10px;
    background-color: #ff6347;
    color: white;
    border-radius: 5px;
    margin: 0 5px;
}

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;
    }

    footer{
        padding: 5px;
        margin-top: 18%;
      }
}