
.body {
  margin: 0;
  height: 100%;
  background-color: #F5F5DB;
  font-family: Arial, sans-serif;
  opacity: 0; /* Initially invisible */
  animation: introAnimation 1s ease-in forwards; /* Fade-in animation */
  }
  
  
  
  /* Reset & base */
  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }
  
  
  
  h1 {
  font-size: 2.5em;
  }
      
    
    
    /* When visible */
    .fade.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
  
  
  
  /* Copyright Section - Outside Footer */
  .copyright {
    text-align: center;
    background-color: #F5F5DB;
    padding: 10px 0;
    color: white;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }
  
  .copyright p {
    font-family: Konkhmer Sleokchher;
    color: #1E1E1E;
    font-size: 0.60em;
    margin: 0;
  }
  
  #nav-icon {
    transition: transform 0.3s ease;
  }
  
  #nav-check:checked ~ .nav-btn #nav-icon {
    transform: rotate(90deg);
  }
  /* Hover Effect for the Button */
  .back-to-top:hover {
      background-color: #F5F5DB;
  }
  
  /* Show Button When Scrolled Down */
  body.scrolled .back-to-top {
      display: block;
  }
  
  /* Back to Top Button */
  .back-to-top {
      position: fixed;
      bottom: 60px; /* Just above the copyright section */
      right: 20px; /* Positioned towards the bottom-right corner */
      background-color: #E3BA28;
      color: #2A2929;
      border: none;
      padding: 15px 20px;
      font-size: 16px;
      cursor: pointer;
      border-radius: 5px;
      z-index: 100;
      display: none; /* Initially hidden */
  }
  
        
  /*SHIRT JACK SECTION*/
  /*SHIRT JACK SECTION*/
  /*SHIRT JACK SECTION*/
  h2.light {
    font-weight: 300;
    font-size: 20px;
    color: #F5F5DB;
    line-height: 29px;
    text-align: justify;
    text-indent: 50px;
  }
  
  h2.light .bold {
    font-weight: 700;
  }
  
  .shirt-jack {
    padding: 0px 10%;
  }
  
  .sj-content-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .sj-desc {
    background-color: #1E1E1E;
    color: #F5F5DB;
    padding: 60px;
    padding-top: 270px;
    flex: 0 0 426px;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif;
  }
  
  .SJ-title {
    color: #E3BA28;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
  }
  
  .SJ-description {
    font-weight: 300;
    font-size: 20px;
    line-height: 29px;
    text-align: justify;
  }
  
  .SJ-description p {
      text-indent: 50px;
  }
  
  .sj-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 200px;
    padding-bottom: 200px;
  }
  
  .sj-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    box-sizing: border-box;
  }
  
  @media (max-width: 768px) {
    .sj-content-layout {
      flex-direction: column;
      gap: 20px;
    }

    .shirt-jack {
      padding: 0px;
      margin-bottom: 200px;
    }
  
    .sj-desc {
      width: 100%;
      padding: 20px;
      padding-top: 60px; /* Reduced padding for smaller screens */
    }
    
    .SJ-description {
      font-size: 20px;
      line-height: 1.6;
      padding: 10px 0;
      margin-bottom: 40px;
    }
  
    .SJ-title {
      font-size: 30px;
      margin-bottom: 20px;
    }
    
    .sj-gallery {
      width: 100%;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      padding: 20px 20px 40px;
    }
  
    .sj-gallery img {
      object-fit: contain;
    }
  }
  

  /*LONG SLEEVE SECTION*/
  /*LONG SLEEVE SECTION*/
  /*LONG SLEEVE SECTION*/
  .LongsleeveSec {
  position: relative;
  height: auto;
  padding-right: 0;
  box-sizing: border-box;
  }
  
  .LongsleeveContent {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  flex-direction: row-reverse; /* Reverse the order of left and right */
  }
  
  /* RIGHT: Text */
  .LongsleeveText {
  width: 426px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  padding: 60px;
  box-sizing: border-box;
  position: relative;
  margin-right: 10%;
  font-family: 'Jost', sans-serif;
  
  }
  
  .LongsleeveTitle {
  text-align: left;
  position: relative;
  font-size: 30px;
  font-weight: 700;
  color: #1E1E1E;
  z-index: 1;
  padding: 10px 20px;
  margin-left: calc(-60px - -14%);
  width: calc(150% + 60px + -45%);
  background-color: #E3BA28;
  box-sizing: border-box;
  }
  
  .LongsleeveTitle::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10vw;
  width: calc(100% + 10vw);
  height: 100%;
  background-color: #E3BA28;
  z-index: -1;
  }
  
  .LongsleeveDescription {
  color: #1E1E1E;
  font-size: 20px;
  line-height: 29px;
  text-align: justify;
  margin-left: auto;
  margin-bottom: 40px;
  }
  
  .LongsleeveDescription p {
  text-indent: 50px;
  margin-bottom: 20px;
  }
  
  .LongsleeveDescription .bold {
  font-weight: 700;
  }
  
  .LongsleeveDescription .light {
  font-weight: 300;
  }
  
  /* LEFT: Gallery Container with background */
  .LongsleeveGalleryWrapper {
  flex: 1 1 48%;
  background-color: #1E1E1E;
  padding: 40px;
  padding-right: 60px;
  padding-left: 15%;
  box-sizing: border-box;
  }
  
  .LongsleeveGallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  }
  
  .LongsleeveGallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
  .LongsleeveContent {
    flex-direction: column;
  }
  
  .LongsleeveText {
    order: 1;
    padding: 20px;
    max-width: 100%;
    min-width: unset;
  }

  .LongsleeveSec {
    margin-bottom: 200px;
  }
  
  .LongsleeveDescription {
    font-size: 20px;
    line-height: 1.6;
    padding: 10px 0;
    margin-bottom: 40px;
  }


  .LongsleeveGalleryWrapper {
    order: 2;
    padding: 20px;
  }
  
  .LongsleeveGallery {
    grid-template-columns: repeat(2, 1fr);
  }
  }

  @media (max-width: 768px) {
    .LongsleeveContent {
      flex-direction: column;
      gap: 20px;
    }
  
    .LongsleeveText {
      order: 1;
      padding: 20px;
      margin-right: 0;
      width: 100%;
      max-width: none;
    }
  
    .LongsleeveTitle {
      text-align: left;
      font-size: 30px;
      padding: 10px 16px;
      margin-left: 0;
      width: 100%;
      background-color: #E3BA28;
    }
  
    .LongsleeveTitle::before {
      display: none; /* Hides background extension on small screens */
    }
  
    .LongsleeveGalleryWrapper {
      order: 2;
      padding: 20px;
    }
  
    .LongsleeveGallery {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
  
    .LongsleeveGallery img {
      width: 100%;
      height: auto;
      object-fit: contain;
    }
  }
  
      
  /*JERSEY SECTION*/
  /*JERSEY SECTION*/
  /*JERSEY SECTION*/
  .JerseySec {
  position: relative;
  height: auto;
  padding-right: 0;
  box-sizing: border-box;
  margin-bottom: 200px;
  }
  
  .JerseyContent {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  }
  
  /* LEFT: Text */
  .JerseyText {
  width: 426px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  padding: 60px;
  box-sizing: border-box;
  position: relative;
  margin-left: 10%;
  font-family: 'Jost', sans-serif;
  }
  
  .JerseyTitle {
  text-align: right;
  position: relative;
  font-size: 30px;
  font-weight: 700;
  color: #1E1E1E;
  z-index: 1;
  padding: 10px 20px;
  margin-left: calc(-60px - 10%);
  width: calc(100% + 60px + -40%);
  background-color: #E3BA28;
  box-sizing: border-box;
  }
  
  .JerseyTitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10vw;
  width: calc(100% + 10vw);
  height: 100%;
  background-color: #E3BA28;
  z-index: -1;
  }
  
  .JerseyDescription {
  color: #1E1E1E;
  font-size: 20px;
  line-height: 29px;
  text-align: justify;
  margin-left: auto;
  margin-bottom: 40px;
  }
  
  .JerseyDescription p {
  text-indent: 50px;
  margin-bottom: 20px;
  }
  
  .JerseyDescription .bold {
  font-weight: 700;
  }
  
  .JerseyDescription .light {
  font-weight: 300;
  }
  
  /* RIGHT: Gallery Container with background */
  .JerseyGalleryWrapper {
  flex: 1 1 48%;
  background-color: #1E1E1E;
  padding: 40px;
  padding-right: 15%;
  padding-left: 60px;
  box-sizing: border-box;
  }
  
  .JerseyGallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  }
  
  .JerseyGallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
  .JerseyContent {
    flex-direction: column;
  }
  
  .JerseyText {
    order: 1;
    padding: 20px;
    max-width: 100%;
    min-width: unset;
  }
  
  .JerseyGalleryWrapper {
    order: 2;
    padding: 20px;
  }
  
  .JerseyGallery {
    grid-template-columns: repeat(2, 1fr);
  }
  }
  
  @media (max-width: 768px) {
    .JerseyContent {
      flex-direction: column;
      gap: 20px;
    }
  
    .JerseyText {
      order: 1;
      padding: 20px;
      margin-left: 0;
      width: 100%;
      max-width: none;
    }
  
    .JerseyTitle {
      text-align: left;
      font-size: 30px;
      padding: 10px 16px;
      line-height: 1.4;
      margin-left: 0;
      width: 100%;
      background-color: #E3BA28;
    }
    .JerseyDescription {
      font-size: 20px;
      line-height: 1.6;
      padding: 10px 0;
      margin-bottom: 40px;
    }
  
    .JerseyTitle::before {
      display: none; /* Optional: Remove the background extension on mobile */
    }
  
    .JerseyGalleryWrapper {
      order: 2;
      padding: 20px;
    }
  
    .JerseyGallery {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
  
    .JerseyGallery img {
      width: 100%;
      height: auto;
      object-fit: contain;
    }
    .hide-on-mobile {
      display: none !important;
    }
  }
  

  
  /*POLO SECTION*/
  /*POLO SECTION*/
  /*POLO SECTION*/
  /* POLO SECTION */
  /* POLO SECTION */
  
  .PoloSec {
  position: relative;
  height: auto;
  background: #1E1E1E;
  padding: 40px 60px;
  padding-right: 0px;
  box-sizing: border-box;
  margin-left: 8%;
  margin-bottom: 200px;
  }
  
  /* Layout container for columns */
  .PoloContent {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-right: 12%;
  justify-content: space-between; /* Allow for more space between columns */
  }
  
  /* Left Column: Gallery */
  .PoloGallery {
  flex: 1 1 48%; /* Ensure Gallery gets 48% of space to fit 4 columns */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  /* Remove max-height to let the gallery grow with more rows */
  overflow: visible;  /* Ensure the gallery can expand vertically */
  }
  
  .PoloGallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  box-sizing: border-box;
  }
  
  /* Right Column: Text */
  .PoloText {
  flex: 1 1 48%; /* Ensure Text gets 48% of space */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px; /* Optional spacing between title and description */
  padding: 60px;
  min-width: 426px;
  max-width: 426px;
  }
  
  .PoloTitle {
  text-align: left;
  color: #E3BA28;
  font-size: 30px;
  font-weight: 700;
  font-family: 'Jost', sans-serif;
  margin-bottom: 20px;
  }
  
  .PoloDescription {
  color: #F5F5DB;
  font-size: 20px;
  line-height: 29px;
  text-align: justify;
  margin-left: auto;
  margin-bottom: 40px;
  font-family: 'Jost', sans-serif;
  }
  
  .PoloDescription p {
  text-indent: 50px;
  margin-bottom: 20px;
  }
  
  .PoloDescription .bold {
  font-weight: 700;
  }
  
  .PoloDescription .light {
  font-weight: 300;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
  .PoloContent {
      flex-direction: column;
  }
  .PoloGallery {
    order: 2;
  }
  
  .PoloText {
    order: 1;
  }
  
  .PoloGallery {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
      max-height: none; /* Let it grow on small screens */
  }
  .PoloDescription {
    font-size: 20px;
    line-height: 1.6;
    padding: 10px 0;
    margin-bottom: 40px;
    }
  }
  .fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  }
  
  .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  }
  .PoloGallery img.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .PoloGallery img.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  }

  @media (max-width: 768px) {
    .PoloSec {
      margin-left: 0;
      padding: 20px;
    }
  
    .PoloContent {
      flex-direction: column;
      padding-right: 0;
    }
  
    .PoloText {
      width: 100%;
      max-width: none;
      min-width: auto;
      padding: 60px 0px;
      gap: 0px;
    }
  
    .PoloGallery {
      width: 100%;
      grid-template-columns: repeat(2, 1fr); /* 2 images per row */
      gap: 10px;
      order: 2;
    }
  
    .PoloGallery img {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
    }
  
    .PoloText {
      order: 1;
    }
  }
  


  /*SHIRT SECTION*/
  /*SHIRT SECTION*/
  /*SHIRT SECTION*/
  h2.light {
  font-weight: 300;
  font-size: 20px;
  color: #F5F5DB;
  font-family: 'Jost', sans-serif;
  line-height: 29px;
  text-align: justify;
  text-indent: 50px;
  }
  
  h2.light .bold {
  font-weight: 700;
  }
  
  .shirt {
  padding: 0 10%;
  padding-top: 80px;
  padding-bottom: 200px;
  }
  
  /* Content layout: 2-column + stacked bottom */
  .content-layout {
  display: grid;
  grid-template-columns: 426px 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "shirtdesc garmentstitle"
    "shirtdesc shirtgallery";
  gap: 40px;
  }
  
  .ShirtDesc {
  background-color: #1E1E1E;
  color: #F5F5DB;
  padding: 60px;
  padding-top: 300px;
  flex: 1;
  box-sizing: border-box;
  position: relative;
  font-family: 'Jost', sans-serif;
  }
  
  .ShirtTitle {
  color: #E3BA28;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
  }
  
  .ShirtDescription h2 {
  font-weight: 300;
  font-size: 20px;
  line-height: 29px;
  text-align: justify;
  text-indent: 50px;
  margin: 0;
  }
  
  .ShirtDescription h2 .bold {
  font-weight: 700;
  }
  
  .garment-section {
  padding: 20px;
  background-color: #f5f5f5;
  flex: 2;
  min-width: 300px;
  box-sizing: border-box;
  }
  
  .GarmentsTitle {
  position: relative;
  height: 142px;
  margin-bottom: 40px;
  }
  
  .Garments {
  grid-area: garmentstitle;
  background-color: #E3BA28;
  padding: 10px 30px;
  color: #1E1E1E;
  font-size: 36px;
  font-family: 'Konkhmer Sleokchher', cursive;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: auto;
  }
  
  .shirt-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  }
  
  .shirt-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  box-sizing: border-box;
  }
  /* Desktop Grid Areas */
  .ShirtDesc {
  grid-area: shirtdesc;
  }
  
  .GarmentsTitle {
  grid-area: garmentstitle;
  }
  
  .shirt-gallery {
  grid-area: shirtgallery;
  }
  
  /* Responsive Layout for Mobile */
  @media (max-width: 768px) {
    .content-layout {
      display: grid;
      grid-template-areas:
        "garmentstitle"
        "shirtdesc"
        "shirtgallery";
      grid-template-columns: 1fr;
      gap: 30px;
    }
    .shirt {
      padding: 0px;
      padding-top: 80px;
      padding-bottom: 200px;
    }
    .ShirtDesc {
      width: 100%;
      padding: 60px 20px;
      box-sizing: border-box;
    }
  
    .ShirtTitle {
      font-size: 30px;
      line-height: 1.4;
      margin-bottom: 20px;
      word-wrap: break-word;
      padding: 8px;
    }
  
    .ShirtDescription h2 {
      font-size: 20px;
      line-height: 1.6;
      text-align: justify;
      text-indent: 30px;
      word-break: break-word;
      padding: 10px 0;
      margin-bottom: 40px;
    }
  
    .GarmentsTitle {
      width: 100%;
      padding: 10px 0;
      display: flex;
      height: 80px;
      justify-content: center;
      box-sizing: border-box;
      
    }
  
    .Garments {
      font-size: 30px;
      padding: 10px 20px;
      text-align: center;
      width: auto;
      max-width: 100%;
      box-sizing: border-box;
    }
  
    .shirt-gallery {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      padding: 10px 20px 40px;
      width: 100%;
      box-sizing: border-box;
    }
  
    .shirt-gallery img {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
    }
  }
  

  
  /* Fade-in animation base */
  .fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  }
  
  /* When visible */
  .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  }
  
  .carousel {
    z-index: 1;
  }
  .carousel-indicators {
    position: static;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    height: 50px;
    gap: 10px;
    padding: 10px;
    padding-top: 0px;
    overflow-x: auto;
  }

  .carousel-indicators img {
    width: 60px;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .carousel-indicators button {
    width: auto !important;
    padding: 0;
    border: none;
    background: none;
  }

  .carousel-inner {
    height: 900px;
    max-width: 100%;
    overflow: hidden;
  }

  .carousel-item img {
    width: 100%;
    height: 900px;
    object-fit: cover;
    animation: zoomIn 4s ease-in-out forwards;
  }

  .fade {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
  }

  @media (max-width: 768px) {
    .carousel-inner {
      height: auto;
      padding-top: 90px;
    }

    .carousel-item {
      height: auto;
    }

    .carousel-item img {
      width: 100%;
      height: auto;
      object-fit: contain;
    }

    .carousel-indicators img {
      width: 50px;
    }

    .carousel-indicators {
      overflow-x: auto;
      width: 300px;            
      gap: 0px;
      margin: 0px 40px;
    }
  }

  
  @keyframes zoomIn {
  0% {
      transform: scale(1);
  }
  100% {
      transform: scale(1.05);
  }
  }
  
  

