
@font-face {
  font-family: 'LEMON MILK';
  src: url('LEMONMILK-Bold.otf') format('opentype');
}

body {
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  color: #1c1c1c;
  background: #fdfcfb;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.6em;
}



p {
  margin-block-end: 1em;
}

.sticky-header {
  background: url('grain.png') center/cover;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 1rem 0;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.hero {
  background: url('grain.png'), #f98e71;
  color: white;
  text-align: center;
  padding: 0;
}

.hero-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1rem;
  height: 6p00px;
}

.hero-img {
  width: 450px;
  max-width: 80%;
  margin-bottom: 2rem;
    animation: pulse 5s ease-in-out infinite;
        margin-top: -40px;

}


@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

img {
  max-width: 100%;
  padding-top: 20px;
}

@media (max-width: 768px) {
  img {
  max-width: 100%;
  padding-top: 20px;
}
}

.hero-text h1 {
  font-family: 'LEMON MILK', sans-serif;
  font-size: 3rem;
  margin: 0;
      margin-bottom: -10px;
}

.hero-text h2 {
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0.5rem 0;
}

.subtitle {
  font-style: italic;
  font-size: 1rem;
  margin-top: 1rem;
}

.section {
    padding: 0.3rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}

.alternate {
  background: #ec856f;
  border-radius: 10px;
}

#schedule {
  color: white;
}

#pricing {  
  color: white;
}

#pricing p {
  font-size: 18px;
}

#schedule p {
  font-size: 18px;
}

ul {
    padding-inline-start: 20px;
}

ul li {
  margin-bottom: 0.75rem;
}


.btn.btn-light {
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
      margin-bottom: 10px;

}


footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #666;
}


.site-footer {
  background: #f7f7f7;
  padding: 3rem 1rem;
  text-align: center;
  margin-top: 4rem;
  font-size: 0.95rem;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-logos img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-text p {
  margin: 0.3rem 0;
  color: #555;
}

.footer-text a {
  color: #333;
  text-decoration: underline;
}


.note {
  font-size: 0.65rem;
  font-style: italic;
  color: white;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0em;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text h2 {
    font-size: 1.25rem;
  }
}

.flex-row {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.text-col {
  flex: 1 1 50%;
  min-width: 300px;
}

@media (max-width: 768px) {
  .flex-row {
    flex-direction: column;
  }
}


.btn-light {
  display: inline-block;
  background: white;
  color: #ec856f;
  font-weight: 700;
  border-radius: 4px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-light:hover {
  background: black;
  color: white;
}

.btn-register {
  padding: 1.2rem 2.4rem;
  font-size: 1.2rem;
}




.webinar-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.webinar-text {
  flex: 2;
}

.webinar-btn {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .webinar-row {
    flex-direction: column;
  }

  .webinar-btn {
    justify-content: flex-start;
    margin-top: 1rem;
  }
}




.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.custom-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.25em 0.45em;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s ease;
  user-select: none;
}

.custom-play:hover {
  background: rgba(0, 0, 0, 0.7);
}


#nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #222f3e;
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2000;
  cursor: pointer;
}

@media (max-width: 768px) {
  #nav-toggle {
    display: block;
  }

  nav#main-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #222f3e;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 1rem;
  }

  nav#main-nav.open {
    display: flex;
  }

  nav#main-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
}



.curriculum-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.curriculum-box {
  flex: 1 1 300px;
  background-color: #eee3d2;
  padding: 1.5rem;
  border-radius: 6px;
}



.schedule-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
      padding-bottom: 30px;
}

.schedule-block {
  flex: 1 1 100px;
}

.schedule-block .btn {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .schedule-row {
    flex-direction: column;
  }
}


hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 3px dotted #ec856f;
}



.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.team-member {
  flex: 1 1 45%;
  background: #f7f7f7;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.team-member h3 {
  margin: 0.5rem 0 0;
}

.team-member .role {
  font-weight: bold;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
}

.team-member .short-bio {
  font-size: 0.95rem;
  color: #333;
}

@media (max-width: 768px) {
  .team-grid {
    flex-direction: column;
  }

  .team-member {
    flex: 1 1 100%;
  }
}



.team-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.about-person {
  flex: 1 1 300px;
  max-width: 400px;
  box-sizing: border-box;
  text-align: left;
}

.about-img {
  width: 200px;
  height: auto;
  border-radius: 9px;
  display: block;
  margin-bottom: 15px;
}

.about-person h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.about-person p {
  font-size: 1rem;
  line-height: 1.6;
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.about-list li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}


.about-person h3 {
  margin-bottom: 0.3rem;
}

.about-person p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.about-list li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .team-flex {
    flex-direction: column;
    align-items: center;
  }

  .about-person {
    flex: 1 1 100%;
  }

  .about-img {
    width: 100%;
    height: auto;
  }
}



#faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.6;
}

.faqbox {
      background-color: #eee3d2;
    padding: 1.5rem;
    border-radius: 6px;
}



.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: left;
  padding: 1rem 0;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-question.active::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 1rem;
  margin-top: 0;
}




