/* ============================================================
   Meon View — Bootstrap 5.3 Supplement
   Only what Bootstrap doesn't cover.
   ============================================================ */

/* ---- Brand tokens ---- */
:root {
  --mv-primary:        #2d6a4f;
  --mv-primary-dark:   #1b4332;
  --mv-primary-light:  #52b788;
  --mv-primary-lighter:#95d5b2;
  --mv-cream:          #fdf9f0;
  --mv-cream-mid:      #f5ede0;
  --mv-heading:        'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; }
h1, h2, h3, .font-heading { font-family: var(--mv-heading); }
section[id] { scroll-margin-top: 80px; }

/* First section sits directly under the fixed navbar */
#about { padding-top: calc(var(--bs-navbar-height, 80px) + 2rem) !important; }

/* ---- Bootstrap colour overrides ---- */
.btn-primary {
  --bs-btn-bg:            var(--mv-primary);
  --bs-btn-border-color:  var(--mv-primary);
  --bs-btn-hover-bg:      var(--mv-primary-dark);
  --bs-btn-hover-border-color: var(--mv-primary-dark);
  --bs-btn-active-bg:     var(--mv-primary-dark);
  --bs-btn-focus-shadow-rgb: 45,106,79;
  border-radius: 50px;
  padding: .75rem 1.75rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(45,106,79,.35) !important;
  transition: all .28s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,106,79,.45) !important; }

.btn-outline-light {
  border-radius: 50px;
  padding: .75rem 1.75rem;
  font-weight: 600;
  transition: all .28s ease;
}
.btn-outline-light:hover { transform: translateY(-2px); }

/* ---- Utilities ---- */
.bg-cream      { background-color: var(--mv-cream) !important; }
.bg-mv-green   { background-color: var(--mv-primary-dark) !important; }
.bg-mv-dark    { background-color: #0a1a0d !important; }
.text-mv       { color: var(--mv-primary) !important; }
.text-mv-light { color: var(--mv-primary-lighter) !important; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mv-primary);
  margin-bottom: .75rem;
}
.section-label-light { color: var(--mv-primary-lighter); }

.section-title { font-size: clamp(1.875rem, 4vw, 2.875rem); line-height: 1.15; }
.section-title em { color: var(--mv-primary); font-style: italic; }
.section-title-light em { color: var(--mv-primary-lighter) !important; }

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background-color: var(--mv-primary-dark) !important;
  transition: box-shadow .3s ease, padding .3s ease;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
#mainNav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.3) !important;
  padding-top: .75rem;
  padding-bottom: .75rem;
}
.nav-link-pill {
  border-radius: 50px !important;
  padding: .5rem .875rem !important;
  font-weight: 500;
  transition: all .15s ease !important;
}
.nav-link-pill:hover { background: rgba(255,255,255,.12) !important; }
.nav-cta {
  background: rgba(255,255,255,.15) !important;
  border: 1.5px solid rgba(255,255,255,.35) !important;
  font-weight: 600 !important;
  color: #fff !important;
}
.nav-cta:hover { background: rgba(255,255,255,.25) !important; }

/* Mobile nav panel */
@media (max-width: 991.98px) {
  #navbarNav {
    background: var(--mv-primary-dark);
    border-top: 1px solid rgba(255,255,255,.1);
    margin: .5rem -.75rem -.25rem;
    padding: 1.25rem 1.5rem;
  }
  #navbarNav .nav-link-pill { font-size: 1.125rem; padding: .75rem 1.25rem !important; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-img-frame {
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 16px 60px rgba(27,67,50,.22);
  position: relative;
}
.about-img-gradient {
  width: 100%; height: 100%;
  background: linear-gradient(160deg,
    #87ceeb 0%, #a8d8ea 12%, #d4eecc 28%, #a8cc78 42%,
    #d4a84a 54%, #b88830 65%, #6a9040 76%, #3d7030 88%, #2a5020 100%
  );
}
.about-img-caption {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  padding: .625rem 1rem; border-radius: .75rem;
  font-size: .875rem; font-weight: 500; text-align: center;
}
.cert-badge {
  position: absolute; top: -1.5rem; right: -1.5rem;
  background: #fff; border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 40px rgba(27,67,50,.18);
  min-width: 170px; text-align: center;
}
.cert-badge svg { stroke: var(--mv-primary); width: 34px; height: 34px; }
@media (max-width: 991.98px) {
  .cert-badge { position: static; margin-top: 1rem; display: flex; gap: 1rem; text-align: left; align-items: center; min-width: 0; }
}
.check-dot {
  width: 22px; height: 22px;
  background: var(--mv-primary-lighter);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--mv-primary-dark);
}

/* ============================================================
   FACILITIES
   ============================================================ */
.facility-card {
  border: 1.5px solid #d8e8da !important;
  border-radius: 1.25rem !important;
  transition: all .28s ease;
}
.facility-card:hover {
  border-color: var(--mv-primary-light) !important;
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(27,67,50,.12) !important;
}
.facility-icon {
  width: 52px; height: 52px;
  background: #eaf2eb; border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease; flex-shrink: 0;
}
.facility-card:hover .facility-icon { background: rgba(82,183,136,.15); }
.facility-icon svg { stroke: var(--mv-primary); width: 24px; height: 24px; }

