/*
Theme Name: Psi-Tour
Theme URI: https://example.com/psi-tour
Author: Your Studio
Author URI: https://example.com
Description: Landing-page style theme for eco-psychology retreat tours. Hero, feature strip, programs, "why us" and testimonials sections are all editable via the Customizer, Menus and Widgets.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: psi-tour
*/

:root{
  --cream:#f7f4ec;
  --cream-2:#f0ece1;
  --forest:#2e4531;
  --forest-deep:#22331f;
  --moss:#5c7a52;
  --moss-light:#8aa079;
  --ink:#26301f;
  --stone:#6b6f64;
  --line:#dbd6c7;
  --display: "Cormorant Garamond", serif;
  --body: "Manrope", sans-serif;
}

*{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
}

h1,h2,h3,.display-font{
  font-family: var(--display);
  font-weight: 600;
  color: var(--forest-deep);
}

a{ text-decoration:none; }

.btn{
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 600;
  padding: 0.7rem 1.6rem;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all .25s ease;
}
.btn-forest{
  background: var(--forest);
  color:#fff;
  border:1px solid var(--forest);
}
.btn-forest:hover{
  background: var(--forest-deep);
  color:#fff;
  transform: translateY(-1px);
}
.btn-outline-forest{
  background: transparent;
  border: 1.5px solid var(--forest);
  color: var(--forest);
}
.btn-outline-forest:hover{
  background: var(--forest);
  color:#fff;
}
.btn-ghost-light{
  background: rgba(255,255,255,.12);
  color:#fff;
  border: 1px solid rgba(255,255,255,.55);
}
.btn-ghost-light:hover{
  background: rgba(255,255,255,.22);
  color:#fff;
}

/* ---------- Navbar ---------- */
.navbar-psy{
  position:absolute;
  top:0; left:0; right:0;
  z-index: 20;
  padding: 1.4rem 0;
}
.brand-mark{
  display:flex; align-items:center; gap:.6rem;
}
.brand-mark svg{ width:34px; height:34px; flex-shrink:0; }
.brand-mark img.custom-logo{
  display:block;
  height:44px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  flex-shrink:0;
}
.brand-text .name{
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  color:#fff;
  line-height:1;
  display:block;
}
.brand-text .tagline{
  font-size: .68rem;
  color: rgba(255,255,255,.75);
  letter-spacing: .04em;
  display:block;
}
.nav-links{ list-style:none; margin:0; padding:0; display:flex; }
.nav-links li{ margin:0; }
.nav-links a{
  color: rgba(255,255,255,.92);
  font-size: .95rem;
  font-weight: 500;
  margin: 0 .9rem;
  position:relative;
}
.nav-links a::after{
  content:"";
  position:absolute; left:0; bottom:-4px;
  width:0; height:1px;
  background:#fff;
  transition: width .25s ease;
}
.nav-links a:hover::after{ width:100%; }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height: 92vh;
  display:flex;
  align-items:flex-end;
  padding-bottom: 4.5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(20,28,18,.55) 0%, rgba(20,28,18,.15) 30%, rgba(20,28,18,.6) 100%);
}
.hero .container{ position:relative; z-index:2; }
.hero-eyebrow{
  color: var(--moss-light);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
}
.hero h1{
  color:#fff;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.03;
  margin-bottom: .35rem;
}
.hero p.lead-text{
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
  max-width: 480px;
  font-weight: 400;
}
.play-link{
  display:inline-flex; align-items:center; gap:.6rem;
  color:#fff; font-weight:600; font-size:.95rem;
}
.play-circle{
  width:42px; height:42px; border-radius:50%;
  border:1.5px solid rgba(255,255,255,.7);
  display:flex; align-items:center; justify-content:center;
}

/* ---------- Features strip (widget area) ---------- */
.features-strip{
  background: var(--cream-2);
  padding: 4rem 0;
  border-bottom: 1px solid var(--line);
}
.feature-item svg,
.feature-item img{
  width:52px; height:52px;
  object-fit: contain;
  color: var(--forest);
  margin-bottom: 1.1rem;
}
.feature-item h3{
  font-size: 1.15rem;
  margin-bottom:.5rem;
}
.feature-item .widget-title, .feature-item h4{
  font-family: var(--display);
  font-size: 1.15rem;
  margin-bottom:.5rem;
  color: var(--forest-deep);
}
.feature-item p{
  color: var(--stone);
  font-size: .92rem;
  line-height:1.55;
}
.feature-item{ margin-bottom: 1rem; }

/* ---------- Section titles ---------- */
.section-title-wrap{
  text-align:center;
  max-width: 620px;
  margin: 0 auto 3.2rem;
}
.section-title-wrap h2{
  font-size: clamp(2rem, 3.5vw, 2.7rem);
}
.section-title-wrap p{
  color: var(--stone);
}
.leaf-divider{
  color: var(--moss);
  margin: .6rem 0 .9rem;
}

