@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Quicksand:wght@300..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Quicksand", sans-serif;
  padding: 0px;
  background-color: #fff9ef;
}

a {
  text-decoration: none;
}
p,
li,
.section-subtitle {
  font-size: 18px;
}
li {
  margin-bottom: 8px;
}

section {
  padding: 4rem 2rem;
}
/* Navigation Styles */
.navbar {
  background: white;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
}

.infinity-logo {
  width: 50px;
  height: 50px;
}

.navbar-nav .nav-link {
  color: #333;
  margin: 0 1rem;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #5cb8b2;
}

.btn-register {
  background-color: #2f7f9c;
  color: #fff;
  padding: 10px 14px 10px 24px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 212, 124, 0.4);
    color: #fff;
}

.btn-register .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background: #417572;
  border-radius: 50%;
  font-size: 12px;
  padding: 4px;
}
.btn-register i {
    color: #fff;
    line-height: 1;
    display: flex;
}
/* Hero Banner Styles */
.hero-banner {
  height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../images/banner.jpg") no-repeat 50% center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-content {
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}
.hero-content * {
    color: #fff;
}
.hero-content h1 {
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 300;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.hero-date {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.registration-card {
  border-radius: 20px;
  position: absolute;
  bottom: -85px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  z-index: 9;
  display: inline-block;
  color: red;
  margin: 20px;
  filter: url(#round);
}

.triangle::before {
  content: "";
  display: block;
  background: #ffffff;
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  width: 100%;
  height: 194px;
}
.caption_content {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.registration-card .btn-register {
  margin-bottom: 1rem;
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  top: 104px;
  max-width: 225px;
}

.registration-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Decorative leaf element */
.leaf-decoration {
  position: absolute;
  bottom: -50px;
  left: 100px;
  width: 80px;
  height: 80px;
  opacity: 0.7;
}

/* Possibilities Section */
.possibilities-section {
  background: #fafafa;
  position: relative;
  text-align: center;
}

.section-title {
  font-size: 46px;
  font-weight: 500;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  font-family: "Quicksand", sans-serif;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
}

.section-subtitle {
  color: #262626;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

/* Integrative Health Section */
.integrative-section {
  background: white;
}

.infinity-diagram {
  max-width: 400px;
  margin: 0 auto;
}

.infinity-diagram svg {
  width: 100%;
  height: auto;
}

.integrative-title {
  font-size: 2rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 0.5rem;
}

.integrative-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 2rem;
}

.integrative-list {
  list-style: none;
  padding: 0;
}

.integrative-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 6px;
    line-height: 1.7;
    color: #262626;
    list-style: none;
}

.integrative-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #262626;
  font-size: 1.5rem;
  line-height: 1;
}

.website-link {
  color: #5cb8b2;
  text-decoration: underline;
  transition: color 0.3s;
}

.website-link:hover {
  color: #4a9d98;
}

/* Facilitators Section */
.facilitators-section {
  position: relative;
  overflow: hidden;
  background: #e7f4ea;
  background-repeat: repeat-y;
}

.facilitator-card {
  background: white;
  border-radius: 15px;
  padding: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.facilitator-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.facilitator-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
  padding: 15px;
  padding-bottom: 0px;
}

.facilitator-image img {
  width: 100%;
  height: 275px;
  object-fit: cover;
  border-radius: 15px;
}
.facilitator_content {
  position: relative;
  filter: url(#round);
  background-color: #fff;
}

.facilitator-name {
  font-size: 18px;
  font-weight: 600;
  color: #010101;
  margin: 1.5rem 1.5rem 1rem;
  text-align: center;
}

.facilitator-bio {
  font-size: 16px;
  line-height: 1.6;
  color: #262626;
  padding: 0 1.5rem 1.5rem;
  text-align: center;
  flex-grow: 1;
  margin: 0px;
}

.retreat-section {
  background-color: #e7f4ea;
}
.policy-list {
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.policy-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.policy-list .icon {
  font-size: 28px;
  font-weight: 600;
  color: #4aa381;
  line-height: 1.4;
}

.policy-list p {
  text-align: left;
  margin: 0;
  color: #3f4f46;
  font-size: 16px;
  line-height: 1.7;
}
.retreat-img,
.residence-img {
  max-width: 400px;
  margin: 0px auto;
}
/* Pricing Section */
.pricing-section {
  background: #e7f4ea;
}

.pricing-card {
  background: #fffbf3;
  border-radius: 15px;
  padding: 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #f6ead0;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pricing-title {
  font-size: 32px;
  font-weight: 400;
  color: #010101;
  line-height: 38px;
}
.pricing-title span {
  font-size: 18px;
}

.cta-section {
  margin: 10px 100px;
}
.cta-details {
  padding: 40px 120px;
  border-radius: 20px;
  background-color: #e7f4ea;
}

/* Responsive Design */
@media only screen and (max-width: 1200px) {
}
@media (max-width: 768px) {
  .navbar {
    padding: 0;
  }
  .navbar-brand img {
    height: 35px;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-date {
    font-size: 1rem;
  }

  .registration-card {
    padding: 1.5rem;
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .integrative-title {
    font-size: 1.5rem;
  }

  .integrative-subtitle {
    font-size: 1.2rem;
  }
  .cta-section {
    margin: 20px 60px;
  }
  .cta-details {
    padding: 32px;
  }
}
@media only screen and (max-width: 576px) {
  .cta-section {
    margin: 10px 20px;
  }
  .cta-details {
    padding: 16px;
  }
}
