/* ====== GLOBAL ====== */
:root {
  --blue: #0000C8;
  --gold: #FFD800;
  --blue-hover: #0000A0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 5;
  line-height: 1.5; /* This tightens the individual lines of text */
  font-family: 'Quicksand', sans-serif;
  background-color: var(--blue);
  color: var(--gold);
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: none; }

/* ====== SITE WRAPPER ====== */
.site-wrapper {
  border: 3px solid var(--gold);
  min-height: 100vh;
}

/* ====== HEADER & NAVIGATION (Left-Aligned) ====== */
.navbar,
.content {
  text-align: left;
}

.logo-container, .footer {
  text-align: center;
}

.navbar {
  position: relative;
  z-index: 10;
}

.menu-toggle {
  font-size: 120px;
  font-weight: normal;
  color: var(--gold);
  cursor: pointer;
  user-select: none;
  display: inline-block;
  line-height: 0.7;
}

.menu-checkbox,
.submenu-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: var(--blue);
  border: 1px solid var(--gold);
  border-radius: 5px;
  width: 90vw;
  max-width: 280px;
  display: none;
  position: absolute;
  top: 110px; /* Adjusted to not overlap hamburger */
  left: 10px;
  transform: none;
  max-height: 70vh;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}

.menu-checkbox:checked ~ .menu { display: block; }

.menu li { position: relative; }

.menu a,
.submenu-toggle {
  display: block;
  color: var(--gold);
  padding: 10px 10px;
  font-size: 20px;
}

.menu a:hover,
.submenu-toggle:hover {
  background-color: var(--blue-hover);
}

.dropdown-content {
  list-style: none;
  margin: 1;
  padding: 1;
  display: none;
  border-top: 1px solid rgba(255, 216, 0, .35);
}

.submenu-checkbox:checked ~ .dropdown-content { display: block; }
.dropdown-content a { padding-left: 35px; }

/* ====== LOGO, TEXT & CONTENT ====== */
.logo-container {
  padding: 1px 1px;
}

.logo-container img {
  max-width: 300px;
  height: auto;
  
}

.logo-text {
  margin: 0;
  line-height: 0.5; /* This tightens the individual lines of text */
  font-weight:lighter;
  text-align:center;
}

.logo-text-xl {
  font-size: 38px;
  margin: 1px 1;
  text-align: center;
  font-weight:normal;
}
.logo-text h2 {
  margin: 0;
  line-height: 1.5;
  text-align: center;
  font-weight: bold; /* This makes the text bold */
}

/* This KEEPS the paragraphs normal weight */
.logo-text p {
  margin: 1;
  line-height: 1.5;
  text-align: center;
  font-weight: normal;
}

.logo-text h1 {
  margin: 1;
  padding: 0;
  line-height: 1.5;
  text-align: center;
  font-weight: lighter;
}

}

.gold-line {
  border: none;
  height: 2px;
  background-color: var(--gold); /* This uses your #FFD800 gold color */
  width: 100%;
  margin: 5px 5;
}

.iframely-embed {
  margin: 3px 3;
  padding: 2px;
  border: 2px solid var(--gold);
  max-width: 100%;
  box-sizing: border-box;
}

/* ====== FOOTER ====== */
/* THIS ENTIRE SECTION WAS MISSING */
.footer {
  margin: 5px;
  padding: 0px;
  display: grid;
  grid-template-columns: auto auto auto;
  justify-items: center;
  row-gap: 5px;
}

.footer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  white-space: pre-line;
}

.social-logo {
  max-width: 50px;
  max-height:50px;
  margin: 5px;
}