/* ================================
   Global Styles
================================ */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
   font-family: "Lucida Sans Unicode";
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  background-color: #EFF1F2;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* ================================
   Header
================================ */
header {
  background-color: #7A715A;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
}

/* Logo */
.logo {
  height: 50px;
  width: auto;
  max-width: 100%;
  transition: transform 0.2s ease-in-out;
}

.logo:hover {
  transform: scale(1.05);
}

/* Navigation */
.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.navbar a {
  text-decoration: none;
  color: #EFF1F2;
  font-weight: bold;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  transition: color 0.3s;
}

.navbar a:hover {
  color: #102864;
}

/* Hamburger Menu */
.menu-icon {
  display: none;
  font-size: 2rem;
  color: black;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

/* ================================
   Main Content
================================ */
main {
  margin: 0;
  padding: 0 0 2rem 0;
  text-align: center;
}

main a {
	color: #7A715A;
	font-weight: 600;
}

main a:hover {
	text-decoration: underline;
	color: #5F5643;
}

.blue-section {
  background-color: #102864;
  color: #EFF1F2;
  margin: 0;
  padding: 1.5rem;
}

.blue-section > *:first-child {
  margin-top: 0;
}

.content-section {
  background-color: #EFF1F2;
  color: #102864;
  margin: 0;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.split-section {
	margin: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	gap: 2rem;
	flex-wrap: wrap;
}

/* Left Section (Text) */
.left-section {
	flex: 1;
	min-width: 18rem;
}

/* Right Section (Image) */
.right-section {
	flex: 1;
	min-width: 18rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.blue-button {
  background-color: #102864;
  color: #EFF1F2;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.blue-button:hover {
  background-color: #1a3a99;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.blue-button:active {
  transform: translateY(1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.white-button {
  background-color: #EFF1F2;
  color: #102864;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.white-button:hover {
  background-color: #E1E4E7;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.white-button:active {
  transform: translateY(1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* ================================
   Footer
================================ */
footer {
  background-color: #808080;
  color: #EFF1F2;
  padding: 1.5rem 1rem;
  margin-top: 3rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  box-shadow: 0 -6px 15px rgba(0, 0, 0, 0.25);
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  gap: 1rem;
  text-align: center;
}

/* Footer nav list */
.footer-content ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 1200px;
}

.footer-content ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  position: relative;
}

/* Vertical divider between footer items */
.footer-content ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1.5rem;
  width: 2px;
  background-color: rgba(0, 0, 0, 0.3);
}

/* Footer links */
.footer-content a {
  color: #EFF1F2;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-content a:hover {
  color: #102864;
}

/* Footer text and logo */
.footer-content p {
  margin: 0;
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.footer-content .logo {
  height: 20px;
  width: auto;
}

/* Footer copyright */
.footer-copy {
  margin-top: 1rem;
  text-align: center;
  font-size: clamp(0.8rem, 0.9vw, 1rem);
  opacity: 0.8;
}

/* ================================
   Responsive Styles
================================ */
@media (max-width: 768px) {
  /* Header Nav */
  .menu-icon {
    display: block;
  }

  .navbar {
    width: 100%;
    display: none;
  }

  .navbar ul {
    flex-direction: column;
    background-color: #7A715A;
    text-align: center;
  }

  .menu-toggle:checked + .menu-icon + .navbar {
    display: block;
  }

  .navbar a {
    display: block;
    padding: .25rem;
    color: #EFF1F2;
  }

  .navbar a:hover {
    color: #102864;
  }

  /* Footer layout */
  .footer-content ul {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .footer-content ul li {
    padding: 0;
  }

  .footer-content ul li:not(:last-child)::after {
    display: none;
  }

  .footer-content p,
  .footer-copy {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 40px;
  }
}
