.navbar-scrolled {
  background-color: #2f7434 !important; /* your brand-green background */
  transition: background-color 0.3s ease;
}

.navbar-nav .nav-link {
  transition: all 0.3s ease;
  border-radius: 0.5rem; /* rounded corners */
  padding: 0.5rem 1rem;  /* give button-like spacing */
}

.navbar-nav .nav-link:hover {
  color: #DFB341 !important;
  background-color: rgba(255,255,255,0.1); /* optional subtle hover background */
}

.navbar .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.dropdown-item {
  background-color: #fff;
  color: #000;
  transition: background-color 0.2s ease;
}

/* Hover = lighter yellow */
.dropdown-item:hover {
  background-color: rgba(223, 179, 65, 0.9); /* light version */
  color: #000;
}

/* Active (full color) */
.dropdown-item.active,
.dropdown-item:active {
  background-color: #DFB341;
  color: #000;
}

/* HERO */
.hero-section {
  background: url('images/hero-banner.png') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section {
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

.brand-font {
  font-family: 'Playfair Display', Georgia, serif;
}
.brand-green {
  color: #2f7434;
}
.brand-bg-green {
  background-color: #2f7434;
}

.brand-yellow {
  color: #DFB341;
}

.fruit-image {
  aspect-ratio: 4 / 3;   /* adjust ratio to make image shorter or taller */
  object-fit: cover;      /* fills container nicely */
  width: 100%;
}

.gallery-img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Hover effect for orchard fruits */
.fruit-image:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}