@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #000000;
  color: white;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  padding-left: 22px;
  padding-right: 22px;
  font-style: normal;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 1px grey;
  background-color: white;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #00adee;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #ee579e;
}

.bg-white {
  background-color: #ffffff;
}

.bg-black {
  background-color: #000000;
}

.bg-gray {
  background-color: #808184;
}

.bg-yellow {
  background-color: #fbd502;
}

.bg-orange {
  background-color: #f16522;
}

.bg-red {
  background-color: #ec1e24;
}

.bg-pink {
  background-color: #ee579e;
}

.bg-purple {
  background-color: #8c52d0;
}

.bg-blue-slate {
  background-color: #00adee;
}

.bg-tosca {
  background-color: #5abc7c;
}

.text-white {
  color: #ffffff;
}

.text-black {
  color: #000000;
}

.text-gray {
  color: #808184;
}

.text-yellow {
  color: #fbd502;
}

.text-orange {
  color: #f16522;
}

.text-red {
  color: #ec1e24;
}

.text-pink {
  color: #ee579e;
}

.text-purple {
  color: #8c52d0;
}

.text-blue-slate {
  color: #00adee;
}

.text-tosca {
  color: #5abc7c;
}

.btn {
  font-size: 12px;
  letter-spacing: 2px;
  border-radius: 0;
}

.navbar {
  height: 70px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.3); /* Adjust transparency */
}

.tivent-header {
  min-height: 60vh;
  padding-top: 50px;
  padding-bottom: 50px;
  background-image: url("../images/desktop-banner.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.event-about {
  padding-top: 30px;
  padding-bottom: 100px;
}

.event-content {
  display: flex;
  gap: 80px;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  border-radius: 10px;
}

.event-item-1 {
  padding: 10px;
  letter-spacing: 2px;
  font-size: 13px;
}

.event-item-1 span {
  display: block;
  font-size: 14px;
  opacity: 0.5;
}

.event-item-2 {
  padding: 10px;
  letter-spacing: 2px;
  font-size: 13px;
}

.event-item-2 span {
  display: block;
  font-size: 14px;
  opacity: 0.5;
}

.vertical-line {
  width: 2px;
  min-height: 80px;
  background-color: white;
  opacity: 0.8;
}

.event-schedule {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("your-image-url.jpg") no-repeat center center/cover;
  height: 300px;
  color: white;
  font-weight: bold;
  position: relative;
}

.card {
  border-top: #00adee 5px solid;
  border-radius: 0;
  padding-top: 50px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  margin-bottom: 25px;
}

.login-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: black;
  color: white;
}

.section-description {
  padding-right: 100px;
}

.form-control {
  border-radius: 0;
}

.event-package {
  min-height: 300px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.divider {
  height: 2px;
  width: 100%;
  background-color: white;
  opacity: 0.3;
  margin-top: 5px;
  margin-bottom: 20px;
}

.section-title {
  gap: 20px;
}
.section-title hr {
  width: 50px;
  border-width: 10px;
  color: #fbd502;
  opacity: 1;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 10px 0;
  display: flex;
  min-height: 200px;
}

.marquee-content {
  display: flex;
  gap: 50px; /* Space between items */
  animation: marquee 50s linear infinite;
  min-width: 200%; /* Makes sure there’s always content to loop */
  display: flex;
  align-items: center;
}

.artist-item {
  font-size: 1.5rem;
  font-weight: bold;
  color: yellow;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  } /* Moves by half to loop */
}
.button-custom {
  background-image: url("../images/Button.svg");
  padding: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 250px;
}

.btn-ticket {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2c2c86;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
  -webkit-clip-path: polygon(0% 10%, 100% 0%, 100% 90%, 0% 100%);
          clip-path: polygon(0% 10%, 100% 0%, 100% 90%, 0% 100%);
}

.btn-ticket:hover {
  transform: translateY(-10px);
}

.line-up {
  min-height: 300px;
  padding-top: 100px;
}

.countdown-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  margin-bottom: 200px;
  margin-top: 200px;
}

.countdown-box {
  display: flex;
  border: 2px solid white;
  max-width: 600px;
  width: 100%;
}

.countdown-label {
  background-color: white;
  color: black;
  padding: 20px;
  font-weight: bold;
  text-align: center;
  flex: 1;
}

.countdown-timer {
  background-color: black;
  color: white;
  padding: 20px;
  text-align: center;
  flex: 2;
}

.time {
  font-size: 2rem;
  font-weight: bold;
}

.unit {
  font-size: 0.8rem;
}

.image-container img {
  width: 300px; /* Sesuaikan ukuran gambar */
  height: auto;
}

lineup-container {
  padding: 40px;
}

.lineup-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.lineup-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
}

