* {
  box-sizing: border-box;
}

@font-face {
  font-family: "tt_normsregular";
  src: url("/fonts/typetype_-_tt_norms_regular-webfont.woff2") format("woff2"),
    url("/fonts/typetype_-_tt_norms_regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "tt_normsregular", sans-serif;
}

header,
footer,
.navbar-brand,
footer {
  background-color: var(--primary);
  color: var(--grey);
  padding: 1rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black);
}

footer,
footer a,
footer p,
footer h2 {
  font-size: 0.9rem;
  color: white !important;
  background-color: var(--primary) !important;
}

button {
  color: white !important;
  background-color: var(--primary) !important;
}

a {
  color: var(--primary);
  font-weight: bold;
  text-decoration: none !important;
}

a:hover {
  color: var(--secondary)
}

#banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}


  #loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 5;
    flex-direction: column;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
  }

  .spinner {
    border: 8px solid #333;      
    border-top: 8px solid var(--primary); 
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
  }

  @keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
