/* === GLOBAL RESET === */
body.page {
  background: #fff8e5 !important; /* same as contact page beige */
  margin: 0 !important;
  padding: 0 !important;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

.ast-container,
.entry-content,
.site-content,
.content-area {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

/* === HERO SECTION (FULLSKY STYLE) === */
.ppa-hero.fullsky {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 90vh;
  overflow: hidden;
}

.ppa-hero.fullsky video.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ppa-hero.fullsky .hero-overlay {
  position: absolute;
  inset: 0;
}

.ppa-hero.fullsky .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}

.ppa-hero.fullsky h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.ppa-hero.fullsky p {
  font-size: 1.25rem;
  font-weight: 400;
}

/* === SECTION BASE STYLE === */
section.fade-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 100px 20px;
  background: #fff8e5;
}

section.fade-section:nth-child(even) {
  background: #ffffff;
}

section.fade-section h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  position: relative;
}

section.fade-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #f4c542;
  margin: 10px auto 0;
  border-radius: 2px;
}

section.fade-section p {
  max-width: 900px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

/* === INSTRUCTORS GRID === */
.instructor-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.instructor-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  max-width: 300px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instructor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.instructor-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-bottom: 5px solid #f4c542;
}

.instructor-card p {
  padding: 20px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* === CONTACT SECTION (Embed) === */
.ppa-contact-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: linear-gradient(160deg, #fff9e6, #ffffff);
  padding: 80px 0;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .ppa-hero.fullsky h1 {
    font-size: 2.2rem;
  }
  .ppa-hero.fullsky p {
    font-size: 1rem;
  }
  .instructor-grid {
    gap: 20px;
  }
  section.fade-section {
    padding: 80px 20px;
  }
}

@media (max-width: 600px) {
  .ppa-hero.fullsky {
    height: 70vh;
  }
  .instructor-card img {
    height: 200px;
  }
}