/* ============================================================
   THE AREA
   ============================================================ */
.area-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--mv-primary-lighter); flex-shrink: 0; margin-top: .4rem;
}
.area-img-card { border-radius: 1.25rem; overflow: hidden; box-shadow: 0 8px 40px rgba(27,67,50,.18); }
.area-img-caption { background: rgba(0,0,0,.58); backdrop-filter: blur(4px); color: rgba(255,255,255,.88); font-size: .8125rem; font-weight: 500; padding: .625rem 1rem; text-align: center; }
.area-visual-valley {
  height: 200px;
  background: linear-gradient(150deg, #87ceeb 0%, #b0d8ec 18%, #d8eec0 32%, #c8b060 44%, #b89040 56%, #7aaa50 68%, #3d7030 100%);
}
.area-visual-trail {
  height: 130px;
  background: linear-gradient(135deg, #a8d4ec 0%, #cce8a8 25%, #d4b85a 42%, #c8a040 56%, #6a9840 72%, #3a6828 100%);
}

/* ============================================================
   ACTIVITIES
   ============================================================ */
.activity-card { border-radius: 1.25rem !important; overflow: hidden; transition: all .28s ease; }
.activity-card:hover { transform: translateY(-4px); box-shadow: 0 4px 20px rgba(27,67,50,.14) !important; }
.activity-visual { height: 200px; }
.activity-visual--walking  { background: linear-gradient(135deg, #d4f1c0, #8cc870 35%, #4a9038 65%, #2d6030); }
.activity-visual--cycling  { background: linear-gradient(135deg, #c5e8f0, #87ceeb 35%, #5098c8 65%, #2868a8); }
.activity-visual--pubs     { background: linear-gradient(135deg, #f0e0b0, #d4a030 35%, #a07028 65%, #784820); }
.activity-visual--stratford{ background: linear-gradient(135deg, #e8d8c8, #c8a880 35%, #987048 65%, #685028); }
.activity-visual--food     { background: linear-gradient(135deg, #f5e6c8, #e8c46a 30%, #c8863c 58%, #8a5a28 82%, #5a3818); }
.activity-visual--campden  { background: linear-gradient(135deg, #e8e0d4, #d4c090 35%, #c0a060 65%, #8a6030); }
.activity-cat { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--mv-primary); }

.nearby-tag {
  display: inline-block;
  padding: .4rem 1rem;
  background: #fff; border: 1.5px solid #d8e8da; border-radius: 50px;
  font-size: .875rem; font-weight: 500; color: #3d5140;
  cursor: default; transition: all .15s ease;
}
.nearby-tag:hover { border-color: var(--mv-primary-light); color: var(--mv-primary); }

/* ============================================================
   BOOKING
   ============================================================ */
.pricing-header { background: var(--mv-primary); border-radius: 1rem 1rem 0 0; color: #fff; }
.price-amount { font-family: var(--mv-heading); font-size: 2.5rem; font-weight: 700; line-height: 1; }
@media (min-width: 992px) { .booking-sticky { position: sticky; top: 100px; } }

.contact-method {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem; background: #fff;
  border: 1.5px solid #d8e8da; border-radius: 1rem;
  text-decoration: none; transition: all .15s ease; color: inherit;
}
.contact-method:hover { border-color: var(--mv-primary-light); box-shadow: 0 2px 8px rgba(27,67,50,.08); color: inherit; }
.contact-icon {
  width: 46px; height: 46px; background: rgba(82,183,136,.12);
  border-radius: .75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { stroke: var(--mv-primary); width: 20px; height: 20px; }

.camc-box { background: var(--mv-primary-dark); border-radius: 1rem; }
.camc-icon {
  width: 40px; height: 40px; background: rgba(255,255,255,.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.camc-icon svg { stroke: var(--mv-primary-lighter); width: 20px; height: 20px; }

/* ============================================================
   FIND US
   ============================================================ */
.address-box {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.14);
  border-radius: 1rem; padding: 1.5rem;
}
.address-box svg { stroke: var(--mv-primary-lighter); width: 24px; height: 24px; flex-shrink: 0; }
.map-placeholder {
  aspect-ratio: 4/3; background: rgba(255,255,255,.05);
  border: 2px solid rgba(255,255,255,.1); border-radius: 1.5rem;
  display: flex; align-items: center; justify-content: center;
}
.map-placeholder svg { stroke: rgba(255,255,255,.3); width: 52px; height: 52px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-logo-name { font-family: var(--mv-heading); font-size: 1.875rem; line-height: 1.1; }
.footer-logo-tagline { font-size: .75rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--mv-primary-light); }
.footer-link { color: rgba(255,255,255,.55); text-decoration: none; transition: color .15s ease; font-size: .9375rem; }
.footer-link:hover { color: var(--mv-primary-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  #mainNav, .hero-scroll { display: none !important; }
  .hero > .container { padding-top: 2rem; }
  .hero h1, .hero .lead { color: #000 !important; text-shadow: none !important; }
}
