/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */

/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {
  /**
   * colors
   */

  --ultramarine-blue: #082b66;
  --silver-metallic: hsl(240, 4%, 71%);
  --fiery-rose_12: hsla(354, 86%, 65%, 0.12);
  --eerie-black-1: hsl(0, 0%, 13%);
  --eerie-black-2: hsl(0, 0%, 12%);
  --smokey-black: hsl(40, 100%, 2%);
  --silver-sand: hsl(240, 4%, 76%);
  --ocean-green: hsl(161, 50%, 57%);
  --fiery-rose: hsl(354, 86%, 65%);
  --alice-blue: hsl(214, 32%, 91%);
  --davys-gray: hsl(0, 0%, 34%);
  --blue-ryb: #082b66;
  --white_50: hsla(0, 0%, 100%, 0.5);
  --white: hsl(0, 0%, 100%);
  --onyx-1: hsl(0, 0%, 23%);
  --onyx-2: hsl(0, 0%, 20%);

  /**
   * typography
   */

  --ff-primary: "Montserrat", sans-serif;
  --ff-secondary: "Open Sans", sans-serif;
  --ff-heading: "Bebas Neue", cursive;

  --fs-1: calc(2.3rem + 2.1vw);
  --fs-2: calc(2.1rem + 0.9vw);
  --fs-3: calc(2rem + 0.3vw);
  --fs-4: 2rem;
  --fs-5: 1.8rem;
  --fs-6: 1.5rem;
  --fs-7: 1.4rem;
  --fs-8: 1.3rem;
  --fs-9: 1.2rem;

  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /**
   * spacing
   */

  --section-padding: 120px;

  /**
   * shadow
   */

  --shadow: 0 10px 30px hsla(0, 0%, 0%, 0.1);

  /**
   * radius
   */

  --radius-pill: 500px;
  --radius-circle: 50%;
  --radius-5: 5px;
  --radius-8: 8px;
  --radius-16: 16px;

  /**
   * transition
   */

  --transition: 0.25s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li {
  list-style: none;
}

a,
img,
span,
button,
ion-icon {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}

input,
table {
  width: 100%;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

html {
  font-family: var(--ff-secondary);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--smokey-black);
  color: var(--silver-sand);
  font-family: var(--ff-secondary);
  font-size: 1.6rem;
  line-height: 1.7;
}

body.active {
  overflow-y: hidden;
}

:focus-visible {
  outline-offset: 4px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: hsl(0, 0%, 98%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(0, 0%, 70%);
}

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 15px;
}

.h1,
.h2,
.h3 {
  color: var(--white);
  font-family: var(--ff-primary);
  letter-spacing: 2px;
  line-height: 1.1;
}

.h1 {
  font-size: var(--fs-1);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.h2 {
  font-size: var(--fs-2);
  font-weight: 400;
}

.h3 {
  font-size: var(--fs-4);
  font-weight: 400;
}

.btn-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.btn {
  max-width: max-content;
  padding: var(--padding-y, 15px) 35px;
  font-family: var(--ff-primary);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary {
  color: var(--white);
  background-color: var(--ultramarine-blue);
  border-color: var(--ultramarine-blue);
  box-shadow: 0 4px 15px rgba(8, 43, 102, 0.3);
}

.btn-primary:is(:hover, :focus) {
  background-color: #144f95;
  border-color: #144f95;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(8, 43, 102, 0.4);
}

.btn-secondary {
  color: var(--white);
  background-color: transparent;
  border-color: var(--white);
}

.btn-secondary:is(:hover, :focus) {
  background-color: var(--white);
  color: var(--ultramarine-blue);
  transform: translateY(-2px);
}

.w-100 {
  width: 100%;
}

.section {
  padding-block: var(--section-padding);
}

.section-title {
  margin-block-end: 24px;
}

.section-text {
  font-family: var(--ff-secondary);
  font-size: var(--fs-6);
  line-height: 1.8;
  color: var(--alice-blue);
}

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

.grid-list {
  display: grid;
  gap: 30px;
}

.bg-gray {
  background-color: var(--eerie-black-1);
}

.btn-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--white);
  font-family: var(--ff-primary);
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-link > * {
  transition: var(--transition);
}

.btn-link:is(:hover, :focus) {
  color: #144f95;
}

.btn-link:is(:hover, :focus) ion-icon {
  transform: translateX(5px);
}

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn-group {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 28px;
  background-color: transparent;
  transition: var(--transition);
  z-index: 4;
}

.header.active {
  background-color: rgba(0, 0, 0, 0.8);
  padding-block: 18px;
  box-shadow: var(--shadow);
}

.header .container,
.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-open-btn {
  color: var(--white_50);
  font-size: 30px;
  transition: var(--transition);
}

.nav-open-btn:is(:hover, :focus) {
  color: #144f95;
}

.navbar {
  position: fixed;
  background-color: var(--eerie-black-1);
  color: var(--alice-blue);
  top: 0;
  right: -400px;
  max-width: 400px;
  width: 100%;
  height: 100vh;
  padding: 40px 16px;
  z-index: 2;
  visibility: hidden;
  transition: 0.25s var(--cubic-in);
}

.navbar.active {
  visibility: visible;
  transform: translateX(-400px);
  transition: 0.5s var(--cubic-out);
}

.navbar-top {
  margin-block-end: 30px;
}

.nav-close-btn {
  background-color: var(--fiery-rose_12);
  color: var(--fiery-rose);
  font-size: 20px;
  padding: 5px;
  border-radius: var(--radius-circle);
}

.nav-close-btn ion-icon {
  --ionicon-stroke-width: 45px;
}

.navbar-link {
  font-family: var(--ff-primary);
  font-size: var(--fs-7);
  padding: 8px 16px;
  color: var(--white);
  font-weight: var(--fw-500);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition);
}

.navbar-link:is(:hover, :focus) {
  color: #bbdaff;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--smokey-black);
  transition: var(--transition);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.overlay.active {
  pointer-events: all;
  opacity: 0.75;
  visibility: visible;
}

/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  background: linear-gradient(
    135deg,
    #082b66 0%,
    #1a4a8a 35%,
    #0d1f3d 70%,
    #051528 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block-start: 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(138, 43, 226, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 212, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 20%,
      rgba(255, 0, 128, 0.08) 0%,
      transparent 40%
    );
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.03) 1px,
      rgba(255, 255, 255, 0.03) 2px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.03) 1px,
      rgba(255, 255, 255, 0.03) 2px
    );
  background-size: 60px 60px;
  animation: patternMove 20s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes patternMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}

