* {
  box-sizing: border-box;
  color: white;
}

body {
  font-family: "Space Grotesk", sans-serif !important;
}

/* global styles */
ul li {
  list-style-type: none;
}

ul a {
  text-decoration: none;
  color: inherit;
}

a {
  text-decoration: none !important;
}

.card {
  border: 1px solid rgb(31, 30, 30) !important;
}

section,
footer {
  background: #131313 !important;
  padding: 30px 40px 15px 15px;
}

.container .row .card {
  background: #303030 !important;
}
/* banner */
.banner-image {
  min-height: 100vh;
  width: 100%;
  background-image: url(../images/banner-homepage.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 768px) {
  .banner-image {
    min-height: 0;
  }
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px !important;
}

nav img {
  width: 55px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.nav-links ul li {
  display: inline-block;
  padding: 8px;
  position: relative;
  color: white;
  margin-right: 13px;
}

nav .bi {
  display: none;
}

.nav-link {
  position: relative; /* Ensure positioning context */
}

.icon {
  display: none; /* Initially hide the icons */
  position: absolute;
  top: 50%;
  right: 0; /* Position the icon on the right side */
  transform: translateY(-50%);
}

.nav-link.active + .icon,
.nav-link:hover + .icon {
  display: inline-block; /* Show the icon when the link is active or hovered */
}

@media (max-width: 1000px) {
  nav .container {
    padding: 20px !important;
  }

  .nav-links {
    position: fixed;
    background: #ed1c24;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
    transition: 0.6s;
    margin: 0;
    display: block;
  }

  nav .bi {
    display: block;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
  }

  nav ul {
    padding-top: 30px;
  }
}

.nav-links ul li a {
  color: white;
}

/* text container */
.text-container {
  display: flex;
  align-self: center;
  justify-content: center;
  flex-direction: column;
  min-height: 65vh;
  width: 60%;
}

/* media query */
@media (max-width: 1000px) {
  .text-container {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .text-container {
    width: 100%;
    min-height: 40vh;
  }

  .text-container h1 {
    font-size: 24px;
  }

  .text-container p {
    font-size: 15px;
  }
}

.custom-card {
  background: #ed1c24;
  width: fit-content;
  padding: 7px 18px;
  transition: 0.5s;
  border-radius: 5px;
  /* font-weight: 600; */
  font-size: 18px;
}

.custom-card .bi-arrow-up-right {
  margin-left: 80px;
}

.custom-card:hover {
  background-color: #a72428;
}

/* section1 */
.section1 {
  background: #1e1e1e;
  padding: 30px 40px 15px 15px;
}

.section1 .col-lg-3 {
  display: flex;
  align-items: center;
}

.circle {
  width: 70px;
  height: 70px;
  background: #d9d9d9;
  border-radius: 50%;
}

span {
  color: #ed1c24;
}

.section1 p {
  margin: 0;
}

.circle2 {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #464646;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle2 .bi {
  color: #ed1c24;
}

/* section2 */
.section2 {
  background: #1e1e1e;
  padding: 30px 40px 15px 15px;
}

.section2 h5,
.section3 h5 {
  color: #ed1c24;
}

.section2 p {
  margin: 0;
}

.card-body {
  background: #131313;
}

#card-body1 {
  position: relative;
}

#card-body1::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #e12a30;
  color: white;
  padding: 5px;
  border-radius: 5px;
  white-space: pre-line;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  min-width: 170px;
  max-width: 180px;
}

#card-body1:hover::after {
  opacity: 1;
}

#card-body2 {
  position: relative;
}

#card-body2::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #e12a30;
  color: white;
  padding: 5px;
  border-radius: 5px;
  white-space: pre-line;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  min-width: 200px;
  max-width: 180px;
}

#card-body2:hover::after {
  opacity: 1;
}

#card-body3 {
  position: relative;
}

#card-body3::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #e12a30;
  color: white;
  padding: 5px;
  border-radius: 5px;
  white-space: pre-line;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  min-width: 190px;
  max-width: 180px;
}

#card-body3:hover::after {
  opacity: 1;
}

/* section3 */
.section3 {
  background: #1e1e1e;
  padding: 30px 40px 15px 15px;
}

