/* ========== Base Styles ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Prata', sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #f9f9f9;

  display: flex;
  flex-direction: column;
  min-height: 100vh;           /* Ensure viewport height coverage */
}

/* ========== Container ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* ========== Header / Navigation ========== */
/* .site-header {
  background-color: #ffffff;
  padding: 0.03rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
} */

.logo img {
  height: 60px;
}

nav .menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding-left: 0;
}

nav .menu li a {
  text-decoration: none;
  color: #000b42;
  font-weight: 500;
  transition: color 0.2s ease;
  font-size: 1.3rem;
}

nav .menu li a:hover {
  color: #000b42;
}

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  background-color: #000b42;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #000b42;
}

/* ========== Images ========== */
img {
  max-width: 50%;
  height: auto;
  display: block;
}


/* ========== Footer (optional) ==========
footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
} */

/* Top‑level navigation layout */
#primary-menu {
  display: flex;
  /* lay items side by side */
  flex-wrap: nowrap;
  /* allow wrapping on very small screens */
  gap: 4rem;
  /* space between items */
  list-style: none;
  /* remove bullets */
  margin: 0;
  padding: 0;
  align-items: center;
  /* vertically center buttons/links */
}

/* Make the clickable area stretch the full height of the flex item */
#primary-menu>li>button,
#primary-menu>li>a {
  display: inline-block;
  padding: 0.5rem 0;
  text-decoration: none;
  font-weight: 700;
  /* Bold nav items */
  color: #000b42;
  transition: color 0.2s ease;
}

/* ---------- Footer ---------- */
footer {
  background-color: #000b42;
  padding: 2rem 0;            /* No horizontal padding so the background touches the sides */
  text-align: center;
  margin-top: auto;           /* Push footer to bottom when content is short */
  color: #ffffff;
  width: 100%;                /* Ensure full‑width */
}

footer .container {
  width: 100%;                /* Stretch container full‑width */
  max-width: none;            /* Remove max‑width constraint */
  margin: 0;                  /* Remove auto margins so it touches sides */
  padding: 0 1rem;            /* Optional small breathing room for text */
}

footer nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
}

footer nav a:hover {
  color: #3399ff;
  text-decoration: underline;
}

footer p {
  font-size: 0.9rem;
  color: #ffffff;
  margin: 0.3rem 0;
}


