header {
  height: 140px;
  width: 100%;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  z-index: 100;
  font-family: futura-pt, sans-serif;
  z-index: 1002;
}
header .header-logo {
  width: 100px;
  aspect-ratio: 1/1;
}
header .header-logo img {
  width: 100%;
  height: 100%;
}
header .header-logo:hover {
  cursor: pointer;
  opacity: 0.8;
}
header nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 0 20px;
}
header nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: clamp(12px, 2vw, 15px);
  font-weight: 500;
  letter-spacing: 0.1em;
  gap: clamp(10px, 2vw, 20px);
}
header nav ul li {
  margin: 0 10px;
}
header nav ul li a {
  text-decoration: none;
  color: white;
}
header nav ul li a:hover {
  color: #C1272D;
  transition: all 0.3s ease;
}
header button.cta {
  background-color: #C1272D;
  color: white;
  border: none;
  padding: 6px 35px;
  cursor: pointer;
  box-shadow: 5px 4px 0 white;
  transition: all 0.3s ease;
}
header button.cta a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
header button.cta a span {
  font-size: 12px;
  width: max-content;
  font-weight: 600;
}
header button.cta:hover {
  background-color: white;
  color: #C1272D;
  box-shadow: 5px 4px 0 #C1272D;
}
header button.cta:hover span {
  color: #C1272D;
}
@media (max-width: 1024px) {
  header {
    padding: 0 20px;
  }
  header .header-logo {
    width: 80px;
  }
  header .header-logo img {
    width: 100%;
    height: 100%;
  }
  header nav {
    padding: 0 10px;
  }
  header nav ul {
    font-size: clamp(10px, 2vw, 12px);
    gap: clamp(5px, 2vw, 10px);
  }
  header nav ul li {
    margin: 0 5px;
  }
  header button.cta {
    padding: 4px 20px;
  }
  header button.cta a {
    font-size: 20px;
  }
  header button.cta a span {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 20px;
  }
  header .header-logo {
    width: 60px;
  }
  header .header-logo img {
    width: 100%;
    height: 100%;
  }
  header nav {
    display: none;
  }
  header button.cta {
    display: none;
  }
}

.header-hamburger {
  width: 50px;
  height: 50px;
  background-color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 1002;
  display: none;
}
@media (max-width: 768px) {
  .header-hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.header-hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #C1272D;
  border-radius: 3px;
  transition: all 0.3s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.header-hamburger span:nth-child(1) {
  top: 15px;
}
.header-hamburger span:nth-child(2) {
  top: 23px;
}
.header-hamburger span:nth-child(3) {
  top: 31px;
}
.header-hamburger.active span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}
.header-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header-hamburger.active span:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1000;
  padding-top: 100px;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.mobile-menu ul li {
  border-bottom: 1px solid #eee;
}
.mobile-menu ul li a {
  display: block;
  padding: 20px 30px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s ease;
}
.mobile-menu ul li a:hover {
  background-color: #f5f5f5;
}
.mobile-menu .ticket {
  margin: 20px 30px;
  padding: 15px;
  text-align: center;
  border-radius: 5px;
  background-color: #C1272D;
  color: white;
  text-decoration: none;
  display: block;
}
.mobile-menu .ticket:hover {
  background-color: rgb(150.5732758621, 30.4267241379, 35.1077586207);
}
.mobile-menu .ticket span {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: bold;
  letter-spacing: 0.1em;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}

/*# sourceMappingURL=header.css.map */
