@charset "UTF-8";

/* NAVIGATION BAR */
.navigation {
  background-color: none;
  padding: 0px;
  position: relative;
  width: auto;
	margin: 0px auto;
}

/* MENU ITEMS */
.menu {
    list-style: none;
   margin: 0px auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: thin solid #FFFFFF;
    background-color: #004080;
	max-width: 1920px;
;
	
}

.menu li {
  margin: 0 15px;
	
	
	
}

/* Default state */
.menu li a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  line-height: 20px;
 font-family: 'Gradzy'; 
  padding: 8px;
  display: inline-block;
  position: relative;
   z-index: 10;
	margin: 0px auto;
	max-width: 1920px;
	
	
}


/* Hover effect */
.menu li a:hover {
    background-color: #000000;
    color: #ffffff;
    font-size: 22px;
    line-height: 22px;
    font-family: 'Gradzy';
    border-radius: 5px;
    padding: 5px;
    width: 100%;
    border: thin solid #FFFFFF;
	
}

/* Click animation */
.menu li a:active {
  transform: scale(0.9);
  transition: transform 0.1s;
	
}

/* MOBILE MENU ICON */
.menu-icon {
  display: none;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 10px;
}

.menu-icon img {
  width: 35px;
  height: 35px;
  border-radius: 50px;
  border: thin solid #000000;
}

/* Fixed Footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 1920px;
    background: black;
    color: white;
    text-align: center;
    padding: 0px 0px 0px 0px;
    margin: 0px auto 0px auto;
    font-family: 'Gradzy';
	z-index: 1000; /* Ensure footer is on top of everything */
	
}

.menu.show {
  display: flex !important; /* Ensure it overrides display: none */
  opacity: 1;
  transform: translateY(0);
}


/* RESPONSIVE DESIGN */
@media screen and (max-width: 1920px) {
  .menu li a {
    font-size: 22px;
    padding: 5px 20px;
	  margin: 0px auto;
  }
	
		/* Fixed Footer */
footer {
    height: 25px;
    font-size: 14px;
    line-height: 25px;

}
	
}

@media screen and (max-width: 1200px) {
  .menu li a {
    font-size: 22px;
    padding: 5px 8px;
  }
}

/* MOBILE MENU */
@media screen and (max-width: 768px) {
  .menu {
	  font-size: 20px;
	line-height: 20px;
    display: none;
    flex-direction: column;
    background-color: #000000;
    position: absolute;
    top: 45px;
    right: 15px;
    width: 175px;
    text-align: center;
    padding: 0;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    opacity: 0;
  }

  .menu li {
    margin: 10px 0;
  }
	
	/* Default state */
.menu li a {
  font-size: 24px;
	line-height: 24px;
  font-family: 'Gradzy';
  padding: 2px;
	
	}


  .menu-icon {
    display: block;
  }

  /* Show menu with animation */
  .menu.show {
    display: flex;
    opacity: 1;
  }
	
	.menu-icon img {
  width: 45px;
  height: 45px;
  border-radius: 70px;
  border: thin solid #000000;
		
}

	
	/* Fixed Footer */
footer {
    height: 25px;
    font-size: 14px;
    line-height: 25px;

}
	
	
}

@media screen and (max-width: 480px) {
 .menu-icon img {
  width: 35px;
  height: 35px;
  border-radius: 50px;
  border: thin solid #000000;
}

}

