@font-face {
  font-family: "SilkScreen";
  src: url("../fonts/Silkscreen-Regular.ttf");
}
@font-face {
  font-family: "SilkScreenBold";
  src: url("../fonts/Silkscreen-Bold.ttf");
}
@font-face {
  font-family: "ClashDisplay";
  src: url("../fonts/ClashDisplay-Regular.otf");
}
@font-face {
  font-family: "ClashDisplaySemiBold";
  src: url("../fonts/ClashDisplay-Semibold.otf");
}

/* @media (min-width: 1000px) {
  body {
    max-width: 40vw;
    margin: 0 auto; 
    transform: scale(0.8);
    transform-origin: center;
  }
} */
.container{
  margin: 0;
  min-width: 100vw;
  padding: 0;
}

@media (min-width: 1000px) {
  body, html {
    height: 100%; /* Ensure full height */
  }

  body {
    overflow-x: auto; /* Enable horizontal scrolling if needed */
  }

  .container {
    max-width: 40vw; /* Adjust this value to match a typical mobile screen width */
    margin: 0 auto; /* Center the content horizontally */
    transform: scale(0.8); /* Adjust the scaling factor as needed */
    transform-origin: top center; /* Keep content anchored at the top */
    min-width: 0;
    padding: 0;
  }

  /* Add a class to elements with overflow-x to allow horizontal scrolling */
  .overflow-x-scroll {
    overflow-x: auto;
  }
}

.navBar{
    background-color: #e8e7e7;
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    width: 100%;
    height: 120px;
}
.navbarelements{
  text-decoration: none;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "ClashDisplay";  
  margin-top:1%;
}

.right{
  margin-right: 3%;  
}

.left{
  margin-left: 3%;  
}

.name{
  font-family: "SilkScreen";
  font-size: 60px;
}

.navitem a{
  text-decoration: none;
  color: black;  
}

.navitem a:active{
  background-color: black; 
  color: white;
  border-radius: 5px;
}

.carousel-caption{
  bottom: 10rem;
  z-index: 10;
  color: black;
  opacity: 0;
  transition: all 2s ease-in-out;  
}
.active{
  opacity: 1;
  transition: all 2s ease-in-out;
}
.heroImg{
  height: 80vh;
  width: 100%;
  object-fit: cover;
  position: relative;
  object-position: 30% 50%;
}

.discover{
  text-decoration: None;
  color: black;
}

.discover:active{
  background-color: black; 
  color: white;
  border-radius: 5px;
}

.carousel-caption h4{
  font-size: 40px;
  color: white;
  letter-spacing: 5px;
}
.carousel-caption h5{
  font-size: 50px;
  margin-bottom: 50px;
  color: white;
  letter-spacing: 5px;

}
.carousel-caption a{
  box-sizing: border-box;
  font-size: 50px;
  padding: 20px 40px;
  text-decoration: none;
  background-color: white;
  font-family: "ClashDisplay";
  letter-spacing: 7px;
}
.carousel-inner{
  position: relative;
}
.sneakPeak{
  height: auto;
  position: relative;
}
.sneakPeak h1{
  text-align: center;
  padding-top: 70px;
  padding-bottom: 50px;
  font-family: "ClashDisplaySemiBold";
  font-size: 50px
}
.sneakPeak .swiper-pagination-bullet-active{
  content: "hello";
}
.mySwiper{
  height: auto;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: black;
}

.swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.5);
}


.card{
  max-width: 50vw;
  font-size: 30px;
  border: transparent;
  /* padding-bottom: 10px; */
  /* margin-bottom: 0; */
  position: relative;
  background-color: #e8e7e7;
}

.card:active{
  background-color: black; 
  color: white;
}

.card:active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(128, 128, 128, 0.7); /* Use rgba for a semi-transparent black overlay */
  z-index: 1;
}

.card .bottomLine{
  margin-top: -5%;
  margin-bottom: 2%;
}

.card a::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 100;
}
.card img{
  width: 100%;
  object-fit: cover;
}
.swiper-pagination{
  position: absolute;
}