.hero-overlay-ticketing {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.43), rgba(0, 0, 0, 0.803)),
    url("../images/banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}

.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.hero-content {
  width: 100%;
  max-width: 900px;
  color: var(--white);
}

.hero-subtitle {
  font-family: var(--ff-primary);
  font-size: var(--fs-7);
  font-weight: var(--fw-700);
  letter-spacing: 4px;
  margin-block-end: 15px;
  color: var(--white);
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--ff-primary);
  font-size: calc(4rem + 5vw);
  font-weight: var(--fw-800);
  text-transform: uppercase;
  margin-block: 10px 20px;
  line-height: 1.1;
  letter-spacing: 3px;
}

.hero-location {
  font-family: var(--ff-primary);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  letter-spacing: 3px;
  margin-block-end: 40px;
  color: var(--silver-sand);
  text-transform: uppercase;
}

.lineup-preview {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: var(--radius-8);
  margin-block: 30px 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lineup-title {
  font-family: var(--ff-primary);
  font-size: var(--fs-5);
  font-weight: var(--fw-700);
  color: var(--white);
  text-align: center;
  margin-block-end: 30px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.lineup-artists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.artist-category h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-4);
  font-weight: 400;
  color: var(--fiery-rose);
  margin-block-end: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.artist-category ul {
  list-style: none;
  padding: 0;
}

.artist-category li {
  font-family: var(--ff-secondary);
  font-size: var(--fs-7);
  color: var(--white);
  padding-block: 8px;
  border-block-start: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-buttons {
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/*-----------------------------------*\
  #TICKETING PAGE
\*-----------------------------------*/

.ticketing-hero .hero-text {
  font-family: var(--ff-secondary);
  font-size: var(--fs-5);
  color: var(--silver-sand);
  max-width: 600px;
  margin-inline: auto;
}

.ticket-pricing {
  background-color: #0a1a3a;
  position: relative;
  overflow: hidden;
}





.ticket-pricing .container {
  position: relative;
  z-index: 1;
}

h1 {
  text-transform: uppercase;
  font-weight: 900;

  padding-left: 10px;
  margin-bottom: 30px;
  font-family: var(--ff-heading);
  color: var(--white);
  font-size: var(--fs-2);
  letter-spacing: 2px;
}

.row {
  overflow: hidden;
  margin-block: 20px;
}

.card {
  display: table-row;
  width: 49%;
  background-color: #fff;
  color: #989898;
  margin-bottom: 10px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  border-radius: 4px;
  position: relative;
}

.card + .card {
  margin-left: 2%;
}

.fl-left {
  float: left;
}

.fl-right {
  float: right;
}

.date {
  display: table-cell;
  width: 25%;
  position: relative;
  text-align: center;
  border-right: 2px dashed #0a1a3a;
}

.date:before,
.date:after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-color: transparent;
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 1;
  border-radius: 50%;
}

.date:after {
  top: auto;
  bottom: -15px;
}

.date time {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.date time span {
  display: block;
}

.date time span:first-child {
  color: #2b2b2b;
  font-weight: 600;
  font-size: 250%;
}

.date time span:last-child {
  text-transform: uppercase;
  font-weight: 600;
  margin-top: -10px;
}

.card-cont {
  display: table-cell;
  width: 75%;
  font-size: 85%;
  padding: 10px 10px 30px 50px;
}

.card-cont small {
  display: block;
  margin-block-end: 5px;
  font-size: var(--fs-8);
  color: var(--fiery-rose);
  font-family: var(--ff-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.card-cont h3 {
  color: #3c3c3c;
  font-size: 130%;
  font-family: var(--ff-heading);
  margin-block-end: 15px;
}

.card-cont > div {
  display: table-row;
}

.card-cont .even-date,
.card-cont .even-info {
  margin-block: 10px;
}

.card-cont .even-date i,
.card-cont .even-info i,
.card-cont .even-date time,
.card-cont .even-info p {
  display: table-cell;
  vertical-align: top;
}

.card-cont .even-date i,
.card-cont .even-info i {
  padding: 5% 5% 0 0;
  font-size: 20px;
  color: var(--fiery-rose);
}

.card-cont .even-info p {
  padding: 30px 50px 0 0;
  font-family: var(--ff-secondary);
  font-size: var(--fs-8);
  line-height: 1.6;
}

.card-cont .even-date time {
  font-family: var(--ff-secondary);
  font-size: var(--fs-8);
}

.card-cont .even-date time span {
  display: block;
}

.card-cont a {
  display: block;
  text-decoration: none;
  width: 80px;
  height: 30px;
  background-color: #d8dde0;
  color: #fff;
  text-align: center;
  line-height: 30px;
  border-radius: 2px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-family: var(--ff-primary);
  font-size: var(--fs-8);
  font-weight: var(--fw-600);
}

.row:last-child .card:first-child .card-cont a {
  background-color: #037fdd;
}

.row:last-child .card:last-child .card-cont a {
  background-color: #f8504c;
}

.ticket-info-section {
  background-color: var(--eerie-black-1);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.info-card {
  text-align: center;
  padding: 30px;
}

.info-icon {
  font-size: 48px;
  color: var(--fiery-rose);
  margin-block-end: 20px;
}

.info-card h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-4);
  color: var(--white);
  margin-block-end: 15px;
  letter-spacing: 1.5px;
}

.info-card p {
  font-family: var(--ff-secondary);
  font-size: var(--fs-7);
  color: var(--silver-sand);
  line-height: 1.8;
}

.ticket-info {
  font-family: var(--ff-secondary);
  font-size: var(--fs-8);
  color: var(--silver-sand);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.btn-large {
  padding: 18px 45px;
  font-size: var(--fs-5);
}

.play-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-7);
  font-family: var(--ff-primary);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.play-btn .icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: var(--radius-circle);
  transition: var(--transition);
}

.play-btn .span {
  color: var(--silver-metallic);
  transition: var(--transition);
}

.play-btn:is(:hover, :focus) .span {
  color: var(--white);
}

.play-btn:is(:hover, :focus) .icon {
  background-color: var(--white);
  color: var(--ultramarine-blue);
}

/*-----------------------------------*\
  #FESTIVAL HISTORY
\*-----------------------------------*/

.festival-history {
  background: linear-gradient(135deg, #0a1a3a 0%, #0d2347 40%, #081830 100%);
  position: relative;
  overflow: hidden;
}

.festival-history::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 30% 40%,
      rgba(138, 43, 226, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(0, 212, 255, 0.06) 0%,
      transparent 50%
    );
  z-index: 0;
}

.festival-history::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.02) 50px,
      rgba(255, 255, 255, 0.02) 51px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.02) 50px,
      rgba(255, 255, 255, 0.02) 51px
    );
  z-index: 0;
  pointer-events: none;
}

