 /* General Reset */
body, html {
  margin: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

a {
  text-decoration: none;
}

.custom-navbar {
  background: transparent !important; /* Transparent navbar */
  transition: background 0.3s ease-in-out; /* Smooth transition for background color */
}

.custom-navbar.scrolled {
  background: rgb(0, 0, 0) !important; /* Background for scrolling effect */
}

.logo-img {
  height: 65px;
  width: auto;
}

/* Hero Section */
.custom-hero-section {
  position: relative;
  background: url('/images/banners/Hero-Banner.png') no-repeat center center;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: end;
  justify-content: flex-start;
  color: #fff;
  padding: 0 5%;
}

.custom-hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.custom-hero-container {
  /* position: relative; */
  z-index: 2; 
  /* text-align: left; */
}

.custom-hero-container h1 {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 74px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: white;
}

.custom-hero-container p {
  font-family: "Helvetica Now Display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.52px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}


.hero-orignal{
  background-color: #605D00;
  color: #ffffff;
  border-radius: 100px;
  padding: 10px 20px;
  font-weight: bold; 
  width: fit-content;
}
/* Explore Button */
.explore-btn {
  background-color: #fff;
  color: #000;
  border-radius: 20px;
  padding: 10px 20px;
  font-weight: bold;
  transition: background 0.3s ease;
}
 
/* Navbar Hover Effects */
.navbar-nav .nav-link {
  margin-right: 15px;
  color: white;
  transition: color 0.3s;
}

.custom-nav-button {
  background-color: #fff; /* White background */
  color: #000 !important; /* Black text */
  font-family: "Helvetica Now Display", sans-serif; 
  font-size: 16px; /* Adjust text size */
  font-weight: 600; /* Adjust font weight */
  padding: 8px 8px; /* Add padding for the button */
  border: none; /* Remove default border */
  border-radius: 50px; /* Make the button rounded */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a slight shadow */
  cursor: pointer; /* Change cursor to pointer on hover */
  transition: transform 0.5s ease, box-shadow 0.2s ease; /* Smooth hover effects */
}

.custom-nav-button:hover {
  transform: scale(1.05); /* Slightly enlarge on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Darker shadow on hover */
}

.navbar-nav .nav-link:hover {
  color: #c0ba11;
}

/* Responsive Design */
@media (max-width: 768px) {
  
  .custom-hero-section {
      justify-content: center;
      text-align: center;
      height: 70vh;
  }

  .custom-hero-container h1 {
      font-size: 2rem;
      line-height: 43px;
  }

  

  .logo-img {
      height: 40px;
  }

  .explore-btn {
      margin-top: 20px;
  }
}

@media (max-width: 391px) {
  .custom-hero-section { 
    height: 80vh;
}

}
@media (max-width: 380px) {
  .custom-hero-section { 
    height: 100vh;
}

}
  
  .badge-custom {
    background-color: #605D00;
    font-weight: 600;
    font-size: 14px;
    padding: 18px 12px;
    border-radius: 100px;
  }
  

  .featured-section {
    text-align: center; 
  }
  
  .featured-title { 
        font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
        font-size: 48px;
        font-weight: 500;
        line-height: 64px;
        text-align: center;
        text-underline-position: from-font;
        text-decoration-skip-ink: none; 
  }
  
  .featured-title span {
    color: #6b8e23;
    font-weight: 600;
  }
  
  .featured-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
  }
    
  
  .image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .large-image-container {
    height: 100%;
  }

  .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, ease);
    box-sizing: border-box; /* Updated this line */
}

.swiper-slide {
    flex: 0 0 auto; /* Allows slides to grow and shrink */
    margin-right: 30px; /* Consistent spacing */
}

/* Ensures swiper recalculates when viewport changes */
@media (max-width: 768px) {
    .swiper-slide {
        width: 100%; /* Full width for smaller screens */
        margin-right: 15px; /* Smaller margin on smaller screens */
    }
}


  @media (max-width: 440px) {
    .featured-title.sam-featu { 
       font-size: 43px;
  }
}
  