body{
    background-color: #dec2ba
}



.hero-section {
  background-color: #dec2ba;
  color: #1f2937;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Ensure all images in hero sections and gallery have same size */
.hero-section img,
.gallery img,
.contact-section img {
  width: 100%;
  height: 300px;      /* fixed height for all images */
  object-fit: cover;  /* crop without stretching */
  border-radius: 0.5rem; /* keep rounded corners */
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}

/* Optional: adjust height on smaller screens */
@media (max-width: 767.98px) {
  .hero-section img,
  .gallery img,
  .contact-section img {
    height: 200px; /* smaller height on mobile */
  }
}

.gallery-img {
  width: 100%;
  height: 250px; /* adjust to your liking, e.g., 300px for taller images */
  object-fit: cover; /* crops to fill the box while preserving aspect ratio */
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

.img-mirror-border {
  position: relative;
  display: inline-block;
  border-radius: 12px;
  overflow: visible; /* allow reflection outside */
}

.img-mirror-border img {
  display: block;
  border-radius: 12px;
}

/* Stronger mirror reflection pseudo-element */
.img-mirror-border::after {
  content: '';
  position: absolute;
  top: -24px;   /* larger reflection area */
  left: -24px;
  right: -24px;
  bottom: -24px;
  border-radius: 45px;
  background: inherit;        /* use the image itself */
  background-size: cover;
  background-position: center;
  transform: scaleY(-1) scale(1.05); /* vertical mirror + slight scale */
  opacity: 0.95;               /* stronger, more visible */
  filter: blur(16px);          /* slightly less blur for stronger effect */
  z-index: -1;
}

.hero-img {
  position: relative;
  display: inline-block;
}

.hero-img::before {
  content: "";
  position: absolute;
  inset: -30px; /* how far the mirrored border extends */
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  filter: blur(45px) opacity(0.9); /* strength of mirror effect */
  border-radius: 25px;
  z-index: -1;
}

.hero-img img {
  display: block;
  width: 100%;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.nav {
  background-color: #dec2ba;
}

/* Navbar styling */
.navbar {
  background-color: #dec2ba !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease-in-out;
}

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

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

/* Nav links */
.nav-link {
  color: #5a4035 !important;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

.nav-link:hover {
  color: #a0674b !important;
}

/* Active link highlight (optional subtle underline) */
.nav-link.active {
  border-bottom: 2px solid #a0674b;
  padding-bottom: 3px;
}

/* Toggler icon color */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  filter: invert(40%) sepia(20%) saturate(250%) hue-rotate(330deg) brightness(90%);
}


/*.navbar {
  background-color: #dec2ba !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}*/


.list-group-item + .list-group-item {
  border-top: none; /* ensures no separator line remains */
}

.list-group-item {
  background-color: #ffe1d5;
  border: none;
  color: #5a4035; /* dark brown text for good contrast */
  font-size: 1.05rem;
  padding: 0.75rem 1.25rem;
}

.list-title {
  background-color: #d1b6ae; /* slightly darker version for headers */
  color: #5a4035;
  font-weight: 600;
}

.list-group-item span.fw-bold {
  color: #a0674b; /* subtle accent for the price */
}

.list-group-item + .list-group-item {
  border-top: 1px solid rgba(90, 64, 53, 0.1);
}

.list-group-item:not(.list-title):hover {
  background-color: #ffd5c5;
  transition: background-color 0.1s ease-in-out;
}
