/* <++++++++++++++++++++++++++  Navbar  ++++++++++++++++++++++++++++++> */

.header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  color: #1a1a1a;
  width: 100%;
  z-index: 100;
  border-bottom: 2px solid #009443;
}

.navbar {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-link {
  color: #1a1a1a;
  transition: color 0.3s;
  font-weight: 400;
}

.nav-link:hover {
  color: #009443;
}

.nav-link-lang {
  /* display: inline-block; */
  padding: 0.25rem 0.5rem; /* Adjust padding for size */
  background-color: #fff; /* Button color */
  color: #1a1a1a; /* Text color */
  border: none; /* No border */
  border-radius: 50px; /* Makes it pill-shaped */
  text-align: center; /* Center text */
  text-decoration: none; /* No underline */
  /* font-size: 16px; Font size */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.5s; /* Smooth transition */
}

.nav-link-lang:hover {
  background-color: #009443;
  color: #fff;
}

.nav-menu-btn,
.nav-close-btn {
  /* display: flex; */
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-menu-list {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 1.3rem;
  font-size: 1.1rem;
}

.nav-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

@media screen and (max-width: 1023px) {
  .nav-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    padding-block: 3.5rem;
    background-color: #fff;
    display: none;
    transition: top 0.5s;
    transition: display 0.5s;
    /* opacity: 0; */
  }
}
.show-menu {
  top: 0;
  /* opacity: 1; */
  display: initial;
}

/* <++++++++++++++++++++++++++  contact form  ++++++++++++++++++++++++++++++> */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-container {
  /* background-color: rgb(218, 144, 92); */
  width: 60%;
}
.contact-form {
  /* width: 100%; */
  display: flex;
  flex-direction: column;
  /* text-align: center; */
}

.form-control {
  margin-bottom: 1.5rem;
}

.form-label {
  font-size: var(--h2-font);
  color: #009443;
}

.form-input {
  padding: 0.3rem;
  width: 100%;
  border: 1px solid #009443;
  border-radius: 5px;
  outline: none;
  height: 45px;
  font-family: var(--body-font);
  font-size: 18px;
}

.form-control option {
  font-family: var(--body-font);
}

/* input[type="submit"] {
  text-align: center;
} */

.submit-div {
  text-align: center;
}

textarea {
  width: 100%;
  outline: none;
  border: 2px solid #009443;
  border-radius: 5px;
}

/* <++++++++++++++++++++++++++  footer section  ++++++++++++++++++++++++++++++> */

.footer {
  padding-block: 2.5rem;
  background-color: #009443;
}

.footer-data {
  row-gap: 3.5rem;
}

.footer-data {
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-address {
  color: var(--body-color);
  /* text-indent: 0.5rem; */
}

.footer-link-section {
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.footer-title {
  font-size: var(--h3-font);
  margin-bottom: 1rem;
  color: var(--body-color);
}

.footer-links {
  display: grid;
  row-gap: 0.75rem;
}

.footer-links {
  display: grid;
  row-gap: 0.75rem;
}

.footer-link {
  color: var(--body-color);
  transition: color 0.5s;
}

.footer-link:hover {
  color: var(--para-color);
}

.footer-social-container,
.footer-social {
  display: flex;
}

.footer-social-container {
  margin-top: 5rem;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
}

.footer-social {
  column-gap: 1.5rem;
}

.footer-social-link {
  color: var(--body-color);
  font-size: 1.5rem;
  transition: color 0.5s, transform 0.5s;
}

.footer-social-link:hover {
  color: var(--body-color);
  transform: translateY(-0.25rem);
}

.footer-copyrights {
  font-size: var(--small-font);
  color: var(--body-color);
  text-align: center;
}

/*<+++++++++++++++ Breakpoints  +++++++++++++>*/

@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .footer-link-section {
    grid-template-columns: max-content;
  }
}
/* @media screen and (min-width: 576px) {

} */

/* @media screen and (min-width: 768px) {

} */

@media (min-width: 768px) {
  .footer-data {
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-evenly;
  }
  .footer-copy {
    order: -1;
  }
}

@media screen and (min-width: 1023px) {
  .nav-menu-btn,
  .nav-close-btn {
    display: none;
  }

  .nav-menu-list {
    flex-direction: row;
    column-gap: 4rem;
  }

  .footer-link-section {
    column-gap: 4.5rem;
  }
}
@media screen and (min-width: 1052px) {
  .container {
    margin-inline: auto;
  }

  .footer {
    padding-block: 5rem 3rem;
  }

  .footer-title {
    margin-bottom: 1.5rem;
  }
  .footer-social-container {
    column-gap: 2rem;
  }
  .footer-social-link {
    font-size: 1.5rem;
  }
}