/* banner image 2 */
.banner-image2 {
  min-height: 70vh;
  width: 100%;
  background-image: url(../images/second-banner.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-image2 .container {
  position: relative;
}

.banner-image2 .custom-card {
  position: absolute;
  top: 220px;
}

@media (max-width: 1000px) {
  .banner-image2 {
    min-height: 32vh;
  }
  .banner-image2 .custom-card {
    position: absolute;
    top: 80px;
  }
}

/* section4 */
.section4 h6 {
  font-size: 60px;
}

.date-container {
  position: relative;
}

.section4 h6 span {
  font-size: 20px;
  position: absolute;
  top: 18px;
}

.date-container span {
  color: white;
}

.section4 p {
  margin: 0;
}

.section4 .bi {
  color: #ed1c24;
  font-size: 12px;
}

/* banner image 3 */
.banner-image3 {
  min-height: 70vh;
  width: 100%;
  background-image: url(../images/banner3.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-image3 .container {
  position: relative;
}

.banner-image3 .custom-card {
  position: absolute;
  top: 220px;
  right: 0;
}

@media (max-width: 1000px) {
  .banner-image2 {
    min-height: 32vh;
  }
  .banner-image3 .custom-card {
    position: absolute;
    top: 80px;
  }
}

/* footer */
footer .bi-arrow-up-right {
  color: #ed1c24;
  font-size: 14px;
}

footer p {
  margin: 3px;
}

/* copyright */

.copyright {
  background: #ed1c24;
  padding: 10px;
}

/* LINKED */
.linked-nav {
  position: sticky;
  z-index: 999;
  top: 0;
  left: 0;
  background: #131313;
  border-bottom: 1px solid rgb(84, 83, 83);
}

.linked-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px !important;
}

.discography {
  padding-top: 80px;
}

/* events */
.video {
  width: 100% !important;
}

@media (max-width: 900px) {
  .video h3 {
    font-size: 22px;
  }
  .video iframe {
    height: 350px;
  }
}

@media (max-width: 450px) {
  .video iframe {
    height: 250px;
    margin-top: 0;
  }
  .video-cont h3 {
    font-size: 20px;
    line-height: 28px;
  }
}

/* shop */
.shop-container {
  margin: 10px 0px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.shop-container select {
  background-color: #1e1e1e;
  padding: 10px 20px;
  border-radius: 5px;
  margin-right: 10px;
}

.image-container {
  display: flex;
  flex-wrap: wrap !important;
  margin-top: 20px;
}

.image-item {
  width: calc(33.33% - 20px);
  margin: 10px;
  padding: 10px;
  border: 1px solid #534e4e;
  box-sizing: border-box;
  background: #303030;
  /* background: #131313; */
}

.image-item img {
  width: 100%;
  height: auto;
  display: block;
}

.all-shop {
  position: relative;
}

.select-category {
  position: absolute;
  top: 65px;
  right: 0px;
}

.category {
  cursor: pointer;
  margin-bottom: 10px;
  transition: transform 0.2s ease-in-out;
}

.category:hover {
  transform: scale(1.1);
}

@media (max-width: 750px) {
  .select-category {
    left: 20px;
    top: -280px;
  }

  #selectCategory {
    margin-bottom: 280px;
  }

  .shop-container select {
    margin-right: 0;
  }
}

.custom-title {
  color: #ed1c24 !important; /* Set title color */
}

.pagination {
  margin-top: 20px;
}

.pagination button {
  padding: 5px 10px;
  margin: 0 10px;
  cursor: pointer;
  background-color: #555651;
  font-weight: bold;
  border: none;
  /* border-bottom: 3px solid #ed1c24; */
}

.active-pagination {
  border-bottom: 3px solid red !important;
}

@media (max-width: 700px) {
  .shop-container {
    flex-direction: column;
  }
}

.parent-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  background: #131313;
  padding-top: 40px;
}
.wrapper {
  width: 100%;
  position: relative;
}
.wrapper i {
  top: 50%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  text-align: center;
  line-height: 50px;
  background: #464646;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}
.wrapper i:active {
  transform: translateY(-50%) scale(0.85);
}
.wrapper i:first-child {
  left: -22px;
}
.wrapper i:last-child {
  right: 10px;
}
.wrapper .carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.carousel.no-transition {
  scroll-behavior: auto;
}
.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.carousel.dragging .card {
  cursor: grab;
  user-select: none;
}
.carousel :where(.card, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel .card {
  scroll-snap-align: start;
  height: 330px;
  list-style: none;
  cursor: pointer;
  background: #303030;
  flex-direction: column;
  border-radius: 8px;
}

.carousel .card h2 {
  font-weight: 500;
  font-size: 19px;
  margin: 30px 0 5px;
  color: #ed1c24;
}
.carousel .card span {
  color: white;
}

@media screen and (max-width: 900px) {
  .wrapper .carousel {
    grid-auto-columns: calc((100% / 2) - 9px);
  }
}

@media screen and (max-width: 600px) {
  .wrapper .carousel {
    grid-auto-columns: 100%;
  }
}
