/* =========================
RESET
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* =========================
VARIABLES
========================= */

:root{
  --black:#191716;
  --orange:#E84312;
  --cream:#D7DEC5;
}

/* =========================
BASE
========================= */

body{
  overflow-x:hidden;

  background:var(--black);

  font-family:'Gabarito',sans-serif;
}

/* =========================
TOPBAR
========================= */

.topbar{
  position:fixed;
  top:0;
  left:0;
  z-index:9999;

  width:100%;
  height:56px;

  display:flex;
  align-items:center;

  background:#E84312;

  overflow:hidden;
}

/* LOGO */

.topbar-logo{
  position:relative;
  z-index:5;

  width:88px;
  height:100%;

  display:flex;
  align-items:center;
  justify-content:center;

  flex-shrink:0;

  border-right:2px solid rgba(215,222,197,0.4);

  background:#E84312;
}

.topbar-logo img{
  width:42px;

  filter:
  brightness(0)
  saturate(100%)
  invert(88%)
  sepia(10%)
  saturate(318%)
  hue-rotate(33deg)
  brightness(92%)
  contrast(89%);
}

/* MARQUEE */

.topbar-marquee{
  flex:1;
  height:100%;

  overflow:hidden;

  display:flex;
  align-items:center;
}

/* TRACK */

.topbar-track{
  display:flex;
  align-items:center;

  width:max-content;

  animation:topbarLoop 18s linear infinite;

  will-change:transform;
}

/* GROUP */

.topbar-group{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

/* TEXT */

.topbar-group span{
  flex-shrink:0;

  margin-right:2rem;

  color:#D7DEC5;

  font-size:1.35rem;
  font-weight:900;
  letter-spacing:0.03em;

  white-space:nowrap;
  text-transform:uppercase;
}

/* LOOP */

@keyframes topbarLoop{

  from{
    transform:translate3d(0,0,0);
  }

  to{
    transform:translate3d(-50%,0,0);
  }

}

/* LOGO */

.topbar-logo{
  position:relative;
  z-index:2;

  width:110px;
  height:100%;

  display:flex;
  align-items:center;
  justify-content:center;

  flex-shrink:0;
}

.topbar-logo img{
  width:72px;
}

/* MARQUEE */

.topbar-marquee{
  flex:1;

  overflow:hidden;
}

.topbar-track{
  display:flex;
  align-items:center;

  width:max-content;

  animation:marquee 18s linear infinite;
}

.topbar-track span{
  flex-shrink:0;

  margin-right:28px;

  color:var(--cream);

  font-size:20px;
  font-weight:800;

  letter-spacing:0.03em;

  white-space:nowrap;
}

@keyframes marquee{

  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }

}

/* =========================
HERO
========================= */

.hero{
  position:relative;

  width:100%;
  height:calc(100vh - 56px);

  margin-top:56px;

  overflow:hidden;

  background:#000;
}

/* VIDEO */

.hero-video{
  position:absolute;
  z-index:0;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;


  backface-visibility:hidden;

  transform:translateZ(0);

  pointer-events:none;
}


/* DARK */

.hero-dark{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to bottom,
    rgba(0,0,0,.15),
    rgba(0,0,0,.38)
  );

  z-index:1;
}

/* COPY */

.hero-copy{
  position:absolute;

  top:138px;
  left:22px;

  z-index:2;
}

.hero-copy h1{
  max-width:900px;

  color:var(--cream);

  font-size:64px;
  font-weight:700;
  line-height:.92;

  letter-spacing:0.0em;
}

/* BUTTON */

.hero-button{
  position:absolute;

  right:22px;
  bottom:26px;

  z-index:2;

  display:flex;
  align-items:center;
  justify-content:center;

  width:210px;
  height:84px;

  background:var(--cream);

  color:var(--orange);

  font-size:34px;
  font-weight:900;
  letter-spacing:0.05em;

  text-decoration:none;

  transition:
  transform .2s ease,
  opacity .2s ease;
}


.hero-button:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(0,0,0,.28);

  background:#E6EDD6;
}

.hero-button:active{
  transform:translateY(0) scale(.98);
}