.festival-history .container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}

.history-content {
  margin-block: 40px 60px;
}

.history-content h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-3);
  font-weight: 400;
  color: var(--white);
  margin-block-end: 30px;
  text-align: center;
  letter-spacing: 2px;
}

.history-content .section-text {
  font-family: var(--ff-secondary);
  color: var(--silver-sand);
  line-height: 1.8;
  margin-block-end: 25px;
  font-size: var(--fs-6);
}

.event-details-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: var(--radius-8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-block-start: 50px;
}

.detail-item {
  flex: 1;
  min-width: 250px;
}

.detail-date {
  font-family: var(--ff-heading);
  font-size: var(--fs-3);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 3px;
  margin-block-end: 10px;
  text-transform: uppercase;
}

.detail-location {
  font-family: var(--ff-primary);
  font-size: var(--fs-7);
  color: var(--silver-sand);
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media screen and (max-width: 860px) {
  .hero {
    min-height: auto;
    padding-block: 120px 72px;
  }

  .hero-content {
    max-width: 34rem;
  }

  .card {
    display: block;
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }

  .card + .card {
    margin-left: 0;
  }

  .card-cont .even-date,
  .card-cont .even-info {
    font-size: 75%;
  }

  .hero-subtitle {
    font-size: var(--fs-7);
    letter-spacing: 2px;
    margin-block-end: 10px;
  }

  .hero-title {
    font-size: clamp(3.4rem, 12vw, 5.2rem);
    margin-block: 8px 16px;
    letter-spacing: 2px;
  }

  .hero-location {
    font-size: var(--fs-6);
    margin-block-end: 28px;
  }

  .lineup-preview {
    padding: 25px;
  }

  .lineup-title {
    font-size: var(--fs-5);
  }

  .lineup-artists {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .event-details-box {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .detail-item {
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .btn-large {
    padding: 15px 35px;
  }

  .hero-buttons {
    gap: 14px;
  }

  .ticket-info {
    letter-spacing: 1px;
  }
}

/*-----------------------------------*\
  #PROMO
\*-----------------------------------*/

.promo .section-text {
  padding-inline: 8px;
  margin-block-end: 50px;
}

.promo-card {
  border-radius: var(--radius-5);
  padding: 40px 25px;
}

.promo-card .card-icon {
  background-color: var(--onyx-1);
  color: var(--white);
  width: max-content;
  font-size: 24px;
  padding: 20px;
  border-radius: var(--radius-circle);
  margin-block-end: 20px;
}

.promo-card .card-icon ion-icon {
  --ionicon-stroke-width: 50px;
}

.promo-card .card-text {
  color: var(--alice-blue);
  margin-block: 20px 16px;
}

/*-----------------------------------*\
  #STATS
\*-----------------------------------*/

.stats .container {
  display: grid;
  gap: 50px;
}

.stats .section-text:last-of-type {
  margin-block: 16px;
}

.stats-list {
  display: grid;
  gap: 15px;
}

.stats-card {
  padding: 17px;
  border-radius: var(--radius-5);
}

.stats-card .card-title {
  font-size: var(--fs-3);
  margin-block-end: 10px;
}

.stats-card .card-text {
  font-size: var(--fs-7);
  color: var(--alice-blue);
}

/*-----------------------------------*\
  #MARKET
\*-----------------------------------*/

.market .section-text {
  margin-block-end: 24px;
}

.table-container {
  overflow-x: auto;
  padding-block-end: 15px;
}

.table-container::-webkit-scrollbar {
  height: 10px;
}

.table-container::-webkit-scrollbar-track {
  background-color: var(--eerie-black-2);
}

.table-container::-webkit-scrollbar-thumb {
  background-color: var(--davys-gray);
}

.table-container::-webkit-scrollbar-button {
  width: 15px;
}

.market-table {
  background-color: var(--eerie-black-2);
  border-collapse: collapse;
}

.table-head {
  background-color: var(--onyx-2);
}

.table-heading {
  color: var(--white);
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
  text-align: left;
  padding: 16px 30px;
}

.table-body .table-row:not(:last-child) {
  border-block-end: 1px dashed var(--davys-gray);
}

.table-data {
  padding: 12px 30px;
}

.table-data.wrapper {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.table-data.wrapper img {
  width: 30px;
}

.table-data .coin-name {
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  margin-block-end: 5px;
}

.table-data .span {
  font-size: var(--fs-8);
}

.table-data:not(.wrapper) {
  vertical-align: top;
  font-size: var(--fs-7);
}

.table-data .wrapper-flex {
  display: flex;
  align-items: center;
  gap: 5px;
}

.table-data .icon {
  font-size: 12px;
}

.table-data .icon.red {
  color: var(--fiery-rose);
}

.table-data .icon.green {
  color: var(--ocean-green);
}

/*-----------------------------------*\
  #CTA
\*-----------------------------------*/

.cta .btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-inline: auto;
  margin-block-start: 30px;
}

/*-----------------------------------*\
  #INSTRUCTION
\*-----------------------------------*/

.instruction .section-text {
  margin-block-end: 50px;
}

.instruction-card {
  padding: 30px;
  border-radius: var(--radius-8);
}

.instruction-card .card-icon {
  background-color: var(--smokey-black);
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-circle);
  margin-block-end: 15px;
}

/*-----------------------------------*\
  #APP
\*-----------------------------------*/

.app-card {
  padding: 25px;
  border-radius: var(--radius-16);
  display: grid;
  gap: 50px;
}

.app-card .section-text {
  margin-block-end: 25px;
}

.app-card .btn-primary {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--ultramarine-blue);
  --padding-y: 10px;
}

.app-card .btn-primary ion-icon {
  font-size: 25px;
}

.app-card :is(.btn-text, .btn-title) {
  font-family: var(--ff-open-sans);
}

.app-card .btn-text {
  font-size: var(--fs-9);
  font-weight: var(--fw-400);
  line-height: 1;
}

.app-card .btn-primary:is(:hover, :focus) {
  background-color: transparent;
}

.app-card .btn-title {
  font-weight: var(--fw-600);
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  text-align: center;
  color: var(--alice-blue);
}

.footer .logo {
  max-width: max-content;
  margin-inline: auto;
  margin-block-end: 30px;
}

.footer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 30px;
  margin-block: 54px 50px;
}

.footer-link {
  color: var(--white);
  font-family: var(--ff-primary);
  font-weight: var(--fw-600);
  padding-block-end: 4px;
  border-block-end: 2px solid transparent;
  transition: var(--transition);
}

.footer-link:is(:hover, :focus) {
  border-color: var(--ultramarine-blue);
}

.social-list-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-3);
  font-weight: 400;
  margin-block-end: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.social-list {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-link {
  background-color: var(--eerie-black-1);
  color: var(--white);
  font-size: 18px;
  padding: 16px;
  border-radius: var(--radius-circle);
  transition: var(--transition);
}

.social-link:is(:hover, :focus) {
  background-color: var(--ultramarine-blue);
}

.footer-bottom {
  border-block-start: 1px solid var(--eerie-black-2);
  padding-block: 16px;
}

.copyright {
  line-height: 1.3;
  margin-block-end: 16px;
}

.footer-bottom-list {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/*-----------------------------------*\
  #GALLERY
\*-----------------------------------*/

.gallery-section {
  background: linear-gradient(135deg, #0a1a3a 0%, #0d2347 40%, #081830 100%);
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 30% 40%,
      rgba(138, 43, 226, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(0, 212, 255, 0.06) 0%,
      transparent 50%
    );
  z-index: 0;
}

.gallery-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.02) 50px,
      rgba(255, 255, 255, 0.02) 51px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.02) 50px,
      rgba(255, 255, 255, 0.02) 51px
    );
  z-index: 0;
  pointer-events: none;
}