/* ---------- Programs (widget area) ---------- */
.program-card{
  background:#fff;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid var(--line);
  height:100%;
  transition: box-shadow .25s ease, transform .25s ease;
}
.program-card:hover{
  box-shadow: 0 18px 40px -18px rgba(46,69,49,.35);
  transform: translateY(-3px);
}
.program-card .widget-title{
  font-family: var(--display);
  font-size:1.3rem;
  margin: 1.5rem 1.4rem 0.5rem;
  color: var(--forest-deep);
}
.program-card .program-body-content{
  padding: 0 1.4rem 1.6rem;
}
.program-img-wrap{
  position:relative;
  height: 230px;
  overflow:hidden;
}
.program-img-wrap img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .5s ease;
}
.program-card:hover .program-img-wrap img{ transform: scale(1.06); }
.badge-popular{
  position:absolute; top:14px; left:14px;
  background: var(--forest);
  color:#fff;
  font-size:.72rem;
  font-weight:600;
  padding: .35rem .8rem;
  border-radius: 999px;
}
.program-meta{
  display:flex; gap:1.2rem;
  font-size:.82rem;
  color: var(--stone);
  margin: .9rem 0 1.2rem;
  flex-wrap:wrap;
}
.program-meta span{ display:inline-flex; align-items:center; gap:.4rem; }
.program-meta svg{ width:15px; height:15px; color:var(--moss); }

/* ---------- Why choose (widget area) ---------- */
.why-section{
  background: var(--cream-2);
  padding: 5rem 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.why-item{ text-align:center; margin-bottom:1rem; }
.why-item svg,
.why-item img{
  width:56px; height:56px;
  object-fit: contain;
  border-radius:50%;
  background:#fff;
  border:1px solid var(--line);
  padding: 14px;
  margin: 0 auto 1rem;
  color: var(--forest);
  display:block;
}
.why-item .widget-title{
  font-family: var(--body);
  font-size: .98rem;
  font-weight:700;
  color: var(--forest-deep);
  margin-bottom:.4rem;
  display:block;
}
.why-item p{
  font-size:.85rem;
  color: var(--stone);
  line-height:1.5;
}

/* ---------- Testimonials (widget area) ---------- */
.testimonial-section{
  position:relative;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  color:#fff;
  text-align:center;
}
.testimonial-section::before{
  content:"";
  position:absolute; inset:0;
  background: rgba(20,28,18,.72);
}
.testimonial-section .container{ position:relative; z-index:2; }
.quote-mark{
  font-family: var(--display);
  font-size: 4.5rem;
  color: var(--moss-light);
  line-height:1;
}
.testimonial-item .widget-title{ display:none; }
.testimonial-text, .testimonial-item p{
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  max-width: 780px;
  margin: 0 auto 1.4rem;
  line-height:1.4;
}
.testimonial-author{ color: rgba(255,255,255,.75); font-size:.95rem; }
.test-nav-btn{
  width:44px; height:44px; border-radius:50%;
  border:1px solid rgba(255,255,255,.5);
  background:transparent;
  color:#fff;
  display:flex; align-items:center; justify-content:center;
}
.test-nav-btn:hover{ background: rgba(255,255,255,.15); }
.carousel-indicators-custom{
  display:flex; justify-content:center; gap:.4rem; margin-top:2rem;
}
.carousel-indicators-custom button{
  width:8px; height:8px; border-radius:50%;
  background: rgba(255,255,255,.4);
  border:0; padding:0;
}
.carousel-indicators-custom button.active{ background:#fff; width:22px; border-radius:5px; }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--forest-deep);
  color: rgba(255,255,255,.82);
  padding: 4.5rem 0 0;
  position:relative;
  overflow:hidden;
}
.site-footer h5{
  color:#fff;
  font-family: var(--body);
  font-size: .95rem;
  font-weight:700;
  margin-bottom:1.1rem;
}
.site-footer ul{ list-style:none; padding:0; margin:0; }
.site-footer ul li{ margin-bottom:.6rem; }
.site-footer ul li a{
  color: rgba(255,255,255,.72);
  font-size:.9rem;
}
.site-footer ul li a:hover{ color:#fff; }
.footer-desc{ font-size:.88rem; color: rgba(255,255,255,.68); max-width: 280px; }
.social-row{ display:flex; gap:.7rem; margin-top:1.3rem; }
.social-row a{
  width:36px; height:36px; border-radius:50%;
  border:1px solid rgba(255,255,255,.28);
  display:flex; align-items:center; justify-content:center;
  color:#fff;
}
.social-row a:hover{ background: rgba(255,255,255,.12); }
.contact-row{ display:flex; gap:.7rem; margin-bottom:.85rem; font-size:.9rem; color: rgba(255,255,255,.78); }
.contact-row svg{ width:17px; height:17px; flex-shrink:0; color: var(--moss-light); margin-top:.15rem; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 3.2rem;
  padding: 1.3rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
.footer-mountains{
  position:absolute; right:-40px; bottom:0;
  opacity:.15;
  width: 420px;
  pointer-events:none;
}

/* ---------- Generic page/single content (non front page) ---------- */
.site-content-basic{
  padding: 8rem 0 5rem;
  min-height: 50vh;
}
.site-content-basic h1{ margin-bottom:1.5rem; }

@media (max-width: 991px){
  .nav-links{ display:none !important; }
  .hero{ min-height: 82vh; }
  .footer-mountains{ display:none; }
}