/* =========================
LINEUP
========================= */

.lineup{
  position:relative;

  padding:56px 0 70px;

  background:var(--black);

  overflow:hidden;
}

/* TITLE */

.lineup-title{
  margin-bottom:32px;

  text-align:center;

  color:#D7DEC5;

  font-size:3rem;
  font-weight:900;
  letter-spacing:0.03em;
  text-transform:uppercase;
}

/* SLIDER */

.lineup-slider{
  overflow:hidden;

  width:100%;
}

/* TRACK */

.lineup-track{
  display:flex;
  align-items:flex-start;
  gap:26px;

  width:max-content;

  animation:lineupScroll 28s linear infinite;

  will-change:transform;
}

/* ANIMATION */

@keyframes lineupScroll{

  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(calc(-50% - 13px));
  }

}

/* CARD */

.artist-card{
  position:relative;

  flex-shrink:0;

  width:320px;

  overflow:hidden;

  background:#111;

  border:1px solid rgba(255,255,255,0.14);
}

/* IMAGE */

.artist-card img{
  display:block;

  width:100%;
  height:auto;

  object-fit:cover;

  pointer-events:none;

  user-select:none;
}

/* HOVER */

.artist-card:hover{
  transform:translateY(0px);

  transition:transform .35s ease;
}

/* =========================
OPTIONAL: PAUSE ON HOVER
========================= */

.lineup-slider:hover .lineup-track{
  animation-play-state:paused;
}

/* =========================
DAYS
========================= */

.days{
  position:relative;

  height:calc(100vh - 56px);

  padding:70px 18px 0;

  overflow:hidden;

  background:var(--black);
}

/* ASTERISKS */

.days-ast-left{
  position:absolute;

  left:-260px;
  bottom:-40px;

  width:520px;

  opacity:.42;

  pointer-events:none;
  user-select:none;
}

.days-ast-right{
  position:absolute;

  right:-120px;
  top:40px;

  width:300px;

  opacity:.42;

  pointer-events:none;
  user-select:none;
}

/* DAY BLOCK */

.day{
  position:relative;
  z-index:2;
}

/* SATURDAY */

.saturday{
  width:max-content;
}

/* SUNDAY */

.sunday{
  position:absolute;

  right:18px;
  bottom:150px;

  width:max-content;

  text-align:right;
}

/* TITLES */

.day h2{
  display:flex;
  align-items:flex-end;
  gap:18px;

  line-height:.82;

  text-transform:uppercase;
}

.sunday h2{
  justify-content:flex-end;
}

.day-name{
  color:#D7DEC5;

  font-size:112px;
  font-weight:900;

  letter-spacing:0;
}

.day-number{
  color:#E84312;

  font-size:112px;
  font-weight:900;

  letter-spacing:0;
}

.day-time{
  display:flex;
  align-items:center;
  gap:22px;

  margin-top:24px;

  color:#E84312;

  font-size:74px;
  font-weight:900;

  letter-spacing:0.02em;
}

.day p{

  margin-top:8px;

  color:#D7DEC5;

  font-size:34px;

  font-weight:400;

  letter-spacing:0;

}

.sunday .day-time{
  justify-content:flex-end;
}

/* ARROW */

.day-arrow{
  color:#D7DEC5;

  font-weight:700;

  transform:translateY(-2px);
}

/* GENRES */

.day p{
  margin-top:8px;

  color:#D7DEC5;

  font-size:34px;
  font-weight:400;

  letter-spacing:0.04em;
}

/* =========================
SPACES
========================= */

.spaces{
  min-height:calc(100vh - 56px);

  padding:48px 60px 48px;

  display:flex;
  flex-direction:column;
  justify-content:center;

  background:#191716;
}

/* TITLE */

.spaces-title{
  margin-bottom:42px;

  text-align:center;

  color:#C9D5B5;

  font-size:3rem;
  font-weight:900;
  letter-spacing:0.01em;
  text-transform:uppercase;
}

/* GRID */

.spaces-grid{
  display:grid;

  grid-template-columns:1fr 1fr;
  gap:14px;

  max-width:1320px;
  width:100%;

  margin:0 auto;
}