.gallery-section .container {
  position: relative;
  z-index: 1;
}

.gallery-section .section-title {
  font-family: var(--ff-primary);
  margin-block-end: 20px;
  letter-spacing: 2px;
  font-weight: var(--fw-700);
  text-transform: uppercase;
}

.gallery-section .section-text {
  font-family: var(--ff-secondary);
  color: var(--silver-sand);
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-block-start: 40px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-8);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  background-color: var(--eerie-black-2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    transparent 100%
  );
  padding: 20px;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-title {
  color: var(--white);
  font-family: var(--ff-primary);
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: translateY(20px);
  transition: transform var(--transition);
}

.gallery-item:hover,
.gallery-item:focus {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(8, 43, 102, 0.4);
}

.gallery-item:hover img,
.gallery-item:focus img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-title,
.gallery-item:focus .gallery-title {
  transform: translateY(0);
}

/* Lightbox styles for image viewing */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-8);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 40px;
  cursor: pointer;
  padding: 10px;
  transition: color var(--transition);
  z-index: 1001;
}

.lightbox-close:hover {
  color: var(--fiery-rose);
}

/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }

  /**
   * HERO
   */

  .hero-title {
    font-size: calc(3.5rem + 3vw);
  }

  .lineup-artists {
    grid-template-columns: repeat(2, 1fr);
  }

  /**
   * TICKETING
   */

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /**
   * APP
   */

  .app-card .card-banner {
    max-width: max-content;
    margin-inline: auto;
  }
}

