body {
  font-family: 'Belleza', sans-serif;
  background-color: #d9d9d9;
  margin: 0;
  padding: 0;
}

/* Top Banner with Embossing and Sage Green */
.top-banner {
  background-color: #5d7466;
  color: #dfd8c9;
  text-align: center;
  padding: 5px 0;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1); /* Thin embossing line */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2); /* Subtle embossing */
  transition: all 0.3s ease;
}

.top-banner:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2), inset 0 2px 0 rgba(255, 255, 255, 0.3); /* Enhanced hover shadow */
}

/* Navbar Styling */
.navbar {
  background-color: #5d7466 !important;
  min-height: 80px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 80px;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.02);
}

.nav-link {
  color: #dfd8c9 !important;
  padding: 10px 15px;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.nav-link:hover {
  background-color: #486057;
  color: #fff !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* Sleek hover shadow */
  transform: translateY(-2px);
}

/* Carousel styling */
.carousel {
  height: 200px; /* Reduced height for desktop */
}

.carousel-inner {
  height: 100%;
}

.carousel-item {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none; /* Ensure only active is visible */
}

.carousel-item.active {
  display: flex;
}

.carousel-item img {
  height: 100%;
  width: auto;
  object-fit: contain; /* Scales images without distortion */
  max-width: 100%;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle image shadow */
  transition: transform 0.3s ease;
}

.carousel-item img:hover {
  transform: scale(1.05); /* Slight zoom on hover */
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

@media (max-width: 991px) {
  .carousel {
    height: 150px; /* Reduced height for mobile */
  }
  .navbar-brand img {
    height: 60px;
  }
  .navbar {
    min-height: 60px;
  }
}

/* Buttons */
.btn-custom {
  background-color: #5d7466;
  color: #dfd8c9;
  border-radius: 25px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #486057;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Enhanced hover shadow */
  transform: translateY(-2px);
}

/* Footer */
footer {
  background-color: #d9d9d9;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

footer a {
  color: #5d7466;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #486057;
  transform: scale(1.1);
}

/* Premium QoL Improvements */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.description {
  color: #2e3d38;
  font-size: 1.2rem;
  line-height: 1.6;
}

.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