/* ITEMS */

.space-card{
  position:relative;

  overflow:hidden;

  background:#111;
}

/* BIG IMAGE */

.space-card.large{
  grid-column:1 / -1;

  aspect-ratio:16 / 5.8;
}

.space-card.small{
  aspect-ratio:16 / 7.2;
}

/* IMAGE */

.space-card img{
  width:100%;
  height:100%;

  display:block;

  object-fit:cover;

  transition:
  transform .7s ease,
  filter .45s ease;
}

/* OVERLAY */

.space-overlay{
  position:absolute;
  inset:0;

  display:flex;
  align-items:flex-end;

  padding:26px;

  opacity:0;

  transition:
  opacity .45s ease,
  background-color .45s ease;
}

/* TEXT */

.space-overlay span{
  color:#C9D5B5;

  font-size:2rem;
  font-weight:900;

  text-transform:uppercase;

  transform:translateY(12px);

  transition:
  transform .45s ease,
  color .45s ease;
}

/* HOVER IMAGE */

.space-card:hover img{
  transform:scale(1.04);
}

/* =========================
MAIN
========================= */

.space-main .space-overlay{
  background:rgba(205,47,0,0);
}

.space-main:hover .space-overlay{
  opacity:1;

  background:rgba(205,47,0,.58);
}

.space-main:hover .space-overlay span{
  transform:translateY(0);
}

/* =========================
FOGON
========================= */

.space-fire .space-overlay{
  background:rgba(236,54,141,0);
}

.space-fire:hover .space-overlay{
  opacity:1;

  background:rgba(236,54,141,.58);
}

.space-fire:hover .space-overlay span{
  transform:translateY(0);
}

/* =========================
CHILL
========================= */

.space-chill .space-overlay{
  background:rgba(27,255,200,0);
}

.space-chill:hover .space-overlay{
  opacity:1;

  background:rgba(27,255,200,.42);
}

.space-chill:hover .space-overlay span{
  transform:translateY(0);

  color:#191716;
}

/* =========================
MAP
========================= */

.map-section{
  min-height:calc(100vh - 56px);

  padding:48px 60px 60px;

  display:flex;
  flex-direction:column;
  justify-content:center;

  background:#191716;
}

/* TITLE */

.map-title{
  margin-bottom:42px;

  text-align:center;

  color:#1BFFC8;

  font-size:3rem;
  font-weight:900;
  letter-spacing:0.01em;
  text-transform:uppercase;
}

/* WRAP */

.map-wrap{
  width:100%;
  max-width:1320px;

  margin:0 auto;
}

/* IMAGE */

.map-wrap img{
  display:block;

  width:100%;
  height:auto;

  object-fit:cover;
}

/* =========================
TICKETS
========================= */

.tickets{
  height:calc(100vh - 56px);

  padding:34px 60px 28px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#191716;

  overflow:hidden;
}

/* INNER */