/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 720px;
  }

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

  /**
   * HERO
   */

  .hero-subtitle {
    font-size: var(--fs-5);
  }

  .lineup-preview {
    padding: 50px;
  }

  /**
   * HEADER
   */

  .header .btn-group {
    display: flex;
    margin-inline: auto 30px;
  }

  .header .btn {
    padding: 10px 25px;
    font-size: var(--fs-7);
  }

  /**
   * STATS
   */

  .stats-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  /**
   * APP
   */

  .app-card {
    padding: 50px;
  }

  /**
   * FOOTER
   */

  .footer-bottom {
    padding-block: 26px;
  }

  .footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .copyright {
    margin-block-end: 0;
  }
}

/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 960px;
  }

  .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }

  :is(.section-title, .section-text).text-center {
    margin-inline: auto;
  }

  .section-text.text-center {
    max-width: 60ch;
  }

  .section-title.text-center {
    max-width: 30ch;
  }

  /**
   * HERO
   */

  .hero-title {
    font-size: calc(4rem + 2vw);
  }

  .lineup-preview {
    padding: 60px;
  }

  .event-details-box {
    padding: 50px;
  }

  /**
   * STATS
   */

  .stats .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  /**
   * INSTRUCTION
   */

  .instruction .grid-list {
    grid-template-columns: repeat(4, 1fr);
  }

  /**
   * APP
   */

  .app-card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  /**
   * FOOTER
   */

  .footer-top .container {
    max-width: 580px;
  }

  .footer-list {
    column-gap: 60px;
  }
}

/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1140px;
  }

  /**
   * HEADER
   */

  .nav-open-btn,
  .navbar-top {
    display: none;
  }

  .navbar {
    all: unset;
    display: block;
    margin-inline: auto;
  }

  .navbar-list {
    display: flex;
  }

  .navbar-link {
    font-weight: var(--fw-600);
  }

  .header .btn-group {
    margin-inline: 0;
  }

  /**
   * APP
   */

  .app-card {
    padding-inline: 80px;
  }

  /**
   * GALLERY
   */

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
  }
}
