@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --font-color: #cfe3d1;
}


/* Navbar */
body.no-scroll {
    overflow: hidden;
   
}
a{
    text-decoration: none;
}
.hero-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(30%);
}
.hero-img {
  position: fixed;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(50%);
}

.nav-container {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000b3;
    padding: 1rem;
    color: white;
    position: relative;
    font-family: "Poppins";
    z-index: 5000;
    
    
}

.logo-container {
    position: relative;
    width: 10rem;
    height: 5rem;
}
.logo-container a {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
}

.logo-container img {
    width: 100%;
    position: relative;
    margin-bottom: 1px;
}

.nav-link-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: fit-content;
    transition: all 0.3s ease-in-out;
}

.nav-link-container {
    list-style-type: none;
    
}

.nav-link {
    margin: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0c202000;
    color: rgb(255, 255, 255);
    border-radius: 10px;
   
    
}

.nav-link-a {
    text-decoration: none;
    color: inherit;
    padding: 0.1rem;
}

.nav-toggler {
    display: none;
}
.button-nav {
    margin-top: 8px;
  width: 180px;
  height: 48px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: bolder;
  color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.108);
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  }

.button-nav:hover {
  background-color: #570080;
  box-shadow: 0px 15px 20px #57008073;
  color: #FFD700;
  transform: translateY(-7px);
}

@media (max-width: 1200px) {
    .nav-link {
        margin: 0 0.5rem;
    }

    .nav-link-a {
        padding: 0.8rem;
    }
}

@media (max-width: 900px) {
    .nav-container.open .logo-container {
        position: absolute;
        width: 10rem;
        height: 5rem;
        z-index: 2;
        top: 0;
        
        
    }
    .logo-container a {
        right: 25px;
        
    }

    .nav-link-container {
        width: 100%;
        height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
        transform: translateY(-100%);
        background: rgba(6, 6, 6, 0.962);
        flex-direction: column;
        z-index: 1;
        justify-content: center;
        
    }

    .nav-container.open .nav-link-container {
        transform: translateY(0);
    }

    .nav-link {
        width: 15rem;
        margin: 0.7rem;
    }

    .nav-link-a {
        padding: 1rem;
    }

    .nav-toggler {
        display: block;
        width: 3rem;
        height: 3rem;
        position: absolute;
        right: 10px;
        top: 1px;
        transform: translate(-50%, 50%);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 5;
    }

    .nav-toggler span {
        width: 100%;
        height: 0.4rem;
        background: white;
        position: relative;
        border-radius: 10px;
    }

    .nav-toggler span::after {
        content: "";
        width: 100%;
        height: 100%;
        border-radius: 10px;
        background: white;
        position: absolute;
        top: 0;
        left: 0;
        transform: translateY(-160%);
    }

    .nav-toggler span::before {
        content: "";
        width: 100%;
        border-radius: 10px;
        height: 100%;
        background: white;
        position: absolute;
        bottom: 0;
        left: 0;
        transform: translateY(160%);
    }
    .button-nav{
        background-color: rgba(255, 255, 255, 0.884);
        color: #000;
    }
}