.tickets-inner{
  width:100%;
  max-width:1684px;

  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* TITLE */

.tickets-main-title{
  margin-bottom:28px;

  text-align:center;

  color:#1BFFC8;

  font-size:58px;
  font-weight:700;
  line-height:1;

  text-transform:uppercase;
}

/* BLOCK */

.tickets-block{
  margin-bottom:32px;
}

/* LABEL */

.tickets-label{
  margin-bottom:20px;

  color:#1BFFC8;

  font-size:30px;
  font-weight:700;
  line-height:1.1;

  text-transform:uppercase;
}

/* DAYS */

.tickets-days{
  display:grid;

  grid-template-columns:1fr 1fr 1fr;
  gap:18px;
}

/* DAY CARD */

.ticket-day{
  min-height:128px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  border:1px solid #C9D5B5;
}

/* ACTIVE */

.ticket-day.active{
  background:#CD2F00;

  border-color:#CD2F00;
}

/* TEXT */

.ticket-day-name{
  color:#C9D5B5;

  font-size:36px;
  font-weight:700;
  line-height:1.15;

  text-transform:uppercase;
}

.ticket-day-date{
  color:#C9D5B5;

  font-size:28px;
  font-weight:700;
  line-height:1.15;

  text-transform:uppercase;
}

/* TYPES */

.ticket-types{
  display:grid;

  grid-template-columns:1fr 1fr;
  gap:18px;
}

/* CARD */

.ticket-type{
  min-height:320px;

  padding:38px 42px;

  border:1px solid #C9D5B5;
}

.ticket-type.vip{
  background:#CD2F00;

  border-color:#CD2F00;
}

/* CONTENT */

.ticket-content{
  height:100%;

  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

/* TOP */

.ticket-top h4{
  margin-bottom:16px;

  color:#C9D5B5;

  font-size:38px;
  font-weight:700;
  line-height:1.1;

  text-transform:uppercase;
}

/* LIST */

.ticket-top ul{
  list-style:none;

  padding-left:10px;

  opacity:.65;
}

.ticket-top li{
  margin-bottom:6px;

  color:#C9D5B5;

  font-size:18px;
  font-weight:400;
  line-height:1.2;

  text-transform:uppercase;
}

.ticket-type.vip li{
  font-weight:700;

  opacity:1;
}

/* PRICE */

.ticket-phase{
  display:block;

  margin-bottom:4px;

  color:#C9D5B5;

  font-size:18px;
  font-weight:400;

  text-transform:uppercase;
}

.ticket-price-row{
  display:flex;
  align-items:flex-end;
  gap:16px;
}

.ticket-price-row strong{
  color:#C9D5B5;

  font-size:38px;
  font-weight:700;
  line-height:1;

  text-transform:uppercase;
}

.ticket-price-row small{
  margin-bottom:3px;

  color:#C9D5B5;

  font-size:14px;
  font-weight:400;

  text-transform:uppercase;
}

/* BUY */

.tickets-buy-wrap{
  display:flex;
  justify-content:flex-end;
}

.tickets-buy{
  width:320px;
  height:82px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#CD2F00;

  color:#C9D5B5;

  font-size:34px;
  font-weight:700;

  text-transform:uppercase;
  text-decoration:none;
}

/* =========================
FAQ
========================= */

.faq{
  padding:120px 60px;

  background:#191716;
}

/* TITLE */

.faq-title{
  margin-bottom:52px;

  text-align:center;

  color:#1BFFC8;

  font-size:50px;
  font-weight:700;
  line-height:1;

  text-decoration:underline;
  text-transform:uppercase;
}

/* LIST */

.faq-list{
  max-width:1320px;

  margin:0 auto;
}

/* ITEM */

.faq-item{
  border-top:1px solid rgba(201,213,181,.22);
}

.faq-item:last-child{
  border-bottom:1px solid rgba(201,213,181,.22);
}

/* SUMMARY */

.faq-item summary{
  padding:34px 0;

  display:flex;
  align-items:center;
  justify-content:space-between;

  cursor:pointer;

  list-style:none;

  color:#C9D5B5;

  font-size:28px;
  font-weight:700;
  line-height:1.1;

  text-transform:uppercase;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

/* PLUS */

.faq-item summary::after{
  content:"+";

  color:#1BFFC8;

  font-size:34px;
  font-weight:700;

  transition:transform .25s ease;
}

.faq-item[open] summary::after{
  transform:rotate(45deg);
}

/* CONTENT */

.faq-item p{
  max-width:900px;

  padding:0 0 34px;

  color:#C9D5B5;

  font-size:22px;
  font-weight:400;
  line-height:1.45;

  opacity:.82;
}

/* =========================
SPONSORS
========================= */

.sponsors{
  padding:0 60px 90px;

  background:#191716;
}

/* TITLE */

.sponsors-title{
  margin-bottom:28px;

  text-align:center;

  color:#1BFFC8;

  font-size:50px;
  font-weight:700;
  line-height:1;

  text-transform:uppercase;
}

/* IMAGE */

.sponsors-image{
  display:block;

  width:100%;
  max-width:1680px;

  margin:0 auto;
}

/* =========================
FOOTER
========================= */

.footer{
  padding:28px 60px 26px;

  display:flex;
  flex-direction:column;
  align-items:center;
  gap:24px;

  background:#CD2F00;
}

/* LOGO */

.footer-logo{
  width:72px;

  filter:
  brightness(0)
  saturate(100%)
  invert(88%)
  sepia(10%)
  saturate(318%)
  hue-rotate(33deg)
  brightness(92%)
  contrast(89%);
}

/* SOCIALS */

.footer-socials{
  display:flex;
  align-items:center;
  gap:42px;
}

.footer-socials a{
  color:#C9D5B5;

  font-size:18px;
  font-weight:700;

  text-decoration:none;
  text-transform:uppercase;

  transition:opacity .2s ease;
}

.footer-socials a:hover{
  opacity:.7;
}

/* COPY */

.footer-copy{
  color:#C9D5B5;

  font-size:20px;
  font-weight:500;
  line-height:1;

  text-align:center;
  text-transform:uppercase;
}

/* =========================================
LAPTOP / TABLET
========================================= */

@media (max-width:1200px){

  /* HERO */

  .hero-copy{
    top:110px;
    left:20px;
  }

  .hero-copy h1{
    font-size:52px;
    max-width:680px;
  }

  .hero-button{
    width:180px;
    height:72px;

    font-size:28px;
  }

  /* DAYS */

  .day-name,
  .day-number{
    font-size:84px;
  }

  .day-time{
    font-size:56px;
  }

  .day p{
    font-size:26px;
  }

  /* TICKETS */

  .tickets{
    height:auto;
    min-height:auto;
  }

  .tickets-main-title{
    font-size:48px;
  }

  .ticket-day-name{
    font-size:28px;
  }

  .ticket-day-date{
    font-size:22px;
  }

  .ticket-top h4{
    font-size:32px;
  }

  .ticket-price-row strong{
    font-size:32px;
  }

}

/* =========================================
TABLET
========================================= */

@media (max-width:900px){

  /* GLOBAL */

  .spaces,
  .map-section,
  .tickets,
  .faq,
  .sponsors{
    padding-left:24px;
    padding-right:24px;
  }

  /* TOPBAR */

  .topbar{
    height:52px;
  }

  .topbar-logo{
    width:78px;
  }

  .topbar-logo img{
    width:52px;
  }

  .topbar-track span{
    font-size:16px;
    margin-right:18px;
  }

  /* HERO */

  .hero{
    height:85vh;
    margin-top:52px;
  }

  .hero-copy{
    top:auto;
    bottom:120px;
    left:24px;
  }

  .hero-copy h1{
    font-size:48px;
    line-height:.95;
    max-width:520px;
  }

  .hero-button{
    left:24px;
    right:auto;
    bottom:32px;

    width:180px;
    height:68px;

    font-size:26px;
  }

  /* LINEUP */

  .artist-card{
    width:240px;
  }

  .lineup-track{
    gap:18px;
  }

  /* DAYS */

  .days{
    height:auto;

    padding:90px 24px;

    display:flex;
    flex-direction:column;
    gap:90px;
  }

  .sunday{
    position:relative;
    right:auto;
    bottom:auto;

    text-align:left;
  }

  .sunday h2,
  .sunday .day-time{
    justify-content:flex-start;
  }

  .day h2{
    flex-wrap:wrap;
    gap:10px;
  }

  .day-name,
  .day-number{
    font-size:64px;
  }

  .day-time{
    font-size:42px;
    gap:14px;
  }

  .day p{
    font-size:22px;
  }

  .days-ast-left{
    width:300px;
    left:-120px;
  }

  .days-ast-right{
    width:180px;
    right:-60px;
  }

  /* SPACES */

  .spaces-grid{
    grid-template-columns:1fr;
  }

  .space-card.large,
  .space-card.small{
    aspect-ratio:16 / 10;
  }

  .space-overlay{
    opacity:1;
    background:linear-gradient(
      to top,
      rgba(0,0,0,.65),
      rgba(0,0,0,0)
    );
  }

  .space-overlay span{
    transform:none;
    font-size:2rem;
  }

  /* MAP */

  .map-wrap{
    overflow:hidden;
  }

  /* TICKETS */

  .tickets{
    padding-top:80px;
    padding-bottom:80px;
  }

  .tickets-days{
    grid-template-columns:1fr;
  }

  .ticket-types{
    grid-template-columns:1fr;
  }

  .ticket-day{
    min-height:110px;
  }

  .ticket-type{
    min-height:auto;
  }

  .tickets-buy-wrap{
    justify-content:center;
  }

  .tickets-buy{
    width:100%;
    max-width:420px;
  }

  /* FAQ */

  .faq-title,
  .sponsors-title{
    font-size:40px;
  }

  .faq-item summary{
    font-size:22px;
    padding:26px 0;
  }

  .faq-item p{
    font-size:18px;
  }

  /* FOOTER */

  .footer{
    padding:28px 24px;
  }

  .footer-socials{
    gap:22px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .footer-copy{
    font-size:16px;
    line-height:1.3;
  }

}

/* =========================================
MOBILE
========================================= */

@media (max-width:600px){

  /* HERO */

  .hero{
    height:78vh;
  }

  .hero-copy{
    left:18px;
    bottom:110px;
  }

  .hero-copy h1{
    font-size:36px;
    max-width:320px;
  }

  .hero-button{
    left:18px;
    bottom:24px;

    width:150px;
    height:58px;

    font-size:22px;
  }

  /* TITLES */

  .lineup-title,
  .tickets-main-title,
  .faq-title,
  .sponsors-title{
    font-size:32px;
  }

  /* LINEUP */

  .artist-card{
    width:180px;
  }

  /* DAYS */

  .days{
    gap:70px;
  }

  .day-name,
  .day-number{
    font-size:48px;
    line-height:.9;
  }

  .day-time{
    margin-top:14px;

    font-size:30px;
  }

  .day p{
    font-size:18px;
    line-height:1.3;
  }

  /* SPACES */

  .spaces,
  .map-section,
  .tickets,
  .faq,
  .sponsors{
    padding-left:18px;
    padding-right:18px;
  }

  .space-overlay{
    padding:18px;
  }

  .space-overlay span{
    font-size:1.05rem;
  }

  /* TICKETS */

  .tickets-main-title{
    margin-bottom:22px;
  }

  .tickets-label{
    font-size:24px;
  }

  .ticket-day{
    min-height:92px;
    padding:10px;
  }

  .ticket-day-name{
    font-size:24px;
    text-align:center;
  }

  .ticket-day-date{
    font-size:18px;
  }

  .ticket-type{
    padding:26px 24px;
  }

  .ticket-top h4{
    font-size:28px;
  }

  .ticket-top li{
    font-size:15px;
  }

  .ticket-price-row{
    flex-direction:column;
    align-items:flex-start;
    gap:4px;
  }

  .ticket-price-row strong{
    font-size:30px;
  }

  .tickets-buy{
    width:100%;
    height:72px;

    font-size:28px;
  }

  /* FAQ */

  .faq{
    padding-top:90px;
    padding-bottom:90px;
  }

  .faq-title{
    margin-bottom:34px;
  }

  .faq-item summary{
    font-size:18px;
    line-height:1.3;
  }

  .faq-item p{
    font-size:16px;
  }

  /* SPONSORS */

  .sponsors{
    padding-bottom:70px;
  }

  /* FOOTER */

  .footer-logo{
    width:58px;
  }

  .footer-socials{
    flex-direction:column;
    gap:14px;
  }

  .footer-socials a{
    font-size:16px;
  }

  .footer-copy{
    font-size:13px;
    max-width:280px;
  }

}

/* =========================
GLOBAL INTERACTIONS
========================= */

a,
button,
summary,
.ticket-day,
.ticket-type{
  transition:
  background-color .25s ease,
  color .25s ease,
  border-color .25s ease,
  transform .25s ease,
  opacity .25s ease,
  box-shadow .25s ease;
}

/* ACCESSIBLE FOCUS */

a:focus-visible,
button:focus-visible,
summary:focus-visible{
  outline:2px solid #1BFFC8;
  outline-offset:4px;
}