@import url("animations.css");
@import url("styles.css");

.Navbar {
  overflow: visible;
  background-color: rgba(210, 210, 210, 0.9);
  font-family: "Montserrat", sans-serif;
    display: flex;
  justify-content: right;
  align-items: center;
  /* Navbar animation: */
  position: fixed;
  width: 100%;
  z-index: 999;
  opacity: 0;
  animation: slideD 0.5s forwards;
  animation-delay: 0.5s;
}

.Navbar a {
  float: left;
  font-size: 16px;
  color: rgb(0, 0, 0);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: visible;
  position: relative;
}

.dropdown .dropbtn {
  cursor: pointer;
  font-size: 16px;  
  border: none;
  outline: none;
  color: rgb(0, 0, 0);
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.Navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
    color: rgb(132, 143, 11);
    font-weight: bold;
    box-shadow: 0 10px 5px -8px rgba(0,0,0,0.35);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 48px;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 999;
}

.dropdown-content a  {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: justify;
}

.dropdown-content a i {
  float: right;               /* Float icon to the right */
  margin-left: 10px;          /* Add space between text and icon */
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: rgb(55, 55, 55);
}

.show {
  display: block;
}

/* ACTIVE PAGE */

.current {
    font-weight: bold;
    color: rgb(132, 143, 11) !important;
    box-shadow: none !important;
}

@media (max-width: 500px) {
    .Navbar {
        justify-content: center;
        align-items: center;
    }
    .Navbar a {
        float: none;
        display: block;
        text-align: center;
    }

}