@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Poppins:wght@400;500;600;700&display=swap");
:root {
  --primary-color: #f7931a;
  --secondary-color: #000;
  --text-dark: #000;
  --text-light: #f7931a;
  --extra-light: #f8fafc;
  --white: #ffffff;
  --max-width: 1500px;
  --black:#000;
  --header-font: "Playfair Display", serif;
}


.logo .image-logo{
  width: 50px;
  object-fit: cover;
}

.logo .image-logo1{
width: 0px;
}

.ds{
  position: relative;
  transform: translateX(1000%);
  transition: transform 1.5s ease-in-out;

}

.ds.active{
  transform: translateX(0%);
}

.nav__logo{
  display: flex;
  align-items: center;
  width: 100%;
}

nav {
  position: fixed;
  top: 0;
  /* padding-inline: 1rem; */
  background-color: var(--black);
  width: 100%;
  z-index: 9999;
  transition: all 0.5s linear;
  box-shadow: 0 5px 30px rgba(255, 174, 0, 0.5)
}


.nav__bar {
  width: 100%;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
}

.nav__header {
  width: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--extra-light);
  padding: 0;
  background-color: transparent;
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

.menu-btns{
  display: flex;
  align-items: center;
  gap:  0 14px;
}

.nav__links {
  list-style: none;
  color: var(--primary-color);
  width: 100%;
  gap: 30px 50px;
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}


.nav__links a {
  text-decoration: none;
  color: var(--text-light);
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .3px;
}


.nav__links a:hover {
  color: var(--secondary-color);
}

.menu-btns:nth-child(5){
  background: #f7931a;
  padding: 10px 14px;
  border-radius: 4px;
  margin: 0 10px;
}

.menu-btns:nth-child(5) a{
  font-size: 14px;
  font-weight: 600;
  color: #000 !important;
}
.hamburger {
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    background: #0005;
}

.hamburger:focus {
    outline: none;
}

.hamburger .bar {
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 2.5px;
    transition: all 0.3s ease;
    border-radius: 4px;
    outline: none;
}

.show-links .bar:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.show-links .bar:nth-child(2) {
    opacity: 0;
}

.show-links .bar:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}



@media (max-width: 900px){
  .menu-btns{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 15px;
}
.menu-btns:nth-child(5){
  display: none;
}

    .hamburger{
        display: flex;
    }

    .nav__logo{
      padding: 0 14px;
    }

    .nav__links{
        position: fixed;
        top: 50px;
        left: 0;
        color: #f7931a;
        background: #000;
        width: 100%;
        overflow: hidden;
        padding: 15px 0;
        flex-direction: column;
        align-items: center;
        text-align: left;
        display: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        display: flex; /* Keep the structure */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, visibility 0.5s;
    }
      
      .nav__links.active {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
      }

 .nav__bar.full_sticky > nav {
        padding: 0;
    }
    
    .logo .image-logo{
      width: 50px;
    }
    
    .logo .image-logo1{
      width: 90px;
      margin: 0 5px;
    }
    
  }