/* ==============================================
   RESET & BASE
   ============================================== */

@font-face {
  font-family: 'Thiccy Thin Flair';
  src: url('../fonts/thiccythinflair-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', serif;
  color: #1f2e1f;
  background: #f6fdf7;
  line-height: 1.6;
}

h4 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  color: #2d4c34;
}

.centered-list {
  list-style-position: inside;
  text-align: center;
  padding-left: 0;
}

.centered-list li {
  margin-bottom: 0.5em;
}


/* ==============================================
   NAVIGATION
   ============================================== */

/* Floating navbar with glass effect */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Logo + social icons row */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 30px;
  width: auto;
}

.logo img.main-logo {
  height: 60px;
}

/* Nav container (right side of header) */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Desktop nav links */
nav.nav-links {
  display: flex;
  gap: 15px;
}

nav.nav-links a {
  color: #2d4c34;
  text-decoration: none;
  padding: 10px;
}

nav.nav-links a:hover {
  background-color: #ffffff;
  border-radius: 5px;
}

/* Shared nav link style (used by nav a selector) */
nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #2d4c34;
  font-weight: 600;
  font-family: 'Lora', serif;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #d0eacd;
}

/* Hamburger menu (mobile only) */
.menu-container {
  display: none;
}

.menu-toggle {
  display: block !important;
  width: 50px !important;
  height: auto !important;
  cursor: pointer;
  flex-shrink: 0;
  max-width: none !important;
}

/* Mobile nav overrides */
@media (max-width: 768px) {
  .menu-container {
    display: block;
  }

  nav.nav-links {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    position: absolute;
    top: 60px;
    right: 0;
    padding: 10px;
    z-index: 1000;
  }

  nav.nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: none !important;
  }
}


/* ==============================================
   HERO
   ============================================== */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.7);
}

.hero-content {
  max-width: 700px;
  padding: 2rem;
  animation: fadeUp 1.2s ease-out 0.5s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-content p {
  font-family: 'Oswald', serif;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 100;
}


/* ==============================================
   SECTIONS
   ============================================== */

.section {
  padding: 4rem 2rem;
  text-align: center;
  background: #ffffff;
}

.section:nth-child(even) {
  border-radius: 12px;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2d4c34;
}

.section h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  color: #2d4c34;
}

/* Responsive pathway/content images */
.responsive-img {
  width: 50%;
  height: auto;
  border-radius: 12px;
  vertical-align: middle;
  display: inline;
}

@media (max-width: 768px) {
  .responsive-img {
    width: 100%;
  }
}


/* ==============================================
   SERVICE CARDS & POPUP MODALS
   ============================================== */

.service-list {
  list-style: none;
  margin-top: 1.5rem;
}

.service-list li {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  color: #3f5d43;
  font-family: 'Lora', serif;
}

.popup-modal {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  transition: all 0.3s ease-out;
  z-index: 10;
}

.popup-modal.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.popup-content {
  position: relative;
  width: 90%;
  max-width: 300px;
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
}


/* ==============================================
   TESTIMONIALS
   ============================================== */

.testimonials {
  background: #e6f4e9;
  color: #2d4c34;
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Lora', serif;
}

.testimonial-list blockquote {
  background: #d3e7d1;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  font-style: italic;
  box-shadow: 0 4px 8px rgba(101, 168, 114, 0.2);
}

.testimonial-list blockquote p {
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.testimonial-list blockquote footer {
  font-weight: 600;
  text-align: right;
  font-size: 1rem;
  color: #4a7b4d;
}

@media (min-width: 768px) {
  .testimonial-list {
    flex-direction: row;
    justify-content: space-between;
  }
  .testimonial-list blockquote {
    flex: 1 1 30%;
  }
}


/* ==============================================
   CTA BUTTONS
   ============================================== */

.cta-button {
  width: 40%;
  background: #7ea288;
  opacity: .9;
  color: #fff;
  padding: 0.75rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  font-family: 'Lora', serif;
  cursor: pointer;
  transition: background 0.3s ease;
  font-weight: 600;
  text-decoration: none;
}

.cta-button2 {
  display: block;
  width: 40%;
  background: #3f5d43;
  opacity: .9;
  color: #fff;
  padding: 0.75rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  font-family: 'Lora', serif;
  cursor: pointer;
  transition: background 0.3s ease;
  font-weight: 600;
  text-decoration: none;
}

.cta-button:hover {
  background: #d0eacd;
}


/* ==============================================
   CREDENTIALS & SOCIAL
   ============================================== */

.cta-credentials-inline {
  margin: 2rem auto 0.25rem;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.8rem;
}

.cta-credentials-inline .cta-button2 {
  width: auto;
  white-space: nowrap;
}

.credentials-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.badge-csmc,
.badge-nbc-hwc {
  width: min(100%, 260px);
  height: auto;
}

.availability-line {
  margin: 0.2rem 0 0.8rem;
  padding: 15px;
}

@media (max-width: 768px) {
  .cta-credentials-inline {
    gap: 0.75rem;
  }

  .credentials-badges-row {
    gap: 0.55rem;
  }

  .badge-csmc,
  .badge-nbc-hwc {
    width: min(100%, 220px);
  }
}


/* ==============================================
   BOOKING FORM
   ============================================== */

.book-section {
  background: #f1f9f3;
  font-family: 'Lora', serif;
}

.booking-form {
  display: flex;
  flex-direction: column;
  
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.booking-form label {
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form button {
  padding: 0.6rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: 'Poppins', sans-serif;
}

.booking-form button {
  background-color: #4a90e2;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.booking-form button:hover {
  background-color: #357ab8;
}

/* Flatpickr calendar inline display */
.flatpickr-calendar.inline {
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  width: 100% !important;
  max-width: 100%;
}

#preferred_time {
  width: 100%;
}

.coaching-description {
  text-align: center;
}

/* ==============================================
   CONSISTENT SECTION CONTENT SPACING
   ============================================== */

/* Intro section: image block and text block spacing */
.intro-images {
  margin: 2rem 0;
  dynamic-range-limit: constrained;
}

/* Decorative image blocks (leaf, etc.) */
.decorative-img-block {
  margin: 2rem 0;
}

/* Top spacing for coaching-content block after subtitle */
.coaching-content {
  margin-top: 2rem;
}

/* Vine/logo decorative divider row */
.vine-row {
  margin: 2rem auto;
}

.outcomes{
  margin: 2rem;  
}

/* Testimonials subsection */
.testimonials-subsection {
  background-color: #f1f9f3;
  border-radius: 8px;
  padding: 20px 20px;
  text-align: center;
}

.container-section {
  background-color: #f1f9f3;
  border-radius: 8px;
  padding: 20px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-subsection h2 {
  margin-bottom: 1.5rem;
}

.testimonials-subsection p {
  margin-bottom: 1.5rem;
}

.testimonials-subsection p:last-child {
  margin-bottom: 1.5rem;
}


/* ==============================================
   FOOTER
   ============================================== */

.footer {
  text-align: center;
  padding: 1.5rem;
  background: #ffffff;
  font-size: 0.9rem;
  color: #6d8a6e;
  border-top: 1px solid #e0f0e3;
  font-family: 'Lora', serif;
}


/* ==============================================
   ANIMATIONS
   ============================================== */

.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
