body {
  background-color: white;
  color: var(--dark-brown); /* Define --dark-brown elsewhere */
  font-family: 'Segoe UI', sans-serif;
}

.navbar {
  background-color: white;
}

.nav-link.active {
  text-decoration: underline;
}

.hero-section {
  background-image: url('../images/home/background/home.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh; /* Full screen height */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-text-box {
  background-color: rgba(255, 255, 255, 0.5); /* White with 50% opacity */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  color: black; /* Text color is now black */
}

.hero-section .btn-outline-light {
  color: white; /* Text color within the buttons */
  border-color: black; /* Button border color */
  background-color: black; /* Button background color */
}

.hero-section .btn-outline-light:hover {
  color: black; /* Text color on hover */
  border-color: white; /* Button border color on hover */
  background-color: white; /* Button background color on hover */
}
.hero-text {
  text-align: center;
  font-size: 2em; /* Increased font size */
  font-weight: bold;
  color: white;
  margin-bottom: 20px;
}

.hero-text h4 {
  font-size: 3em; /* Increased heading size */
  margin-bottom: 10px;
}


.highlight {
  background-color: #eee2cb;
}

.deals {
  background-color: #786e5b;
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}

.category-box {
  background-color: #786e5b;
  color: white;
  padding: 1rem;
  border-radius: 10px;
}

#productCarousel {
  max-width: 1000%; /* Make it take up the full available width */
  margin: 0 auto; /* Center it horizontally */
}

#productCarousel img {
  height: auto; /* Maintain aspect ratio */
  max-height: 1000px; /* Set a maximum height to prevent images from being too large */
  object-fit: cover; /* Ensure images cover the entire container */
}
.services-section {
  background-image: url("../images/home/background/services.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  position: relative;
  color: black;
  display: flex; /* Enable flexbox */
  justify-content: flex-end; /* Align items to the end (right) */
  align-items: center; /* Vertically center items */
}

.services-text-box {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  max-width: 50%; /* Optional: Limit the width of the text box */
}


.services-section .btn-outline-dark{
  color: white;
  border-color: black;
  background-color: black;
}

.services-section .btn-outline-dark:hover{
  color: black;
  border-color: white;
  background-color: white;
}
.deals-container {
  background-image: url('images/deals-background.jpg'); /* Path to your background image */
  background-size: cover;
  background-position: center;
  color: black; /* Text color: black for better contrast */
  text-align: center; /* Center-align text */
  padding: 2rem; /* Add padding for better spacing */
}

.deals-container h5 {
  font-size: 1.8rem; /* Adjust font size as needed */
  font-weight: bold;
  margin-bottom: 1rem; /* Add margin for spacing */
}

.deals-container p {
  font-size: 1.2rem; /* Adjust font size as needed */
  margin-bottom: 1.5rem; /* Add margin for spacing */
}

.deals-container .list-group-item {
  background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white background */
  margin-bottom: 0.5rem;
  border: none; /* Remove default list-group border */
}

.deals-container .btn {
  background-color: #A05E2A; /* Brown button */
  color: white;
}