/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v51-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --text: rgba(255,255,255,.92);
  --text-soft: rgba(255,255,255,.72);
  --overlay: rgba(0,0,0,.60);
  --glass: rgba(0,0,0,.25);
  --glass-border: rgba(255,255,255,.08);
  --transition: .25s ease;
  --max-width: 900px;
  --logo-width: min(700px, 85vw);
}

*::before,
*::after{
  box-sizing:border-box;
}

html{
  font-size:16px;
}

body{
  margin:0;
  min-height:100vh;
  font-family:"Roboto",sans-serif;
  color:var(--text);
  background:#000;
  overflow-x:hidden;
}

#bg-video{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-2;
}

#slideshow {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

.slide {
  position:absolute;
  inset:0;
  overflow:hidden;
  opacity:0;
  transition:opacity 2s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  position:absolute;
  left:0;
  top:0;
  max-width:none;
  max-height:none;
  will-change:left,top,transform;
  -webkit-user-drag:none;
  user-select:none;
  transform-origin:top left;
  display:block;
}

.overlay{
  position:fixed;
  inset:0;
  background:
    radial-gradient(circle at center,
      rgba(0,0,0,.20),
      rgba(0,0,0,.72)),
    linear-gradient(
      rgba(0,0,0,.30),
      rgba(0,0,0,.60));
    z-index:-1;
}

.header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  display:flex;
  justify-content:flex-end;
  padding:28px 40px;
  z-index:10;
}

.social-nav{
  display:flex;
  align-items:center;
  gap:20px;
}

.social-nav a{
  color:white;
  font-size:1.3rem;
  opacity:.75;
  transition:all var(--transition);
}

.social-nav a:hover{
  opacity:1;
  transform:translateY(-3px) scale(1.08);
}

.hero{
  min-height:80vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:
    20px
    20px
    20px;
}

.logo {
  width: var(--logo-width);
  max-width: 100%;
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 0 25px rgba(0,0,0,.7));
    animation: logoFade 1.2s ease;
}

.intro{
  margin-top:45px;
  width:min(var(--max-width),100%);
  padding:
    30px
    36px;
  background:var(--glass);
  backdrop-filter:blur(10px);
  border-radius:12px;
  box-shadow:
    0 20px 45px rgba(0,0,0,.45);
}

.intro p{
  margin:0 0 22px;
  line-height:1.8;
  font-size:1.08rem;
  font-weight:300;
  color:var(--text-soft);
}

.intro p:last-child{
  margin-bottom:0;
}

.highlight{
  font-size:1.45rem !important;
  font-weight:700 !important;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:white !important;
}

.streaming{
  margin-top:45px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:18px;
}

.streaming a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:
    12px
    18px;
  color:white;
  text-decoration:none;
  border-radius:50px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  transition:all var(--transition);
}

.streaming a:hover{
  background:rgba(255,255,255,.16);
  transform:translateY(-3px);
}

.footer{
  position:fixed;
  bottom:25px;
  left:0;
  right:0;
  text-align:center;
  font-size:.9rem;
  color:rgba(255,255,255,.55);
  letter-spacing:.08em;
}

.site-footer {
  margin-top: 6rem;
  padding: 3rem 1.5rem;
  text-align: center;
}

.footer-divider {
  width: min(700px, 90%);
  height: 1px;
  margin: 0 auto 2rem;
  background: var(--color-primary);
  opacity: .4;
}

.footer-title {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .85rem;
  color: #888;
  margin-bottom: 1.5rem;
}

.footer-social,
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-social {
  margin-bottom: 2rem;
}

.footer-copy {
  margin: 2rem 0 1rem;
  font-size: .8rem;
  color: #777;
}

.site-footer a {
  color: #ddd;
  text-decoration: none;
  transition: color .25s ease;
}

.site-footer a:hover {
  color: var(--color-primary);
}

.site-footer a:any-link {
  color: #ddd;
  text-decoration: none;
  transition: color .25s ease;
}

.site-footer a:any-link:hover,
.site-footer a:any-link:focus-visible {
  color: var(--color-primary);
}

@keyframes logoFade{
  from{
    opacity:0;
    transform:translateY(25px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media (max-width:768px){
  .header{
    justify-content:center;
      padding:24px;
  }
  .social-nav{
    gap:18px;
  }
  .social-nav a{
    font-size:1.15rem;
  }
  .hero{
    padding:
      110px
      22px
      80px;
  }
  .intro{
    padding:24px;
  }
  .intro p{
    font-size:1rem;
    line-height:1.7;
  }
  .highlight{
    font-size:1.2rem !important;
  }
  .footer{
    bottom:18px;
    padding:0 20px;
  }
}

@media (prefers-reduced-motion:reduce){
 *{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }
}