:root {
  --marquee-width: 100%;
  --marquee-height: 3vh;
  /* --marquee-elements: 12; */ /* defined with JavaScript */
  --marquee-elements-displayed: 2;
  --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
  --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.marquee {
  margin-top: 5vh;
  width: var(--marquee-width);
  height: var(--marquee-height);
  background-color: #111;
  color: #eee;
  overflow: hidden;
}
/* .marquee:before, .marquee:after {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  content: "";
  z-index: 1;
} */
.marquee-content {
  list-style: none;
  height: 100%;
  display: flex;
  animation: scrolling var(--marquee-animation-duration) linear infinite;
}
.marquee-content li{
  letter-spacing: 5px;
  margin-right: 75px;
}
/* .marquee-content:hover {
  animation-play-state: paused;
} */
@keyframes scrolling {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
}
.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-align: center; */
  flex-shrink: 0;
  width: var(--marquee-element-width);
  max-height: 100%;
  font-size: calc(var(--marquee-height)*3/4); /* 5rem; */
  white-space: nowrap;
}

/* @media (max-width: 600px) {
  html { font-size: 12px; }
  :root {
    --marquee-width: 100vw;
    --marquee-height: 16vh;
    --marquee-elements-displayed: 5;
  }
  .marquee:before, .marquee:after { width: 5rem; }
} */

.seal {
  margin-top: 5vh;
  /* height: 50vh; */
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.seal img{
  height: 50vh;
  width: 33vw;
  object-fit: cover;
}
.seal h1{
  font-size: 55px;
  font-family: "ClashDisplaySemiBold";
  text-wrap: nowrap;
  width: 33vw;
  text-align: center;
}
.seal p{
  font-size: 35px;
  width: 33vw;
  text-align: center;  
}

@media (max-width: 1000px) {
  .seal {
    flex-direction: column;
    justify-content: space-between;
    height: 32rem;
  }
  .seal img{
    height: 30rem;
    width: 50vw;
    margin: -50px;
   object-fit: cover;
  }
  .seal p{
    width: 70vw;
  }
  .mySwiper .swiper-wrapper .swiper-slide-active img {
    animation: onActive 0.5s forwards;
    animation-duration: 0.5s;
  }
}  

  /* @keyframes onActive {
    from {
      height: var(--img-height);
    }
    to {
      height: calc(var(--img-height) + 50px);
    }
  }
   */
.carousel2{
  margin-top: 6vh;
  background-color: #d9dbdd;
  padding: 50px 0px;
}
.carousel2 .swiper-slide{
  display: flex;
  justify-content: center;
}

.carousel2 .swiper-button-next{
  bottom: 0;
}
.swiper2part2 p{
  font-size: 30px;
}
.swiper2part2 .swiper-slide{
  justify-content: center; 
}
.swiper2part2{
  --swiper-navigation-size: 22px;
  --swiper-navigation-top-offset: 40%;
  --swiper-navigation-sides-offset: 25%;  
  --swiper-navigation-color: black;
}

.tshirt-container {
  display: flex;
  justify-content: center;
  align-items: center; /* This will ensure vertical centering */
  gap: 5%; /* Adjust the gap to your preference */
}

.tshirt-image {
  flex: none; /* Do not grow or shrink */
  display: flex; /* Makes the tshirt-image a flex container too */
  justify-content: center; /* Centers the child img horizontally */
  align-items: center; /* Centers the child img vertically */
}

.tshirt-image.front {
  width: 60%; /* Adjust if needed to reflect the size in your original image */
}

.tshirt-image.folded {
  margin-top: 200px;
  width: 30%; /* Adjust if needed to reflect the size in your original image */
}

.tshirt-image img {
  width: 100%;
  height: auto;
  display: block; /* Removes bottom space under the image */
}

/* Media query for responsiveness */
@media (max-width: 768px) {
  .tshirt-container {
      flex-direction: column;
  }

  .tshirt-image.front, .tshirt-image.folded {
      width: auto; /* On smaller screens, let the image take the necessary width */
      max-width: 100%; /* Ensure images don't overflow their container */
  }
}

.timerContainer{
  margin-top: 0vh;
  text-align: center;  
  color: red;
  padding: 40px;
  margin-bottom: 40px;
}
.timer{
  display: flex;
  justify-content: space-around;
}
.timer p{
  font-size: 30px;
  color: black;
  margin-bottom:100px ;
}
.timerContainer h1{
  font-size: 70px;
  font-family: "ClashDisplaySemiBold";
  text-wrap: nowrap;
  text-align: center;
  color: black;
  margin: 30px 0 0 0;
}
.timerContainer a{
  box-sizing: border-box;
  font-size: 30px;
  padding: 30px 40px;
  text-decoration: none;
  background-color: black;
  font-family: "ClashDisplay";
  letter-spacing: 5px;
}

.request-access{
  color: white; 
  text-decoration: None;
}

.request-access:active{
  border: 2px solid black ;
  background-color: white; 
  color: black;
}

.review{
  margin-top: 100px;
  width: 100%;
  height: auto;
}
.review .swiper-slide{
  height: 100%;
}
.review h1{
  font-size: 70px;
  font-family: "ClashDisplaySemiBold";
  text-wrap: nowrap;
  text-align: center;
  color: black;
  margin: 30px 0;
}
.rating{
  font-size: 30px;
  margin:auto auto 40px 20px;

}
.add-review{
  /* box-sizing: border-box;
  font-size: 30px;
  padding: 30px 40px;
  text-decoration: none;
  background-color: black;
  font-family: "ClashDisplay";
  letter-spacing: 5px; */
  box-sizing: border-box;
  font-size: 30px;
  padding: 10px 20px;
  text-decoration: none;
  background-color: black;
  font-family: "ClashDisplay";
  letter-spacing: 2px;
  text-wrap: nowrap;
  margin: auto 0 auto auto;
  color: white; 
  text-decoration: None;
  margin: 0;
  position: absolute;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%,0%);
}
.review-card{
  width: 98%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 10px;
  border-style: solid;
  margin: 5px 5px;
  border-radius: 20px;
  border:1px solid #000000;
  height: 100%;
}
.review-card img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
}
.fa-star,.fa-star-half{
  color: #f6b825;
}
.review-card h1{
  font-size: 50px;
  font-family: "ClashDisplaySemiBold";
  text-wrap: nowrap;
}
.review-card .stars{
  margin-bottom: 30px;
}
.review-card p{
  text-align: center;
  font-size: 30px;
}
.review{
  padding-bottom: 20px;
  margin-bottom: 100px;
}
.review .swiper {
  padding-bottom: 20px;
}

