
body {
  font-family: 'Playfair Display', serif;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
}

.intro {
  text-align: center;
  margin-bottom: 30px;
  background-color: #F4E3D6;/*#D1B6A1;*/
}

.page-title {
  font-size: 2.5rem;
  color:#5c5c5c;/* white;*/
}

section {
  padding: 40px 30px; 
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.description-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 30px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.description-image {
  flex: 0 0 40%;
  max-width: 40%;
}

.description-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 4px solid #cf741a;
  background-color: #f9f9f9;
  padding: 10px;
}

.description-content {
  flex: 0 0 55%; 
  padding: 20px 30px; 
  background-color: rgba(255, 255, 255, 0.8); 
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
  
}

.description-content h2 {
  font-size: 2.5rem;
  color: #E59866; /*#cf741a;*/
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.description-content ul {
  list-style-type: disc; 
  padding-left: 20px;
  color: #5c5c5c; /*black;*/;
}

.description-content ul li {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #5c5c5c ;/*black;*/
  font-family: 'Playfair Display', serif;
}

.description-content p {
  /*font-size: 0.4rem;*/
  color:#5c5c5c;/* black;*/
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}


/* Meals to Expect Section */
.meal-images-container {  margin-top: 50px;width: 100%; overflow: hidden; position: relative; }

.meal-images-container  h2{
  margin:0 0 18px;
  color:#cf741a;
  font-size:28px;
  line-height:1.2;
}
.meal-images {
  display: inline-flex;
  align-items: center;
  gap: 100px;              /* replaces margin-right on images */
  width: max-content;
  animation: scroll 80s linear infinite;
}

.meal-img {
  flex: 0 0 200px;         /* don’t let Bootstrap/img resets stretch/shrink */
  width: 200px !important; /* override any global img rules */
  aspect-ratio: 1 / 1;     /* perfect square without fighting height:auto */
  object-fit: cover;
  border-radius: 8px;
}

/* phones */
@media (max-width: 767.98px) {
  .meal-images { gap: 20px; }
  .meal-img {
    flex: 0 0 120px;
    width: 120px !important;
    /* height is implied by aspect-ratio */
  }
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* because we duplicated once */
}



.explore-programs {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background: none;
  padding: 0;
  box-shadow: none;
}

.btn-explore-programs {
  background-color: #cf741a;
  color: white;
  padding: 15px 25px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 4px;
  display: inline-block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-explore-programs:hover {
  background-color: #FFCC99;
  transform: scale(1.05);
}

.client-testimonials {
  padding: 40px 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.client-testimonials h2 {
  color: #cf741a;
  margin-bottom: 20px;
}

.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial-card {
  background-color: #F4E3D6;
  border-radius: 8px;
  padding: 20px;
  margin: 0 auto;
  width: 90%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-style: italic;
  color: #666;
  margin: 0 auto;
  max-width: 80%;
  line-height: 1.5;
}

/* Adjusting Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #cf741a;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.carousel-control-prev,
.carousel-control-next {
  width: auto; /* Shrink the control button area */
}

.carousel-indicators li {
  background-color: #cf741a;
}

.carousel-indicators .active {
  background-color: #b38659;
}

/* Prevent distortion of elements */
.carousel-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto; /* Ensure the item height adjusts dynamically */
}


@media (max-width: 576px) {
  .container {
    width: 95%;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .description-section {
    flex-direction: column;
    align-items: center;
  }

  .description-image {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .description-content {
    max-width: 100%;
    padding: 20px;
    margin-top: 0;
    position: static;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 1);
  }

  .meal-images-container {
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .meal-images {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
  }
  
  .meal-img {
    width: 45%;
    flex-shrink: 0;
    object-fit: cover;
  }
}

.carousel-text-section {
  text-align: center;
  color: #333;
}

.cta-section {
  background-color: #f4f4f4;
  padding: 40px 20px;
  border-radius: 8px;
}

.carousel-indicators li {
  background-color: #cf741a;
}

.carousel-indicators .active {
  background-color: #b38659;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #cf741a;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

@media (min-width: 577px) and (max-width: 768px) {
  .container {
    width: 90%;
  }

  .description-section {
    flex-direction: column;
    align-items: center;
  }

  .description-image {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .description-content {
    max-width: 100%;
    padding: 20px;
    margin-top: 0;
    position: static;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 1);
  }

  .meal-images-container {
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .meal-images {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
  }
  
  .meal-img {
    width: 45%;
    flex-shrink: 0;
    object-fit: cover;
  }

  .btn-explore-programs {
    width: 85%;
    bottom: 15px;
    right: 7.5%;
    padding: 15px;
    font-size: 15px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    width: 85%;
  }

  .description-section {
    flex-direction: column;
    align-items: center;
  }

  .description-image {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .description-content {
    max-width: 100%;
    padding: 20px;
    margin-top: 0;
    position: static;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 1);
  }
  
  .meal-images-container {
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .meal-images {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
  }
  
  .meal-img {
    width: 45%;
    flex-shrink: 0;
    object-fit: cover;
  }
}

/* Desktop/Tablet: float at bottom-right (if you want it there) */
@media (min-width: 768px) {
  .explore-programs {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }
}

/* Mobile: make the floating CTA just a slim bar, not a card */
@media (max-width: 767.98px) {
  /* Increase specificity to beat the global `section {}` rule */
  section.explore-programs {
    position: fixed;
    top: 60px;                 /* adjust to your navbar height */
    left: 0;
    right: 0;
    padding: 10px 12px;        /* small padding around the button */
    margin: 0;
    background: transparent;   /* no peach panel */
    border-radius: 0;
    box-shadow: none;
    z-index: 1500;
  }

  /* Button itself */
  section.explore-programs .btn-explore-programs {
    display: block;
    width: 100%;
    text-align: center;
    background: #cf741a;
    color: #fff;
    padding: 14px;
    font-size: 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
  }
}
