html, body {
     background:url(/images/bg.png);
     font-family: 'Roboto', sans-serif;
     text-rendering: optimizeLegibility;
     color: white;
     overflow-x: hidden;
    padding: 0.5rem; 
}
 * {
     box-sizing: border-box;
}

@media (min-width: 992px) {
  body {
    padding: 2rem; /* your desktop padding */
  }
}

/* Custom header with background and overlay */
.custom-header {
  background-image: url('/images/sc-bg.png'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  min-height: 6vw;
  position: relative;
  z-index: 1;
}

.custom-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
  z-index: -1; /* Push the overlay behind content */
}

/* Ensure text stays visible above overlay */
.custom-header .navbar-brand,
.custom-header .nav-link {
  color: #fff !important;
}

/* Optional: make links stand out more */
.custom-header .nav-link:hover {
  color: #f0f0f0 !important;
}


/* Improve spacing and readability */
.navbar .navbar-brand {
  font-size: 1.5rem;
  padding-left: 1rem;
}

.navbar-nav .nav-link {
  font-weight: 600;
  margin-right: 1rem;
}

.navbar-toggler {
  margin-right: 1rem;
}

/* Offcanvas background */
.offcanvas {
  background-color: #111;
}
.navbar-nav .nav-link {
  background-color: transparent !important;
}

.offcanvas .nav-link {
  background-color: #111; /* dark background on mobile menu */
  color: #fff;
}

@media (min-width: 992px) {
  .navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 991.98px) {
  .offcanvas .btn-close {
    filter: invert(1) brightness(2);
  }
}

.navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.navbar-brand img {
  max-height: 40px;
  width: auto;
}


 h2 {
     font-size: 3rem;
     text-transform: uppercase;
     margin: 0;
     font-weight: 900;
}
 p {
     line-height: 1.6;
}
 h2 span {
     font-size: 1.2rem;
}

article {
  -webkit-columns: 2 200px;
     -moz-columns: 2 200px;
          columns: 2 200px;
  -webkit-column-gap: 4em;
     -moz-column-gap: 4em;
          column-gap: 4em;
  text-align:justify;
}

.button {
  display: block;
  background-color: #f87f73;
  background-image: linear-gradient(-60deg, #efc337 0%, #efc337 45%, #ff3366 45%, #ff3366 45%);
  width: 500px;
  height: 90px;
  text-transform: uppercase;
  margin: 50px auto;
  margin-top:10vh;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
}

.bsub {
  color: #fff;
  max-width: 50%;
  font-size: 14px;
  font-weight: 700;
  font-family: 'museo-sans', sans-serif;
  display: inline-block;
  vertical-align: middle;
  padding: 15px;
  line-height: 20px;
}

.bsub span {
  color: #efc337;
}

.link {
  color: #313335;
  min-width: 40%;
  display: inline-block;
  font-family: 'ff-tisa-web-pro', serif;
  font-style: italic;
  font-size: 29px;
  font-weight: 700;
  vertical-align: top;
  padding-top: 18px;
  padding-left: 40px;
}

