/* Village Landmark — brand design overrides */

:root {
  --color-hover: #16A34A;
  --color-brand: #16A34A;
  --color-brand-dark: #15803D;
  --color-brand-light: #DCFCE7;
  --color-footer-bg: #1A1D24;
}

/* Global accent */
.solid__btn:hover {
  background: var(--color-brand-dark);
}

#scroll__top {
  background: var(--color-brand);
}

/* Breadcrumb hero */
.breadcrumb__section {
  background: linear-gradient(135deg, #14532D 0%, #16A34A 50%, #15803D 100%);
  position: relative;
}

.breadcrumb__section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/other/breadcrumb-bg.png") center/cover no-repeat;
  opacity: 0.08;
}

.breadcrumb__content {
  position: relative;
  z-index: 1;
}

.breadcrumb__title {
  color: #fff;
}

.breadcrumb__menu--link,
.breadcrumb__menu--text {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb__menu--link:hover {
  color: #fff;
}

.breadcrumb__menu svg path {
  stroke: rgba(255, 255, 255, 0.7);
}

/* Inner page content */
.inner-page__section {
  background: var(--color-background-8);
}

.inner-page__card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 3rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

@media only screen and (max-width: 767px) {
  .inner-page__card {
    padding: 2rem 1.5rem;
  }
}

.inner-page__title {
  position: relative;
  padding-bottom: 1.2rem;
  margin-bottom: 2rem;
}

.inner-page__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 6rem;
  height: 3px;
  background: var(--color-brand);
  border-radius: 2px;
}

/* Gallery grid */
.vl-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

@media only screen and (max-width: 991px) {
  .vl-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
}

@media only screen and (max-width: 575px) {
  .vl-gallery__grid {
    grid-template-columns: 1fr;
  }
}

.vl-gallery__item {
  border-radius: 1.2rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.vl-gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(22, 163, 74, 0.15);
}

.vl-gallery__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.vl-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vl-gallery__item:hover .vl-gallery__thumb img {
  transform: scale(1.05);
}

.vl-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 163, 74, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.vl-gallery__item:hover .vl-gallery__overlay {
  background: rgba(22, 163, 74, 0.35);
}

.vl-gallery__zoom {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: #fff;
  color: var(--color-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.vl-gallery__item:hover .vl-gallery__zoom {
  opacity: 1;
  transform: scale(1);
}

.vl-gallery__caption {
  padding: 1.4rem 1.6rem;
}

.vl-gallery__caption h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-foreground);
}

/* Testimonial grid on inner page */
.vl-testimonial__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}

@media only screen and (max-width: 767px) {
  .vl-testimonial__grid {
    grid-template-columns: 1fr;
  }
}

/* Footer refinements */
.footer__section {
  background: var(--color-footer-bg) !important;
}

.footer__widget--desc {
  line-height: 2.6rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright__content--link {
  color: var(--color-brand);
}

.copyright__content--link:hover {
  color: #fff;
}

/* Header email link */
.header__info--text a {
  color: inherit;
}

.header__info--text a:hover {
  color: var(--color-brand);
}

/* Hero CTA fix */
.hero__content--footer .solid__btn {
  white-space: nowrap;
}