@media(min-width : 1000px){
  .review h1{
    font-size: 50px;
  }
  .review-card h1{
    font-size: 30px;
  }
  .review-card p{
    font-size: 20px;
  }
}



footer h1{
  font-size: 70px;
  font-family: "ClashDisplaySemiBold";
  text-wrap: wrap;
  text-align: center;
  margin:20px 50px
}
.buttonStyle{
  box-sizing: border-box;
  font-size: 25px;
  padding: 20px 40px;
  text-decoration: none;
  background-color: white;
  color: #111;
  font-family: "ClashDisplay";
  margin:20px 50px;
  letter-spacing: 5px;
}

.buttonStyle:active{
  border: 2px solid white;
  background-color: black; 
  color: white;
}

footer .message{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: centered;
  width: 100%;
  height: auto;
  background-color: black;
  color: white;
  padding: 20px;
  margin-bottom: 200px;
}

body{
  font-size: large;
  font-family: "ClashDisplay";
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer p{
  font-size: 35px;
  text-align: center;
  margin:20px 50px
}

footer {
  background-color: black;
  color: white;
  text-align: center;
  padding: 30px;
  box-sizing: border-box;
  margin-top: auto;
}

.links {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  font-size: 25px;
}

.links a {
  text-decoration: none;
  color: white;
}

.links a:active{
  background-color: white; 
  color: black;
  border-radius: 5px;
}

.column {
  flex: 1;
  margin: 0 15px;
  text-align: left;
}

.column-last-child {
  margin-left: 10px;
  text-align: left;
}

.links h3 {
  font-size: 25px;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

ul {
  padding: 0;
  list-style: none;
}

ul li {
  margin: 5px 0;
}

.cr {
  font-size: 20px;
  margin-top: 50px;
}

.original-price{
  text-decoration: line-through;
  color:gray;
  margin-left: 10px;
}

.discount{
  margin-top: -6%; 
  color: #d54c12;
}