@font-face {
  font-family: "LaysBold";
  src: local("Lays Bold"),
    url("./assets/fonts/Lays_Bold.otf") format("opentype");
}

@font-face {
  font-family: "LaysExtraBoldCondensed";
  src: local("Lays Extra Bold Condensed"),
    url("./assets/fonts/Lays_ExtraBold_Condensed.otf") format("opentype");
}

@font-face {
  font-family: "LaysExtraBoldExtended";
  src: local("Lays Extra Bold Extended"),
    url("./assets/fonts/Lays_ExtraBold_Extended.otf") format("opentype");
}

@font-face {
  font-family: "LaysExtraBold";
  src: local("Lays Extra Bold"),
    url("./assets/fonts/Lays_ExtraBold.otf") format("opentype");
}

@font-face {
  font-family: "LaysRegular";
  src: local("Lays Regular"),
    url("./assets/fonts/Lays_Regular.otf") format("opentype");
}

:root {
  --website-bg: #FFD700;

  --navbar-bg: rgba(30, 18, 13, 1);

  --footer-bg: rgba(30, 18, 13, 1);
  --footer-clr-text: #FFFFFF;
  --footer-clr-social-bg: rgba(255, 215, 0, 1);
  --footer-clr-social-fill: rgba(30, 18, 13, 1);
}

* {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
  background-color: var(--website-bg) !important;
}

button:focus,
input:focus,
select:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* Fonts */
.extra-bold-text {
  font-family: "LaysExtraBold", sans-serif;
  font-weight: 400;
}

.regular-text {
  font-family: "LaysRegular", sans-serif;
  font-weight: 400;
}

.teaser-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.teaser-navbar-bg {
  background: var(--navbar-bg);
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
}

.teaser-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-image: url('./assets/images/backgrounds/main-bg.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.teaser-sponsor-image {
  position: absolute;
  top: 20px;
  right: 80px;
  width: 250px;
}

.teaser-title {
  font-size: 48px;
}

.teaser-text {
  font-size: clamp(16px, 1.5vw, 22px);
}

.teaser-main-image {
  padding: 3rem 0 0 0;
}

.teaser-main-image-text {
  font-size: 12px;
}

.teaser-footer-bg {
  background: var(--footer-bg);
}

.teaser-footer-link {
  overflow-wrap: break-word;
}

.teaser-footer-text {
  color: var(--footer-clr-text);
  font-size: 12px;
}

.teaser-footer-content {
  padding: 55px 1rem 1.5rem
}

.teaser-footer-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 2rem;
  background-color: var(--footer-clr-social-bg);
}

.teaser-footer-social-link svg {
  width: 30px;
  height: 30px;
  fill: var(--footer-clr-social-fill);
}

@media only screen and (max-width: 992px) {
  .teaser-container {
    height: auto;
    min-height: 100vh;
  }

  .teaser-sponsor-image {
    right: 20px;
  }

  .teaser-footer-content {
    padding: 30px 0px;
  }
}

@media only screen and (max-width: 768px) {
  .teaser-content {
    background-image: url('./assets/images/backgrounds/main-mobile-bg.webp');
    background-position: left -10px top;
  }

  .teaser-sponsor-image {
    width: 40%;
  }

  .teaser-side-image {
    padding: 5rem 2rem 0 2rem;
  }
}

@media only screen and (max-width: 576px) {
  .teaser-main-image {
    padding: 0;
  }

  .teaser-footer-content {
    padding: 50px 30px;
  }
}