/* =========================================================
   Valleys Paragliding — Global CSS
   Designed & Developed by NTJ Digital
   ========================================================= */

:root{
  --vp-bg:#f5f3ea;
  --vp-surface:#ffffff;
  --vp-text:#1e1f1c;
  --vp-muted:#4b4f45;

  --vp-primary:#243c31;        /* header/footer */
  --vp-primary-2:#2f4f3f;      /* accents */
  --vp-accent:#7aa33a;         /* buttons */
  --vp-accent-2:#5e8c2f;

  --vp-border:rgba(30,31,28,0.12);
  --vp-radius:14px;
  --vp-shadow:0 10px 30px rgba(0,0,0,0.10);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0 !important;
  background:var(--vp-bg) !important;
  color:var(--vp-text) !important;
  font-family:"Segoe UI",Tahoma,Verdana,sans-serif !important;
  line-height:1.65;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:var(--vp-accent-2); }
a:hover{ color:var(--vp-accent); }
:focus-visible{ outline:3px solid rgba(122,163,58,0.65); outline-offset:3px; }

/* Header */
.vp-header{
  background:var(--vp-primary);
  position:sticky;
  top:0;
  z-index:999;
  box-shadow:0 2px 10px rgba(0,0,0,0.18);
}
.vp-header-inner{
  width:min(1200px, 92%);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.vp-logo img{ height:60px; width:auto; }

/* Nav */
.vp-nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.vp-nav a{
  color:#fff !important;
  text-decoration:none !important;
  font-weight:650;
  padding:8px 10px;
  border-radius:10px;
  transition:background .2s ease, transform .2s ease;
}
.vp-nav a:hover{ background:rgba(255,255,255,0.12); transform:translateY(-1px); }
.vp-nav a.active{
  background:rgba(255,255,255,0.18);
  box-shadow:inset 0 0 0 2px rgba(255,255,255,0.15);
}

/* Hero slider */
.vp-hero{
  position:relative;
  height:clamp(340px, 55vh, 600px);
  overflow:hidden;
  background:#000;
}
.vp-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1.1s ease-in-out;
}
.vp-slide.active{ opacity:1; }
.vp-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.25), rgba(0,0,0,0.55));
}
.vp-hero-content{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 14px;
  color:#fff;
  text-shadow:0 10px 22px rgba(0,0,0,0.55);
}
.vp-hero-content h1{
  margin:0 0 10px;
  font-size:clamp(2rem, 1.2rem + 2vw, 3.2rem);
  letter-spacing:.3px;
}
.vp-hero-content p{
  margin:0 auto 16px;
  max-width:70ch;
  color:rgba(255,255,255,0.92);
  font-size:clamp(1rem, .95rem + .35vw, 1.25rem);
}

/* Buttons */
.vp-btn,.vp-btn-small{
  display:inline-block;
  background:var(--vp-accent);
  color:#fff !important;
  text-decoration:none !important;
  font-weight:900;
  border-radius:999px;
  border:2px solid transparent;
  box-shadow:0 10px 26px rgba(122,163,58,0.30);
  transition:transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.vp-btn{ padding:12px 22px; }
.vp-btn-small{ padding:10px 16px; font-size:.95rem; box-shadow:none; }
.vp-btn:hover,.vp-btn-small:hover{
  background:var(--vp-accent-2);
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(94,140,47,0.35);
}

/* Content */
.vp-content{
  width:min(1100px, 92%);
  margin:0 auto;
  padding:56px 0;
}
.vp-content h1,.vp-content h2,.vp-content h3{ color:var(--vp-primary); }
.vp-content h2{ margin:0 0 12px; font-size:clamp(1.5rem, 1.05rem + 1vw, 2.1rem); }
.vp-content p{ margin:0 0 14px; color:var(--vp-muted); }
.vp-content ul{ margin:12px 0 22px 22px; color:var(--vp-muted); }
.vp-content li{ margin:8px 0; }

/* Cards / grids */
.vp-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:24px;
}
.vp-card{
  background:var(--vp-surface);
  border:1px solid var(--vp-border);
  border-radius:var(--vp-radius);
  padding:22px;
  box-shadow:var(--vp-shadow);
}
.vp-card h3{ margin:0 0 10px; }
.vp-card p{ margin:0 0 12px; }

/* Contact layout */
.vp-contact-grid{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  margin-top:16px;
}
.vp-contact-details,.vp-contact-form{
  flex:1 1 360px;
  background:var(--vp-surface);
  border:1px solid var(--vp-border);
  border-radius:var(--vp-radius);
  padding:22px;
  box-shadow:var(--vp-shadow);
}

/* Contact Form 7 styling */
.wpcf7 input, .wpcf7 textarea, .wpcf7 select{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(30,31,28,0.18);
  background:#fff;
  font-size:1rem;
}
.wpcf7 textarea{ min-height:140px; resize:vertical; }
.wpcf7 input[type="submit"]{
  width:auto;
  cursor:pointer;
  background:var(--vp-accent);
  color:#fff;
  border:none;
  padding:12px 18px;
  border-radius:999px;
  font-weight:900;
}
.wpcf7 input[type="submit"]:hover{ background:var(--vp-accent-2); }

/* Gallery */
.vp-gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:16px;
  margin-top:16px;
}
.vp-gallery-img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:12px;
  border:1px solid var(--vp-border);
  box-shadow:var(--vp-shadow);
  cursor:pointer;
  transition:transform .2s ease;
}
.vp-gallery-img:hover{ transform:scale(1.02); }

/* Lightbox */
#vp-lightbox{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.92);
  z-index:9999;
  padding:60px 16px 16px;
  align-items:center;
  justify-content:center;
}
#vp-lightbox.open{ display:flex; }
#vp-lightbox-img{
  max-width:min(1100px, 92%);
  max-height:80vh;
  border-radius:12px;
}
.vp-lightbox-close{
  position:fixed;
  top:16px;
  right:20px;
  font-size:42px;
  color:#fff;
  cursor:pointer;
  user-select:none;
}

/* Footer */
.vp-footer{
  background:var(--vp-primary);
  color:#fff;
  text-align:center;
  padding:44px 18px;
}
.vp-footer p{ margin:0 0 10px; color:rgba(255,255,255,0.92); }
.vp-footer a{ color:#dff4c7 !important; text-decoration:none !important; }
.vp-footer a:hover{ text-decoration:underline !important; }

.vp-footer-logos{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  margin:12px 0 6px;
}

/* Slightly larger BHPA + NTJ per your request */
.vp-footer-logos img{ height:50px; width:auto; }
.vp-ntj{ margin-top:16px; opacity:.8; }
.vp-ntj img{ height:32px; width:auto; }
.vp-ntj:hover{ opacity:1; }

/* Mobile */
@media (max-width:820px){
  .vp-header-inner{ flex-direction:column; align-items:flex-start; }
  .vp-nav ul{ justify-content:flex-start; }
}