/* Stewart for 10 */



/* Font and Buttons */
h1 {
  font-size: 5vw; 
}

h2 {
  font-size: 3vw; 
}

h3 {
  font-size: 2vw; 
}

h4 {
  font-size: 1.5vw; 
}

p {
  font-size: 1vw; 
}

p2 {
  font-size: 0.75vw; 
}


.btn {
  display: inline-block;
  font-size: 1.25rem; 
  padding: 1rem 1.5rem;
  background-color: #225588;
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
}
.btn:hover {
  background-color: #6699CC;
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .btn {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  } 
 
  h1 {
    font-size: 10vw; 
  }

  h2 {
    font-size: 6vw; 
  }

  h3 {
    font-size: 5vw; 
  }
  
  h4 {
  font-size: 3.5vw; 
  }

  p {
    font-size: 4.5vw; 
  }

  p2 {
    font-size: 3.25vw; 
  } 
  
}



/* Body and Background */
body {
  background-color: #003366;
  color: white;
  text-align: center;
  margin: 0;
}

/* Common */
.navbar {
  background-color: #6699CC;
  position: sticky;
  top: 0;
  z-index: 1000;
  color: white;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-size: 1.5vw;
  font-weight: bold;
  color: white;
  text-decoration: none;
}
.nav-links {
  display: flex;
  position: absolute;
  max-width: 100px;
  top: 100%;
  left: 78.5%;
  right: 0%;

  background-color: #6699CC; 
  flex-direction: column;
  align-items: center;

  max-height: 0;
  overflow: hidden;

  opacity: 0;
  transform: translateY(-10px);

  transition:
    max-height 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}
.nav-link {
  color: white;
  text-decoration: none;
  font-size: 1.25rem;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s, color 0.3s;
}
.nav-link:hover {
  background-color: #444;
  color: #6699CC;
}
@media (max-width: 600px) {
  .nav-link {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
}
.overlay {
  background-color: rgba(0, 0, 0, 0.75);
  text-align: left;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.overlay2 {
  background-color: rgba(140, 140, 140, 0.5);
  padding: 20px;
  border-radius: 10px;
}
.contact {
  text-align: center;
  margin: 40px 0;
}
.support {
  text-align: center;
  margin: 40px 0;
}
.support-links a.btn {
    margin: 10px;
}


/* Homepage */
.accordion {
  background-color: #225588;
  color: #fff;
  font-size: 2vw;
  cursor: pointer;
  padding: 5px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}
.active, .accordion:hover {
  background-color: #6699CC;
}
.panel {
  padding: 0 10px;
  max-height: 0;
  background-color: #114477;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}



