@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #256d1b;
  --secondary-color: #f05a28;
  --light: #fff;
  --dark: #111827;
  --white: #faf7f7;
}

body {
  background-color: var(--light);
  font-family: "Poppins", sans-serif;
}

/* Top Bar */
#top,
footer {
  background-color: var(--primary-color);
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 12px 20%;
  color: var(--light);
}

#top #icons img {
  width: 24px;
}

#contact_infos {
  display: flex;
  margin-left: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--light);
}

#contact_infos_sr {
  margin-left: 20px;
}

/* Navigation Menu */
menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 10px auto;
  max-width: 60%;
  width: 100%;
}

#logo {
  display: flex;
  width: 163px;
  cursor: pointer;
}

#logo img {
  width: 100%;
}

#menu_lists ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

#menu_lists ul li {
  list-style: none;
  padding-inline: 10px;
}

#menu_lists ul li a,
#book_appointment_btn {
  text-decoration: none;
  text-transform: uppercase;
  color: var(--dark);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

#menu_lists ul li .active {
  font-weight: 700;
  color: var(--secondary-color);
}

#book_appointment_btn {
  background-color: var(--secondary-color);
  color: var(--light);
  border-radius: 2px;
  padding: 4px 20px;
  font-weight: 700;
  transition: 100ms all ease-in-out;
}

#book_appointment_btn:hover {
  background-color: var(--light);
  color: var(--secondary-color);
  outline: 1px solid var(--secondary-color);
}

#hamburger_menu {
  display: none;
  width: 35px;
}

#hamburger_menu img {
  width: 100%;
}

/* Footer */
footer {
  display: block;
  justify-content: space-between;
  flex-wrap: wrap;
}

#footer_infomations {
  display: flex;
  max-width: 100%;
  justify-content: space-between;
  /* background-color: red; */
}

#footer_logo {
  width: 215px;
  margin-inline: auto;
  margin-block: 25px;
}

#footer_logo img {
  width: 100%;
}

#footer_left {
  max-width: 45%;
}

#addr_pp,
#addr_ss {
  margin-block: 10px;
}

#footer_extra_infos {
  max-width: 50%;
}

#footer_slogan {
  font-size: 25px;
  font-weight: 600;
  margin-block: 10px;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
}

#footer_quick_links_socials {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  /* background-color: blue; */
}

#footer_quick_links,
#footer_socials {
  /* width: 50%; */
}

#footer_quick_links h3,
#footer_socials h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}

#footer_quick_links ul li {
  list-style: none;
}

#footer_quick_links ul li a {
  text-transform: uppercase;
  text-decoration: none;
  color: var(--light);
  font-size: 18px;
  font-weight: lighter;
  line-height: 30px;
}

#footer_socials h3 {
  margin-bottom: 5px;
}

#social_icons {
  display: flex;
  margin-block: 10px;
}

#social_icons a {
  width: 35px;
  margin-inline: 3px;
}

#social_icons img {
  width: 100%;
}

#social_icons img:hover {
  border: #f05a28 solid 1px;
}

/* FORM */

/* Responsive */
/* @media (max-width: 1024px) {
  
} */

@media (max-width: 1340px) {
  menu {
    max-width: 80%;
  }

  #menu_lists ul li {
    padding-inline: 10px;
  }
}
/* @media (max-width: 480px) */
@media (max-width: 1024px) {
  #top {
    display: none;
  }

  #logo {
    width: 150px;
  }

  menu {
    display: block;
    max-width: 90%;
  }

  #menu_lists ul {
    display: none;
    text-align: center;
    line-height: 35px;
  }

  #menu_lists ul li a {
    font-size: 20px;
  }

  #book_appointment_btn {
    display: none;
    justify-content: center;
    padding-block: 10px;
    margin-inline: auto;
    width: 80%;
  }

  #mobile_version {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #hamburger_menu {
    display: block;
  }

  #menu_lists ul,
  #book_appointment_btn {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  #menu_lists ul.show_menu,
  #book_appointment_btn.show_menu {
    opacity: 1;
    visibility: visible;
  }

  #menu_lists ul.show_menu {
    display: block;
  }

  #book_appointment_btn.show_menu {
    display: flex;
  }

  footer {
    display: block;
    padding: 10px 0px;
  }

  #footer_infomations {
    display: block;
  }

  #footer_logo {
    width: 150px;
    margin-inline: auto;
    margin-top: 15px;
  }

  #footer_left {
    max-width: 90%;
    margin-inline: auto;
    padding-inline: 20px;
    text-align: center;
  }

  #footer_extra_infos {
    max-width: 100%; /* Ensure other sections also take full width */
    padding-inline: 20px;
  }

  #footer_slogan {
    font-size: 20px;
    font-weight: 900;
    padding-block: 20px;
    text-align: center;
    width: 90%;
    margin-inline: auto;
  }

  #footer_quick_links_socials {
    flex-direction: column; /* Stack links/socials */
  }

  #footer_quick_links,
  #footer_socials {
    width: 100%;
    margin-bottom: 20px;
  }

  #addr_pp,
  #addr_ss {
    margin-block: 10px;
    text-decoration: none;
  }

  #footer_quick_links {
    display: none;
  }

  #footer_socials {
    text-align: center;
  }

  #footer_socials h3 {
    margin-block: 10px;
    font-size: 20px;
    font-weight: 700;
  }

  #social_icons {
    margin-inline: auto;
    max-width: 90%;
    justify-content: center;
  }
}
