/* RESET AND BASICS */
html, body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  height: 100%;
  background-color: #f5f5f5;
  color: #333;
  box-sizing: border-box;
}

a:link {
  color: blue;             /* unvisited links */
  text-decoration: none;   /* optional: removes underline */
}

a:visited {
  color: blue;             /* make visited links same as unvisited */
}

a:hover {
  color: red;              /* optional: change on hover */
}

a:active {
  color: blue;             /* while being clicked */
}

/* NAVBAR */


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #25aadd;
  color: white;
  padding: 0.5em 1em;
  position: relative;
  z-index: 100;
}
.nav-brand {
  font-weight: bold;
  font-size: 1.5em;
}
.nav-logo {
  height: 25px;      /* Adjust size as needed */
  margin-right: 8px; /* Space between logo and text */
}

.nav-toggle {
  font-size: 1.8em;
  cursor: pointer;
  display: none;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1em;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-menu li a:hover {
  text-decoration: underline;
}

/* Temp Under Construction banner */
.construction-banner {
  background-color: #ffcc00;
  color: #000;
  text-align: center;
  padding: 10px 20px;
  font-size: 2.0rem;
  font-weight: bold;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1000;
}



@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    display: none;
    background-color: #25aadd;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
	padding-left: 20px;    /* space from left edge */
    padding-bottom: 15px;  /* space below last menu item */
  }


  .nav-menu.active {
    display: flex;
  }
  
  

  .construction-banner {
    font-size: 0.8rem; /* Example: reduce size on small screens */
    padding: 5px;
  }
}
