* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: cyan;
  font-family: Arial, sans-serif;
  background-image: url('./img/reckDONEDARK.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 100vh; /* Full height on all devices */
}

/* Container adapts to viewport width */
.container {
  max-width: 90vw; /* Fluid width based on viewport */
  margin: 0 auto;
  padding: 5vw; /* Dynamic padding */
}

.main-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 5vh; /* Dynamic margin based on viewport height */
}

.image-section {
  flex: 1;
  margin-right: 2%; /* Dynamic margin for better layout */
}

/* Image section scales dynamically */
.image-section img {
  width: 100%;
  max-width: 50vw; /* Limit to 50% of viewport width */
  height: auto;
  border-radius: 1rem; /* Scalable border radius */
}

.text-section {
  flex: 1;
  padding: 2vw; /* Dynamic padding */
}

.text-section h1 {
  font-size: clamp(1.5rem, 2vw, 2.5rem); /* Fluid typography using clamp() */
  margin-bottom: 2vh; /* Margin based on viewport height */
}

.text-section ul {
  list-style-type: disc;
  margin-left: 4vw; /* Scaled indentation */
}

/* Media Queries for Smaller and Larger Screens */
@media (max-width: 1024px) {
  .main-content {
    flex-direction: column; /* Stack on smaller screens */
  }
  
  .image-section, .text-section {
    margin-right: 0;
  }
}

@media (min-width: 1440px) {
  /* Adjust for larger screens */
  .container {
    max-width: 80vw;
  }
}

.scroll-container {
  width: 100%;
  overflow: hidden;
}

.thumbnail-gallery {
  display: flex;
  transition: transform 0.3s ease;
  white-space: nowrap;
}

/* Responsive image sizes in thumbnail gallery */
.thumbnail-gallery img {
  width: 8vw; /* Fluid width for thumbnails */
  height: auto;
  cursor: pointer;
  border: 0.125rem solid transparent;
  border-radius: 0.5rem;
  transition: border 0.3s ease;
}

.thumbnail-gallery img:hover {
  border: 0.125rem solid orange;
}

.splide__slide {
  margin: 0;
  padding: 0;
}

/* .bannerImg {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
} */

