/* V. 13:35 */
:root { 
  --color-burn-white: #f2f2f2; 
  --color-burn-orange: #fe5e14;
  --color-burn-blood-red: #AB0012;
  --color-burn-red: #FF0000;
  --color-burn-yellow: #E9A005;
}

@font-face {
  font-family: blur-light;
  src: url(./asset/font/BlurPro-Light.woff2);
}

@font-face {
  font-family: blur-medium;
  src: url(./asset/font/BlurPro-Medium.woff2);
}


@font-face {
  font-family: obscura;
  src: url(./asset/font/Obscura_BET_26.woff2);
}

body { 
    background-color: black;
    color: white !important;
    font-family: blur-light;
}

a {
  color: var(--color-burn-blood-red);
  -webkit-text-fill-color: var(--color-burn-blood-red);
  width: max-content;
  display: contents;
}


a:hover { 
  color: var(--color-burn-yellow);
}

.container {
    display: grid;
    max-width: 1400px;
    margin: 0 auto;
    grid-template-columns: repeat(12, [col-start] 1fr);
}

.container-full { 
   display: grid;
    margin: 0 auto;
    grid-template-columns: repeat(12, [col-start] 1fr);
}


section { 
  margin-top: 4rem;
  margin-bottom: 2rem;
}

h1 { 
  font-family: blur-medium;
  text-align: center;
  font-size: 3rem;
}

.flex { 
  display: flex;
  gap: .75rem;
}

/* nav */

.nav { 
  position: sticky;
  top: 0;
  z-index: 0;
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  padding: 0 30px;
  grid-column: col-start 1 / span 11;
}


nav img { 
  max-height: 60px;
}

.apply-button { 
  background-color: var(--color-burn-red);
  font-family: blur-medium;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: black;
  -webkit-text-fill-color: black;

}

.apply-button:hover{ 
  background-color: var(--color-burn-orange);
  color: black;
}

/* hero */

.hero  { 
  position: relative;
}

video { 
  width: 100%;
  position: relative;
}

.hero-video-mobile { 
  display: none;
}

.hero-logos { 
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 500px;
}

.hero-logo { 
  width: 500px;
}

.hero-logo-row { 
  display: flex;
  gap: 2rem;
  justify-content: center;

}

.hero-logo-row .hero-logo { 
  width: 150px;
}

.hero-logo-row .bet-logo { 
  width: 300px;
}

/*  intro */

.intro { 
  grid-column: col-start 4 / span 6;
  font-size: 2rem;
}

.intro p {
  padding-bottom: 2rem;
}

.intro button { 
  font-size: 2rem;
}

/*  jury */

.jury { 
}

.jury h1 { 
  grid-column: col-start 4 / span 6;
}

.jury-name { 
  font-size: 2rem;
}

.jury-row { 
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column: col-start 1 / span 12;
  gap: 25px;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.jury-notification { 
  opacity: 30%;
  text-align: center;
  grid-column: col-start 1 / span 12;
  padding: 2rem;
}

.jury-img { 
  max-width: 100%;
}


/*  faq */

.faq { 
  grid-column: col-start 1 / span 12;
}

 .faq-item {
    border-bottom: 2px solid white;
    max-width: 800px;
    margin: 2em auto;
    padding-bottom: 1rem;
  }

.faq-question {
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      color: var(--color-burn-orange);
      font-size: 2em;
      font-family: blur-medium;
    }

    .faq-item:hover > .faq-question { 
      color: var(--color-burn-white);
    }

    .faq-answer {
      display: none;
      margin: 2em 0;
      font-size: 1.2em;
      line-height: 1.5;
      transition: all .3s;
      color: var(--color-burn-white);
    }

    .arrow {
      transition: transform 0.3s;
    }

    .faq-item.active .arrow {
      transform: rotate(180deg);
    }

    .faq-item.active .faq-answer {
      display: block;
    }


/*  footer */

footer {
  margin-top: 8rem;
  background-color: var(--color-burn-red);
  grid-column: col-start 1 / span 12;
  color: black;
  display: flex;
}

footer a { 
  color: black !important;
  text-decoration: none;
  -webkit-text-fill-color: black;

}

footer a:hover { 
  text-decoration: underline  ;
}

footer .footer-inner { 
  margin: 0 auto;
  width: 50%;
  text-align: center;
  padding: 2em;
  display: flex;
  flex-direction: column;
  font-size: 1em;
}


@media (max-width: 600px) {

  .nav  {
    padding: 0 .5rem;
  }

.container { 
  padding: 0 2rem;
}

.container-full { 
  padding: 0 2rem;

}

.hero-video { 
  display: none;
}

.hero-video-mobile { 
  display: block;
}

.hero-logos { 
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.hero-logo { 
  width: 300px;
  margin: 0 auto;
}

.hero-logo-row { 
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.hero-logo-row .hero-logo { 
  width: 150px;
}

.bet-logo { 
  width: 300px;
}

.faq { 
  padding: 0 1.5rem;
}

.faq-question { 
  font-size: 1.5rem;
}

.intro {
  grid-column: col-start 1 / span 12;
  font-size: 1.25rem;
}

.jury { 
  grid-column: span 1;
}

.jury-row { 
  grid-column: col-start 1 / span 12;
  gap: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  grid-template-rows: repeat(2, 1fr); 
  grid-row: 1fr 1fr;
  padding: 0;
}

footer .footer-inner { 
  margin: 0 auto;
  width: 50%;
  text-align: center;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
}

}

