@charset "UTF-8";

/* Main header container */
header.header {
  width: 100%;
  color: white;
  margin: 0;
  padding: 0;
}

/* Top section: logo area */
.header-top {
  background-color: #ffffff; 
  padding: 16px 0;
  display: flex;
  justify-content: center;
}

.header-top .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #FFEB3B;
}

.header-top .logo img {
  width: 210px;
  height: auto;
}

/* Bottom section: navigation menu */
.header-bottom {
  background-color: #00344f;
  display: flex;
  justify-content: center;
  font-weight: 400;
  border-top: 3px solid #0693e3;
  border-bottom: 3px solid #efb31a;
  box-sizing: border-box;
}

.header-bottom nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}

.header-bottom nav a {
  color: white;
  text-decoration: none;
  font-size: 17px;
  margin: 0;
  padding: 4px 4px;
  white-space: nowrap;
}

.header-bottom nav a:hover {
  text-decoration: underline;
}

/* Optional: limit max width like before */
.header-top,
.header-bottom {
  margin: 0 auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* Footer */
footer {
  text-align: center;
  color: #666;
  background-color: #00344f;
  border-top: 1px solid #ddd;
}

footer p {
  font-size: 15px;
  color: white;
  padding-left: 1px;
  padding-right: 1px;
}

footer a {
  color: #ffffff !important;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
  color: #ffeb3b;
}

.footer-wrapper p {
    font-size: 15px;
    line-height: 1.5 !important;;
}

.footer-favicon {
  display: block;
  margin: 10px auto 0;
  width: 40px;
}

.hero-section {
  text-align: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}

@media (max-width: 768px) {
  /* Ensure both sections stack and center properly */
  .header-top,
  .header-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 1px;
    padding-right: 1px;
  }

  /* Center the logo */
  .header-top .logo {
    justify-content: center;
  }

  /* Mobile-friendly nav */
  .header-bottom nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px; 
    margin-top: 4px;
	margin-bottom: 4px;
  }

  .header-bottom nav a {
    margin: 0; 
    font-size: 16px;
  }

}