.lineup-header a {
  color: grey;
  text-decoration: none;
  font-size: 0.9rem;
}

.lineup-header a:hover {
  text-decoration: underline;
}

.lineup-card {
  position: relative;
  overflow: hidden;
  padding-top: 20px;
}

.lineup-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.lineup-card:hover img {
  transform: scale(1.05);
}

.lineup-title {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
}

.venue-container {
  background-color: #2c2c8f;
  padding-top: 100px;
  text-align: center;
  max-width: 90%;
  margin: 40px auto;
  border: none;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
  -webkit-clip-path: polygon(0% 10%, 100% 0%, 100% 90%, 0% 100%);
          clip-path: polygon(0% 10%, 100% 0%, 100% 90%, 0% 100%);
}

.venue-title {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}

.venue-location {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.venue-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.venue-image img {
  max-width: 60%;
  height: auto;
  border-radius: 10px;
}

.title-box {
  font-weight: bold;
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 20px;
}

.box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
}

.box img {
  max-height: 80px;
  max-width: 100%;
}

image-box-powered-by .img {
  width: 200px;
}

.footer {
  background-color: black;
  color: white;
  text-align: center;
  padding: 50px 0;
}

.footer-logo img {
  max-height: 80px;
}

.social-icons a {
  color: white;
  font-size: 20px;
  margin: 0 10px;
  text-decoration: none;
}

.social-icons a:hover {
  color: gray;
}

.footer-links {
  margin-top: 30px;
}

.footer-links h6 {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-links a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 5px;
}

.footer-links a:hover {
  color: gray;
}

.social-icons a {
  color: white;
  font-size: 24px;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: white;
}

.powered-by {
  font-size: 15px;
}

@media (max-width: 700px) {
  image-box-powered-by img {
    width: 100px;
  }
  .title-box {
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
  }
  .box {
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
  }
  .box img {
    max-height: 80px;
    max-width: 100%;
  }
  .tivent-header {
    min-height: 150px;
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: url("../images/desktop-banner.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .event-content {
    display: flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 10px;
  }
  .event-item-2 {
    padding: 10px;
    letter-spacing: 2px;
    font-size: 13px;
  }
  .event-item-2 span {
    display: block;
    font-size: 14px;
    opacity: 0.5;
  }
  .vertical-line {
    width: 2px;
    min-height: 80px;
    background-color: white;
    opacity: 0.8;
  }
  .event-schedule {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("your-image-url.jpg") no-repeat center center/cover;
    height: 200px;
    color: white;
    font-weight: bold;
    position: relative;
  }
  .section-description {
    padding-right: 0;
    font-size: 13px;
    line-height: 1.5rem;
  }
  .event-about {
    padding-top: 50px;
    padding-bottom: 100px;
  }
  .countdown-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    margin-bottom: 150px;
    margin-top: 50px;
  }
  .countdown-box {
    display: flex;
    border: 2px solid white;
    max-width: 600px;
    width: 100%;
  }
  .countdown-label {
    background-color: white;
    color: black;
    padding: 25px;
    font-weight: bold;
    text-align: center;
    flex: 1;
    font-size: 10px;
  }
  .countdown-timer {
    background-color: black;
    color: white;
    padding: 20px;
    text-align: center;
    flex: 2;
  }
  .time {
    font-size: 12px;
    font-weight: bold;
  }
  .unit {
    font-size: 12px;
  }
  .image-container img {
    width: 300px; /* Sesuaikan ukuran gambar */
    height: auto;
    display: none;
  }
  lineup-container {
    padding: 40px;
  }
  .lineup-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  .lineup-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
  }
  .lineup-header a {
    color: grey;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .lineup-header a:hover {
    text-decoration: underline;
  }
  .lineup-card {
    position: relative;
    overflow: hidden;
    padding-top: 20px;
  }
  .lineup-card img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.3s ease;
  }
  .lineup-card:hover img {
    transform: scale(1.05);
  }
  .lineup-title {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 5px;
  }
  .venue-container {
    padding-top: 100px;
    text-align: center;
    max-width: 90%;
    margin: 40px auto;
    border: none;
  }
  .venue-title {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
  }
  .venue-location {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  .venue-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .venue-image img {
    max-width: 60%;
    height: auto;
    border-radius: 10px;
  }
  .footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 50px 0;
  }
  .footer-logo img {
    max-height: 80px;
  }
  .social-icons a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    text-decoration: none;
  }
  .social-icons a:hover {
    color: gray;
  }
  .footer-links {
    margin-top: 30px;
  }
  .footer-links h6 {
    font-weight: bold;
    margin-bottom: 10px;
  }
  .footer-links a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 5px;
  }
  .footer-links a:hover {
    color: gray;
  }
}/*# sourceMappingURL=style.css.map */