:root {
  --c-blue: #0055ff;
  --c-yellow: #ffcc00;
  --c-white: #ffffff;
  --c-dark: #0a1e36;
  --c-bg: #f0f4f8;
  --radius-soft: 12px;
  --shadow-hard: 4px 4px 0px 0px var(--c-dark);
  --spacing-base: 10px;
  --font-main: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif-condensed, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--c-bg);
  color: var(--c-dark);
  line-height: 1.6;
}

/* Header Styles */
.site-header {
  background-color: var(--c-blue);
  color: var(--c-white);
  padding: calc(var(--spacing-base) * 2);
  border-bottom: 3px solid var(--c-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--c-white);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logo-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--c-yellow);
  stroke: var(--c-dark);
  stroke-width: 2px;
}

.main-nav .nav-list {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-link {
  color: var(--c-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 16px;
  border-radius: var(--radius-soft);
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.nav-link:hover {
  background-color: var(--c-yellow);
  color: var(--c-dark);
  box-shadow: var(--shadow-hard);
  transform: translateY(-2px);
  border-color: var(--c-dark);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--c-white);
  cursor: pointer;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  z-index: 2000;
  transition: right 0.3s ease-in-out;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background-color: var(--c-yellow);
  padding: 40px 20px;
  border-left: 3px solid var(--c-dark);
}

.mobile-nav-overlay.active {
  right: 0;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-dark);
}

.mobile-nav-list {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-list a {
  text-decoration: none;
  color: var(--c-dark);
  font-weight: 700;
  font-size: 1.5rem;
  display: block;
  padding: 10px;
  border-radius: var(--radius-soft);
  border: 2px solid transparent;
}

.mobile-nav-list a:hover {
  background-color: var(--c-white);
  border-color: var(--c-dark);
  box-shadow: var(--shadow-hard);
}

/* Footer Styles */
.site-footer {
  background-color: var(--c-blue);
  color: var(--c-white);
  padding: 60px 20px 20px;
  border-top: 5px solid var(--c-yellow);
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.brand-name-footer {
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--c-yellow);
  text-transform: uppercase;
  text-shadow: 2px 2px 0 var(--c-dark);
}

.tagline {
  font-size: 1.1rem;
  margin-top: 10px;
  font-weight: 500;
  opacity: 0.9;
}

.footer-heading {
  color: var(--c-yellow);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--c-white);
  display: inline-block;
  padding-bottom: 5px;
}

.contact-info {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-link {
  color: var(--c-white);
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: opacity 0.2s;
}

.contact-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: var(--c-yellow);
}

.legal-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-links a {
  color: var(--c-white);
  text-decoration: none;
}

.legal-links a:hover {
  color: var(--c-yellow);
  text-decoration: underline;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-link {
    justify-content: center;
    text-align: left;
  }
}
/* footer extras */
.footer__extras{margin-top:16px;}
.footer__extrasInner{display:flex;flex-wrap:wrap;gap:12px;align-items:flex-start;justify-content:space-between;}
.footer__social{display:flex;gap:10px;align-items:center;}
.footer-social{display:inline-flex;gap:8px;align-items:center;text-decoration:none;}
.footer-social__icon{display:block;}
.footer__poemWrap{max-width:520px;}
.footer-poem{opacity:0.9;font-size:0.95em;line-height:1.35;}
