/* latin-ext */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(BebasNeue-Regular.ttf) format('truetype');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(BebasNeue-Regular.ttf) format('truetype');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.sticky-header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  transition: all 0.25s ease;
}

.navbar {
  background-color: rgb(33, 37, 41, .8);
  backdrop-filter: blur(10px);
}

.hide-navbar {
  transform: translateY(-100%);
}

.hero-section {
  background-image: url('../assets/images/street-light-blue.jpg');
  /* credit to Chris F. https://www.pexels.com/@chris-f-38966/ for the photo*/
  background-size: cover;
  background-position: center;
}

.hero-row {
  margin: 9em 0 9em 0;
}

.bebas-neue-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 900;
  color: white;
  font-size: 7em;
  text-align: end;
  white-space: nowrap;
  border-right: 3px solid white;
  line-height: 95%;
  padding-right: 20px;
}

.bebas-neue-font {
  font-family: "Bebas Neue", sans-serif;
}

.support-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5em;
}

.sticky-sidebar-no-nav {
  top: 1em;
  transition: all 0.25s ease;
}

.sticky-sidebar-with-nav {
  top: 5.25em;
  transition: all 0.25s ease;
}


.image-header {
  position: relative;
  width: 100%;
  height: 150px;
  background-image: url('../assets/images/snowflake.jpg');
  /* Replace with your image path */
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.11), rgba(33, 37, 41, 1));
  /* Adjust colors to match your needs */
}



@media (max-width: 768px) {
  .bebas-neue-title {
    font-size: 4rem;
    text-align: start;
    border-right: none;
    border-left: 3px solid white;
    padding-right: 0;
    padding-left: 20px;
  }

  .support-title {

    font-size: 3em;
  }

  .hero-row {
    margin: 5em 0 3em 0;
  }

  .image-header {
    height: 250px;
    background-size: cover;
    background-position: center;
  }
}