:root {
  --main: #00b7ad;
  --bg-main: #0d0d0d;
  --bg-secondary: #131313;
  --text: #ffffff;
  --text-secondary: #929292;
  --silver: #d5d5d5;
  --gold: #e9a319;
  --border: #4d4d4d;
}

/* Outfit */
@font-face {
  font-family: "Outfit";
  src: url("Outfit/Outfit-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("Outfit/Outfit-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("Outfit/Outfit-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Poppins */
@font-face {
  font-family: "Poppins";
  src: url("Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("Poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-main);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Navbar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 240px;
  color: var(--text);
  margin-bottom: 60px;
  position: relative;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 40px;
}

.nav-left a,
.nav-right a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-left a:hover,
.nav-right a:hover {
  color: var(--text);
}

.nav-logo {
  font-size: 28px;
  font-weight: 600;
  background: linear-gradient(90deg, var(--text) 0%, var(--main) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.nav-logo a {
  text-decoration: none;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--text);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(19, 19, 19, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.nav-mobile-menu.active {
  right: 0;
}

.mobile-menu-content {
  padding: 100px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 18px;
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.nav-logo {
  background: linear-gradient(90deg, var(--text) 0%, var(--main) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-size: 32px;
}

.nav-logo a {
  text-decoration: none;
  font-weight: 600;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-left a,
.nav-right a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 16px;
}

header a:hover {
  color: var(--text);
  transition: color 0.3s ease;
}

.nav-hamburger {
  display: none;
  cursor: pointer;
  position: relative;
}

.nav-hamburger-icon {
  font-size: 28px;
  color: var(--text);
  transition: color 0.3s ease;
}

.nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: 50px;
  padding: 20px;
  background-color: var(--bg-secondary);
  border-radius: 12px;
  gap: 16px;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  z-index: 1000;
}

.nav-menu.active {
  display: flex;
}

.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  color: var(--text);
  background-color: var(--bg-main);
}

@media (max-width: 768px) {
  header {
    display: flex;
    flex-direction: row;
    margin-bottom: 60px;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
  }

  .nav-logo {
    font-size: 24px;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-image {
  width: 80%;
  height: auto;
  position: relative;
  top: -90px;
}

.hero h1 {
  color: var(--text);
  font-size: 60px;
}

.hero-0 {
  width: 11%;
  height: auto;
}

.star {
  position: absolute;
  width: 5%;
  height: auto;
  top: 160px;
  left: 280px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .star {
    display: none;
  }

  .hero-0 {
    width: auto;
    height: 26px;
  }

  .hero-image {
    top: -50px;
    width: auto;
    height: 240px;
  }
}

/* Lineup */
.lineup-container {
  position: relative;
  top: -140px;
}

.lineup {
  width: auto;
  height: 140px;
  background-color: var(--main);
  align-items: center;
  display: flex;
}

.lineup-text {
  align-items: center;
  white-space: nowrap;
  display: flex;
  gap: 32px;
  font-size: 28px;
  font-weight: 500;
  animation: scrollinfinite 25s linear infinite;
}

@keyframes scrollinfinite {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .lineup-container {
    top: -60px;
  }

  .lineup {
    height: 100px;
  }

  .lineup-text {
    font-size: 24px;
  }
}

/* About */

.about {
  width: auto;
  height: 140px;
  padding: 100px 180px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 80px;
  font-weight: 600;
  margin-bottom: 160px;
}

.about img {
  width: 24rem;
  height: auto;
}

.about-text {
  color: var(--text);
  font-weight: 600;
  font-size: 28px;
}

.about-text h1 {
  margin: 0;
}

.about-text p {
  font-weight: 400;
  font-family: "Outfit";
  font-size: 14px;
}

.about-gradient {
  background: linear-gradient(90deg, var(--text) 0%, var(--main) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .about {
    flex-direction: column;
    padding: 20px;
    margin-top: 280px;
  }

  .about img {
    width: auto;
    height: 280px;
  }

  .about-text {
    text-align: center;
  }

  .about-text h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

/* Performer */
.performer {
  width: auto;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 540px;
}

.performer-title {
  display: flex;
  flex-direction: row;
  font-size: 44px;
  font-weight: 600;
  gap: 24px;
  color: var(--text);
  margin-bottom: 80px;
}

.performer-title span {
  background: linear-gradient(90deg, var(--text) 0%, var(--main) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.performer-card-container {
  display: flex;
  flex-direction: row;
  gap: 42px;
}

.performer-card {
  position: relative;
  overflow: hidden;
  transition: width 0.4s ease;
  width: 170px;
}

.performer-card:hover {
  width: 220px;
}

.performer-img {
  width: 100%;
  object-fit: cover;
  height: 20rem;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

.performer-card:hover .performer-img {
  filter: grayscale(0%);
  transform: scale(1.15);
}

.performer-text {
  position: absolute;
  color: var(--text);
  font-size: 18px;
  bottom: 20px;
  left: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.performer-card:hover .performer-text {
  opacity: 1;
}

@media (max-width: 768px) {
  .performer-title {
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 180px;
    gap: 12px;
    font-size: 32px;
  }

  .performer-card-container {
    gap: 0px;
  }

  .performer-card {
    width: 100%;
    margin-bottom: 20px;
  }

  .performer-card:hover {
    width: 100%;
  }

  .performer-card-container {
    flex-direction: column;
    align-items: center;
  }
}

/* Ticket */
.ticket {
  width: auto;
  height: 180px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 40px;
}

.ticket-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text);
  margin-bottom: 80px;
}

.ticket-title h1 {
  font-size: 44px;
}

.ticket-title h1 span {
  background: linear-gradient(90deg, var(--text) 0%, var(--main) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ticket-title p {
  font-weight: 400;
  font-family: "Outfit";
  font-size: 14px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ticket-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.ticket-content img {
  width: auto;
  height: 410px;
}

.ticket-list {
  display: flex;
  flex-direction: column;
  color: var(--text);
  gap: 30px;
}

.ticket-card {
  display: flex;
  flex-direction: row;
  background-color: var(--bg-secondary);
  border-radius: 8px;
  outline: var(--border) solid 1px;
  padding: 20px;
  justify-content: space-between;
  align-items: center;
  height: auto;
  width: 500px;
}

.ticket-card-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.ticket-card p {
  font-size: 10px;
  font-weight: 400;
  font-family: "outfit";
}

.ticket-card button {
  border: var(--border) solid 1px;
  background-color: var(--bg-secondary);
  border-radius: 30px;
  padding: 8px 24px;
  color: var(--text);
  font-family: "poppins";
  font-weight: 600;
  cursor: pointer;
}

.ticket-card button:hover {
  background-color: var(--text);
  color: var(--bg-secondary);
  transition: all 0.3s ease;
}

.ticket-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

#silver {
  color: var(--silver);
}

#gold {
  color: var(--gold);
}

#emerald {
  color: var(--main);
}

@media (max-width: 768px) {
  .ticket {
    margin-top: 2500px;
    padding: 20px;
  }

  .ticket-title {
    text-align: center;
  }

  .ticket-content {
    flex-direction: column;
    align-items: center;
  }

  .ticket-card {
    width: 300px;
  }

  .ticket-card-left h1 {
    font-size: 20px;
  }
}

/* Rundown */
.rundown {
  width: auto;
  height: 180px;
  display: flex;
  flex-direction: column;
  margin-top: 300px;
}

.rundown-title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 32px;
}

.rundown-title span {
  background: linear-gradient(90deg, var(--text) 0%, var(--main) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rundown-content {
  display: flex;
  flex-direction: column;
  width: auto;
  padding: 40px 200px;
  color: var(--text);
  gap: 30px;
}

.rundown-text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.rundown-text-left {
  display: flex;
  flex-direction: row;
}

.rundown-line {
  outline: var(--text) solid 1px;
  height: 0;
  width: auto;
  opacity: 0.5;
}

.rundown-text-left {
  font-family: "Outfit";
  font-weight: 500;
  font-size: 14px;
}

.rundown-text-right {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 24px;
}

@media (max-width: 768px) {
  .rundown {
    margin-top: 580px;
  }

  .rundown-content {
    padding: 20px;
  }

  .rundown-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
  }
}

/* Gallery */
.galeri {
  width: auto;
  height: 180px;
  margin-top: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 300px;
}

.galeri-title {
  font-size: 32px;
  margin-bottom: 60px;
  color: var(--text);
}

.galeri-title span {
  background: linear-gradient(90deg, var(--text) 0%, var(--main) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.galeri-content {
  display: grid;
  padding: 40px 200px;
  gap: 10px;
}

.galeri-content img {
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

.row-top {
  gap: 10px;
  display: grid;
  grid-template-columns: 3fr 5fr 4fr;
}

.row-bottom {
  display: grid;
  gap: 10px;
  grid-template-columns: 5fr 4fr 3fr;
}

.galeri-card {
  overflow: hidden;
  transition: width 0.4s ease;
  position: relative;
  height: 200px;
}

.galeri-content img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.galeri-card h2 {
  color: white;
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: "Poppins";
  font-weight: 500;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.galeri-card img:hover {
  filter: grayscale(0%);
  transform: scale(1.15);
  object-fit: cover;
}

.galeri-card:hover h2 {
  opacity: 1;
}

@media (max-width: 768px) {
  .galeri {
    margin-top: 1400px;
    margin-bottom: 0;
  }
  .galeri-content {
    display: flex;
    flex-direction: column;
    padding: 20px;
  }
  .galeri-content img {
    width: 100%;
    height: 200px;
  }
  .row-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .row-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

/* Footer */
.footer {
  background-color: var(--bg-main);
  color: var(--text);
  padding: 0;
  margin-top: 100px;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border) 50%,
    transparent 100%
  );
  margin-bottom: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 40px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-left {
  flex: 1;
  max-width: 400px;
}

.footer-logo h1 {
  background: linear-gradient(90deg, var(--text) 0%, var(--main) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-description {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.footer-right {
  display: flex;
  gap: 80px;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 8px;
  font-family: "Outfit", sans-serif;
}

@media (max-width: 768px) {
  .footer {
    margin-top: 700px;
  }

  .footer-content {
    flex-direction: column;
    padding: 0 20px 40px;
    gap: 40px;
  }

  .footer-right {
    flex-direction: column;
    gap: 40px;
  }

  .footer-logo {
    font-size: 28px;
  }
}
