:root {
  --brand-red: #8b0000;
  --brand-gold: #d4af37;
}

/* HEADER BASE STYLING */
.navbar {
  background-color: var(--brand-red);
  border-bottom: 4px solid var(--brand-gold);
}

/* Compact Mobile Logo Box */
.brand-logo {
  height: 38px;
  max-width: 100px;
  object-fit: contain;
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 2px;
  background-color: #fff;
}

/* Mobile Typography */
.brand-title {
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.brand-subtitle {
  font-size: 0.6rem;
  color: var(--brand-gold);
  margin-top: 2px;
  white-space: nowrap;
}

/* Tablet Scale (576px+) */
@media (min-width: 576px) {
  .brand-logo {
    height: 50px;
    max-width: 140px;
  }
  .brand-title {
    font-size: 1.2rem;
  }
  .brand-subtitle {
    font-size: 0.75rem;
  }
}

/* Desktop Scale (992px+) */
@media (min-width: 992px) {
  .brand-logo {
    height: 70px;
    max-width: 200px;
    padding: 4px;
  }
  .brand-title {
    font-size: 1.7rem;
    letter-spacing: 1.5px;
  }
  .brand-subtitle {
    font-size: 0.85rem;
  }
}

/* Collapsible Mobile Menu Drawer */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--brand-red);
    padding: 1rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
  }
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1020;
  background-color: #212529 !important; /* Soliede donker agtergrond */
  padding: 12px 20px;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

/* Dwing almal teks en skakels binne die footer om wit / sigbaar te wees */
footer,
footer p,
footer span,
footer div {
  color: #ffffff !important;
}

footer a {
  color: #ffc107 !important; /* Maak enige skakels in die footer mooi helder geel vir sigbaarheid */
  text-decoration: underline;
}
