/* ─── GOOGLE FONTS ───────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;600&display=swap');

/* ─── BRAND COLOURS ──────────────────────────────────────────────────────── */
:root {
  --teal:       #2bbec8;
  --teal-dark:  #229aa3;
  --green:      #5aaf5a;
  --dark:       #1c2b35;
  --mid:        #4a4a4a;
  --light-bg:   #f7fafa;
}

/* ─── BODY ───────────────────────────────────────────────────────────────── */
body {
  font-family: 'Open Sans', sans-serif;
  color: #2d2d2d;
}

/* ─── UTILITY ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-teal   { background: var(--teal); color: #fff !important; }
.btn-teal:hover { background: var(--teal-dark); color: #fff !important; }
.btn-outline { background: transparent; color: #fff !important; border: 2px solid #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ─── EYEBROW LABEL ───────────────────────────────────────────────────────── */
.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

/* ─── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 90vh;
  min-height: 560px;
  overflow: hidden;
}
.hero-img {
  background: url('https://positiveshiftacademy.com/wp-content/uploads/2026/02/cover-shot.png') center/cover no-repeat, linear-gradient(135deg, #1c2b35 0%, #2bbec8 100%);
  position: absolute; inset: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.1) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  max-width: 700px;
}
.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.7;
}

/* ─── SPLIT SECTIONS ──────────────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
}
.split-content.bg-light { background: var(--light-bg); }
.split-content.bg-white { background: #fff; }
.split-img {
  position: relative;
  overflow: hidden;
  background: #b0dde0;
  min-height: 300px;
}
.split-img.placeholder::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: rgba(43,190,200,0.45);
  text-align: center;
  padding: 20px;
  white-space: pre-line;
}
.split-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.split-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.split-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 32px;
  max-width: 440px;
}

/* ─── PROGRAMS GRID ───────────────────────────────────────────────────────── */
.programs-section {
  background: var(--light-bg);
  padding: 80px 64px;
  text-align: center;
}
.programs-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.programs-section .sub {
  color: var(--mid);
  font-size: 1rem;
  margin-bottom: 52px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto 44px;
}
.program-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: left;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--dark) 100%);
  position: relative;
}
.card-img span {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 12px;
}
.card-body { padding: 24px; }
.card-body h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.card-body p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ─── DISCOVERY CALL BANNER ───────────────────────────────────────────────── */
.banner {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.banner-bg {
  position: absolute; inset: 0;
  background: url('https://positiveshiftacademy.com/wp-content/uploads/2026/02/Tim-Beach.png') center/cover no-repeat, linear-gradient(135deg, #1c2b35 0%, #2bbec8 70%);
}
.banner-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
}
.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 60px 40px;
}
.banner-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.banner-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ─── TESTIMONIALS ────────────────────────────────────────────────────────── */
#testimonials {
  padding: 80px 64px;
  background: #fff;
  text-align: center;
}
#testimonials h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 48px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--light-bg);
  border-radius: 10px;
  padding: 32px 28px;
  text-align: left;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  line-height: 1;
  color: var(--teal);
  opacity: 0.25;
  position: absolute;
  top: 12px; left: 20px;
  font-family: Georgia, serif;
}
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 20px;
  padding-top: 24px;
}
.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── CONTACT SECTION ─────────────────────────────────────────────────────── */
#contact {
  background: var(--light-bg);
  padding: 64px 48px;
  text-align: center;
}
#contact h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
#contact p {
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-content { padding: 0 32px; }
  .split { grid-template-columns: 1fr; }
  .split-img { min-height: 300px; order: -1; }
  .split-content { padding: 48px 32px; }
  .programs-section { padding: 60px 24px; }
  #testimonials { padding: 60px 24px; }
  #contact { padding: 48px 24px; }
}


/* ─── HOME PAGE: FULL-WIDTH LAYOUT & HIDE PAGE TITLE ──────────────────────── */

/* Hide the "Home" page title banner */
.home .entry-hero.page-hero-section {
  display: none !important;
}

/* Remove container constraints so sections go edge-to-edge */
.home .content-container.site-container {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
.home .entry-content-wrap {
  padding: 0 !important;
  max-width: 100% !important;
}
.home .entry-content.single-content {
  max-width: 100% !important;
  padding: 0 !important;
}
.home article.entry {
  padding: 0 !important;
}

/* Remove top gap on home page */
.home .content-area {
  margin-top: 0 !important;
}


/* — ABOUT PAGE: hide Kadence theme title header and remove gap — */
.page-id-1 .hero-container { display: none; }
.page-id-1 .entry-content-wrap { padding-top: 0 !important; }
.page-id-1 .content-area { margin-top: 0 !important; }