@import url("../../assets-custom/root.css");@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/* navbar for all the other pages ,besides index */

.header {
  background-color: var(--ea-secondary-color);
  min-height: 215px;
}

.header .navbar .nav-link a {
  color: var(--ea-nav-text-color);
}

.header .nav-buttons .login-btn a {
  color: var(--ea-white-color);
  text-decoration: none;
}

.header .nav-buttons .sign-in-btn a {
  color: var(--ea-nav-text-color);
  text-decoration: none;
}

.navbar {
  padding-top: 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 83px;
  border-bottom: 1px solid var(--accountDetails-label-color);
}

/*  logo animation */
.logo-container {
  position: relative;
  display: inline-block;
}

.container {
  justify-content: space-around;
}

.logo {
  transition: transform 0.3s ease;
}

.logo-container:hover .logo {
  transform: scale(1.1);
  cursor:pointer;
  /* Zmadhohet pak kur është në hover */
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
}
.nav-links li {
  margin: 0 0.9375rem;
}

.nav-link a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--ea-white-color);
  text-decoration: none;
  margin: 0;
   display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-link a:hover {
  /* color: red; */
  transform: translateY(7px);
}

.hero-section .nav-buttons a {
  color: var(--ea-white-color);
  text-decoration: none;
}

.login-btn {
  background: var(--ea-background-color);
  padding: 10px 20px;
  color: var(--ea-white-color);
  width: 111px;
  height: 43px;
  top: 40px;
  left: 1073px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 22.5px;
  transition: transform 0.3s ease;
}

.login-btn:hover {
    /* transform: translateY(7px); */
    background: var(--ea-nav-button-color);
    cursor: pointer;
}


.sign-in-btn {
  background-color: transparent;
  padding: 10px 20px;
  border: 1px solid var(--ea-nav-text-color);
  color: var(--ea-white-color);
  width: 121px;
  height: 43px;
  top: 40px;
  left: 1199px;
  gap: 0px;
  opacity: 0px;
  margin: auto;
  transition: transform 0.3s ease, color 0.3s ease;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
   text-decoration: none;
}

.sign-in-btn:hover {
    /* transform: translateY(7px); */
    border: 1px solid var( --footer-color);
    cursor: pointer;
   background: var(--ea-primary-faded-color);
   color: white;
}

.sign-in-btn:hover a{
    /* transform: translateY(7px); */
   color: var(--ea-white-color);
}

.nav-link a:hover {
  transform: translateY(7px);
}
.nav-buttons {
  display: flex;
  width: 247px;
  height: 43px;
  top: 40px;
  left: 1073px;
  gap: 0px;
  opacity: 0px;
}
.hero-section .nav-buttons a {
  color: var(--ea-white-color);
  text-decoration: none;
}

.login-btn {
  background: var(--ea-background-color);
  padding: 10px 20px;
  color: var(--ea-white-color);
  width: 111px;
  height: 43px;
  top: 40px;
  left: 1073px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 22.5px;
  transition: transform 0.3s ease;
}

.login-btn:hover {
  transform: translateY(7px);
  /* background: var(--ea-primary-color); */
}

.nav-links-main {
  display: flex;
}

/*  dropdown item */

 .dropdown button {
    background-color: var(--ea-primary-color);
    max-width: 40px;
    width: max-content;
    height: 40px;
    border-radius: 5px;
    color: white;
    padding: 10px;
    margin-left: 15px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    justify-content: space-evenly;
    overflow: hidden;
  }
  .dropdown button img {
    display: flex;
    align-items: center;
    margin: 0;
  }
  .dropdown button img,
  .dropdown-content li img {
    width: 24px;
  }
  .dropdown button,
  .dropdown-content li {
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .arrow-down {
    width: 0;
    height: 0;
    display: inline-block;
    vertical-align: middle;
    border-style: solid;
    border-width: 4px 4px 0 4px;
    border-color: #fff transparent transparent transparent;
    margin: 0 0 0 5px;
  }

  .dropdown button:hover {
    cursor: pointer;
    background-color: #3c5b77;
  }
  /* Style for the dropdown content */
  .dropdown-content {
    display: none;
    position: absolute;
    margin: 1px 0 0 15px;
    padding: 0;
    background-color: var(--ea-primary-color);
    max-width: 40px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 15;
    border-radius: 5px;
    overflow: hidden;
    max-height: 315px;
  }
  /* Style for the dropdown content items */
  .dropdown-content li {
    color: black;
    padding: 2px 2px;
    text-decoration: none;
    justify-content: center;
  }
  .dropdown-content li img {
    margin: 0 20px 0px 20px;
  }
  /* Style for the dropdown content items on hover */
  .dropdown-content li:hover {
    background-color: #f1f1f1;
    cursor: pointer;
    color: blue;
    border-radius: 5px;
  }
  /* Show the dropdown content when the dropdown button is clicked */
  .dropdown:focus-within .dropdown-content {
    display: block;
  }
  /* Animate the dropdown content */
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .dropdown-content {
    animation: slideIn 0.3s ease-out;
  }


  .goog-te-gadget-simple{
    visibility: hidden;
  }

  .skiptranslate iframe{
    visibility: hidden !important;
  }

  #google_translate_element{
    visibility: hidden !important;
    height: 0;
  }

  #google_translate_element span{
    color: #000;
  }
