
.common-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.divider {
  width: 80%;
  height: 1px;
  background-color: #cf741a;
  margin: 20px auto;
}

.profile-section {
  background-color: #F4E3D6;
  padding: 20px 0;
  text-align: center;
}

.profile-container {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.profile-item {
  text-align: center;
}

.profile-pic {
  display: block;
  margin: 0 auto 16px;
  max-width: 160px;
  border-radius: 8px;
}

.profile-item h3 {
  font-family: 'Great Vibes', cursive;
  font-size: 36px;
  font-weight: normal;
  color: #444;
  margin: 0;
}

/* Show only active slide */
#aboutCarousel .carousel-item { display: none; }
#aboutCarousel .carousel-item.active { display: block; }

/* Allow smooth transition for prev/next */
#aboutCarousel .carousel-item-next,
#aboutCarousel .carousel-item-prev,
#aboutCarousel .carousel-item.active.carousel-item-start,
#aboutCarousel .carousel-item.active.carousel-item-end {
  display: block;
}

/* Extra safety for Bootstrap 5.3 */
#aboutCarousel .carousel-item-start,
#aboutCarousel .carousel-item-end {
  display: block;
}

.linkedin-buttons-section {
  margin-top: 40px;
  text-align: center;
}

.linkedin-cta-bottom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background-color: #0A66C2;   /* LinkedIn blue */
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;        /* pill shape */
  text-decoration: none;
  transition: background-color .2s ease, box-shadow .2s ease;
}

.linkedin-cta-bottom:hover {
  background-color: #0957A5;
  box-shadow: 0 4px 12px rgba(10,102,194,.25);
}


.profile-pic-small {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
  transition: none;
}

.about-us-section,
.additional-text,
.split-text,
.colored-block h1,
.colored-block p {
  font-family: 'Playfair Display', serif;
}

.about-us-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
}

.about-text {
  font-size: 20px;
  line-height: 1.8;
}

.linkedin-name {
  font-size: 22px;
  font-weight: bold;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 50%;
  background-color: #F4E3D6 ;
  padding: 40px;
  border-radius: 10px;
}


.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: none;
}

.carousel-item {
  transition: opacity 0.5s ease;
  transform: none !important;
}

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

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

.split-photos {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.split-photos img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.split-photos .slick-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slick-arrow {
  border-radius: 50% !important;
  padding: 10px !important;
  z-index: 10 !important;
  color: #130202 !important;
  border: none !important;
}

.slick-prev {
  left: 15px !important;
}

.slick-next {
  right: 30px !important;
}

.split-text {
  text-align: center;
  padding-top: 20px;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Playfair Display', serif;
  color: #cf741a;
}

.additional-text {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto; 
  color: #5c5c5c;
  text-align: left; 
  line-height: 1.8;
  font-family: 'Playfair Display', serif;
  font-size: 25px;
}

.additional-text h2 {
  font-size: 35px;
  margin-bottom: 20px;
  color: #A0522D;
}

.linkedin-name {
  color: #E59866;
  font-weight: bold;
}

.linkedin-name:hover {
  text-decoration: underline;
}

@media only screen and (min-width: 1024px) {
  .about-us-split {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
    padding: 20px;
  }

  .carousel-container {
    flex: 1;
    margin-right: 20px;
  }

  .split-text {
    flex: 1.5;
    max-width: 600px;
    margin: 0 auto;
  }

  .additional-text {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
  }

  .linkedin-buttons-section {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  
}


@media only screen and (max-width: 1024px) {
  .about-us-split {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .carousel-container {
    margin-bottom: 20px;
  }

  .split-text {
    max-width: 100%;
  }

  .linkedin-buttons-section {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  
}

@media only screen and (max-width: 768px) {
  .profile-container {
    flex-direction: row;
  }
  .profile-pic {
    width: 150px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 4px solid #D1B6A1;
  }

  .linkedin-button {
    width: 100%;
    margin-bottom: 10px;
  }

  .linkedin-buttons-section {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
}

/* ---- fonts (add the link tag to layout head, see below) ---- */
.about-heading {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: 0 0 .25rem;
  color: #1e1e1e;
}

.about-accent {
  font-family: "Lora", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #d27b43;
  margin-bottom: 1rem;
}

/* Card container */
.about-card {
  position: relative;
  border-radius: 18px;
  background: #fff;
  box-shadow:
    0 12px 30px rgba(0,0,0,.06),
    inset 0 0 0 1px rgba(0,0,0,.06);
  overflow: hidden;
}

/* Soft “paper” backdrop */
.about-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,0) 40%),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(0,0,0,.015) 28px 29px);
  pointer-events: none;
}

/* Left accent border with gradient */
.about-card::after {
  content: "";
  position: absolute; top: 0; bottom: 0; left: 0;
  width: 6px;
  background: linear-gradient(180deg, #d27b43, #e6b18e);
}

/* Inner spacing */
.about-card__header { padding: 1.25rem 1.5rem 0; }
.about-card__body   { padding: 1rem 1.5rem 1.5rem; }

/* Text body */
.about-card__body p {
  margin: 0 0 1rem;
  line-height: 1.85;
  color: #2f2f2f;
  font-size: 1.02rem;
}

/* Drop cap on first paragraph for a boutique touch */
.about-card__body p:first-of-type::first-letter {
  font-family: "Playfair Display", serif;
  float: left;
  font-size: 3rem;
  line-height: .9;
  padding-right: .35rem;
  padding-top: .1rem;
  color: #d27b43;
}

@media (max-width: 576px) {
  .about-card__body p {
    font-size: 1rem;       /* 16px base */
    line-height: 1.6;      /* comfortable spacing */
    margin-bottom: 1rem;
  }
}

.btn-connect {
  background-color: #d27b43 !important;  /* warm accent */
  border: none !important;
  color: #2b1b0f !important;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-connect:hover {
  background-color: #b55f28 !important;  /* darker shade */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

@media (max-width: 576px) {
  .btn-connect {
    width: 100%;
    font-size: 1.1rem;   /* slightly smaller so it fits neatly */
    padding: 14px 20px;
  }
}

/* Optional thin border around the whole section on large screens */
@media (min-width: 992px) {
  .about-card {
    border: 1px solid rgba(210,123,67,.18);
  }
}
/* Hide background circles on small screens (we also used d-none d-md-block) */
@media (max-width: 767.98px) {
  .contact-page .circle { display: none; }
}

/* Theme buttons to match your palette */
.btn-theme {
  background-color: #cf741a;
  color: #fff;
  border: 1px solid #cf741a;
}
.btn-theme:hover,
.btn-theme:focus {
  background-color: #b96312;
  border-color: #b96312;
  color: #fff;
}

.btn-outline-theme {
  border: 1px solid #cf741a;
  color: #cf741a;
  background-color: #fff;
}
.btn-outline-theme:hover,
.btn-outline-theme:focus {
  background-color: #ffe3cc;
  border-color: #cf741a;
  color: #a0500c;
}

/* Common fix */
.btn-wrap {
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-weight: 500;
  border-radius: 6px;
  padding: 10px 14px;
  text-align: center;
}

.btn-email {
  background-color: #d48845;     /* darker orange for contrast */
  color: #fff !important;        /* white text now visible */
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  transition: background 0.2s ease-in-out;
}

.btn-email:hover {
  background-color: #b66d33;     /* even darker on hover */
  text-decoration: none;
}
/* Phone button - outlined style to differentiate */
.btn-phone {
  background-color: transparent; /* no fill */
  color: #d48845 !important;     /* orange text */
  border: 2px solid #d48845;     /* orange outline */
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  transition: all 0.2s ease-in-out;
}

.btn-phone:hover {
  background-color: #d48845;     /* fill orange on hover */
  color: #fff !important;        /* text turns white */
}

.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0; /* behind content */
}

/* Hide circles for screens smaller than 1024px */
@media (max-width: 1024px) {
  .circle {
    display: none !important;
  }
}

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;
  }
}
/* Default (desktop / large screens) */
.navbar {
  padding: 10px 0;
}

.home-icon {
  font-size: 28px;
  color: #cf741a !important;
}

.navbar-toggler-icon {
  width: 30px;
  height: 30px;
  background-size: 30px 30px;
}

.navbar-nav .nav-link {
  font-size: 16px;
  padding: 8px 15px;
}

/* Small phones (up to 400px) */
@media (max-width: 400px) {
  .home-icon {
    font-size: 20px;
  }

  .navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
  }

  .navbar-nav .nav-link {
    font-size: 14px;
    padding: 6px 12px;
  }
}

/* Medium mobiles (401px–600px) */
@media (max-width: 600px) {
  .home-icon {
    font-size: 24px;
  }

  .navbar-toggler-icon {
    width: 28px;
    height: 28px;
    background-size: 28px 28px;
  }

  .navbar-nav .nav-link {
    font-size: 15px;
  }
}

/* Tablets (601px–991px) */
@media (max-width: 991px) {
  .home-icon {
    font-size: 26px;
  }

  .navbar-toggler-icon {
    width: 32px;
    height: 32px;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
  }
}

.navbar-light .navbar-nav .nav-link {
  color: #cf741a !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #A0522D !important;
}
/* =========================================================
   THEME + RESET
   ========================================================= */
:root{
  --peach-bg: #fff0e6;
  --peach-ink: #E59866;
  --brand: #cf741a;
  --brand-dark: #A0522D;
  --ink: #333;
  --soft-cream: #FDF8F6;
  --shadow: 0 8px 16px rgba(0,0,0,.10);
}

html, body{
  height:100%;
  margin:0;
  padding:0;
  background-color:var(--peach-bg);
}

/* =========================================================
   LAYOUT SHELL
   ========================================================= */
.full-height-container{
  min-height:100vh;
  position:relative;
  overflow-x:hidden;
  overflow-y:visible;
  background-color:var(--peach-bg);
}

/* =========================================================
   DECOR (grid + circles)
   ========================================================= */
.grid-lines{
  position:absolute; inset:0;
  background:
    linear-gradient(to right, rgba(229,152,102,.3) 1px, transparent 1px) 0 0/40px 40px,
    linear-gradient(to bottom, rgba(229,152,102,.3) 1px, transparent 1px) 0 0/40px 40px;
  z-index:2;
}

.circle-decor{
  position:absolute; width:15px; height:15px; border-radius:50%;
  background-color:rgba(229,152,102,.7);
}

/* base circle */
.circle{
  position:absolute; border-radius:50%;
  background-color:rgba(250,250,240,.5);
  border:6px solid rgba(250,250,240,.5);
  backdrop-filter:blur(4px);
  z-index:2;
}
.circle::before{
  content:""; position:absolute; inset:-12px;
  border:3px solid rgba(211,178,140,.7); border-radius:50%;
}

/* sizes/positions */
.large-circle{  width:300px; height:300px; top:250px; left:50px; }
.medium-circle{ width:200px; height:200px; bottom:100px; right:100px; }
.small-circle{  width:100px; height:100px; top:200px; right:150px; }

/* =========================================================
   TYPOGRAPHY (mobile-first)
   ========================================================= */
.intro-text{
  font-family:'Playfair Display', serif;
  font-weight:bold;
  color:var(--brand);
  margin-bottom:30px;
  z-index:100;
  font-size:1.8rem;         /* phones */
  line-height:1.25;
  text-align:center;
}

.subtext{
  font-family:'Playfair Display', serif;
  color:#5a5a5a;
  line-height:1.5;
  z-index:100;
  font-size:1rem;           /* phones */
  text-align:center;
}

p{
  font-family:'Open Sans', sans-serif;
  color:var(--ink);
}

/* =========================================================
   MEDIA: TABLET & DESKTOP TYPOGRAPHY
   ========================================================= */
@media (min-width: 576px){                      /* small phones → large phones */
  .intro-text{ font-size:2rem; }
  .subtext{    font-size:1.05rem; }
}

@media (min-width: 768px){                      /* tablets */
  .intro-text{ font-size:2.4rem; }
  .subtext{    font-size:1.1rem; line-height:1.6; }
}

@media (min-width: 992px){                      /* desktop */
  .intro-text{ font-size:3rem; }
  .subtext{    font-size:1.2rem; }
}

@media (min-width: 1200px){                     /* large desktop */
  .intro-text{ font-size:3.4rem; }
}

/* =========================================================
   CTA + SOCIAL
   ========================================================= */
.btn-explore{
  display:inline-block;
  background-color:var(--brand);
  color:#fff;
  text-transform:uppercase;
  font-weight:bold;
  text-align:center;
  text-decoration:none;
  border-radius:5px;
  box-shadow:0 4px 6px rgba(0,0,0,.1);
  transition:background-color .3s ease, color .3s ease, box-shadow .3s ease;
  margin-bottom:20px;
  z-index:100;
  font-size:.95rem;         /* phones */
  padding:10px 18px;
}
.btn-explore:hover{
  background-color:var(--brand-dark);
  color:#fff;
  box-shadow:0 6px 8px rgba(0,0,0,.2);
}

@media (min-width: 768px){
  .btn-explore{ font-size:1rem; padding:12px 24px; }
}
@media (min-width: 992px){
  .btn-explore{ font-size:1.1rem; padding:15px 30px; }
}

.social-icons{
  display:flex; justify-content:center; gap:20px; z-index:100;
}
.social-icons i{ color:var(--brand); font-size:36px; }
@media (max-width: 767px){ .social-icons i{ font-size:42px; } }
@media (min-width:1200px){ .social-icons i{ font-size:42px; } }

/* =========================================================
   IMAGE
   ========================================================= */
.photo-image{
  width:80%; max-width:540px; height:auto;
  border-radius:15px; object-fit:cover; box-shadow:var(--shadow); z-index:100;
}
.photo-image-mobile{ width:100%; height:auto; padding:20px; }

/* =========================================================
   TESTIMONIALS (one at a time, smooth fade)
   ========================================================= */
#testimonialCarousel .carousel-inner{
  position:relative; min-height:200px;
}
#testimonialCarousel .carousel-item{
  position:absolute; inset:0; display:block!important;
  opacity:0; visibility:hidden; transition:opacity .45s ease;
  padding:16px 0;
}
#testimonialCarousel .carousel-item.active{
  position:relative; opacity:1; visibility:visible;
}
@media (max-width: 767.98px){
  #testimonialCarousel .carousel-inner{ min-height:220px; }
}
.testimonial-text{
  text-align:center; line-height:1.6; margin:auto; max-width:700px;
  font-size:1rem;              /* phones */
}
@media (min-width:768px){ .testimonial-text{ font-size:1.05rem; } }
@media (min-width:992px){ .testimonial-text{ font-size:1.2rem; } }

/* =========================================================
   LOGO BAR
   ========================================================= */
.styled-logo{
  border:3px solid var(--brand-dark);
  border-radius:50%;
  padding:8px;
  background-color:var(--soft-cream);
  box-shadow:0 3px 8px rgba(160,82,45,.35);
  max-height:100px;
  transition:transform .2s ease, box-shadow .2s ease;
}
.styled-logo:hover{ transform:scale(1.08); box-shadow:0 5px 12px rgba(160,82,45,.45); }

.logo-bar{
  display:flex; justify-content:flex-end; align-items:center;
  padding:16px 20px; background:var(--peach-bg);
}
.logo-bar__img{ height:100px; width:auto; max-width:100%; }

@media (max-width: 991.98px){
  .logo-bar{ padding:12px 16px; }
  .logo-bar__img{ height:80px; }
}
@media (max-width: 575.98px){
  .logo-bar{ padding:10px 14px; }
  .logo-bar__img{ height:70px; }
}

/* =========================================================
   UTILITIES + ANIM
   ========================================================= */
.fade-in-animation{ animation:fadeIn 2s ease-in-out; }
@keyframes fadeIn{
  0%{ opacity:0; transform:translateY(20px); }
  100%{ opacity:1; transform:translateY(0); }
}

/* =========================================================
   MOBILE REFINEMENTS
   ========================================================= */
/* shrink first row space on small screens */
@media (max-width:768px){
  .flex-grow-0{ flex-basis:20%!important; }
  .p-3{ padding:5px!important; }
}

/* circles: lighten on tablets, hide on phones to avoid overlap/cropping */
@media (max-width: 991.98px){
  .circle{ opacity:.35; transform:scale(.85); }
}
@media (max-width: 575.98px){
  .circle{ display:none; }
}
/* app/assets/stylesheets/pages.css */

/* General Styles 
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
  }
  
  h1, h2 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  */
  
  /* Hero Section 
  .hero {
    background: url('<%= asset_path("MB2.jpg") %>') no-repeat center center;
    background-size: cover;
    padding: 60px 20px;
    text-align: center;
    color: white;
    margin-bottom: 40px;
  }*/
  
  .profile-pic {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /*
  .hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 20px;
    margin-top: 10px;
  }*/
 
  .bio {
    flex: 2;
    padding-left: 40px;
  }
  
  .bio h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .bio p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

/* Stats Section */
.stats {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: space-between; /* Distribute the items evenly */
  }
  
  .stat-item {
    flex: 1;
    min-width: 150px;
    margin-bottom: 20px;
    text-align: left;
    position: relative; /* Position for the colored line */
    padding-left: 25px; /* Space for the colored line */
  }
  
  .stat-item h3 {
    font-size: 32px;
    color: #333;
    margin: 0;
  }
  
  .stat-item p {
    font-size: 16px;
    color: #666;
    margin: 5px 0 0 0;
  }
  
  .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px; /* Width of the colored line */
    background-color: #2ecc71; /* Default color for the line */
    border-radius: 2px;
  }
  
  .stat-item:nth-child(1)::before {
    background-color: #3498db; /* Blue line for the first stat */
  }
  
  .stat-item:nth-child(2)::before {
    background-color: #e74c3c; /* Red line for the second stat */
  }
  
  .stat-item:nth-child(3)::before {
    background-color: #f39c12; /* Orange line for the third stat */
  }
  
  .stat-item:nth-child(4)::before {
    background-color: #9b59b6; /* Purple line for the fourth stat */
  }
  
  .images {
    flex: 1;
    text-align: center;
  }
  
  .images img {
    max-width: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Expertise Section */
  .expertise {
    padding: 40px 20px;
    background-color: #ecf0f1;
    border-radius: 10px;
    margin-bottom: 40px;
  }
  
  .expertise h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .expertise ul {
    list-style: none;
    padding: 0;
  }
  
  .expertise ul li {
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
  }
  
  .expertise ul li:before {
    content: '✔';
    color: #27ae60;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  /* Philosophy Section */
  .philosophy {
    padding: 40px 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
  }
  
  .philosophy h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .philosophy p {
    font-size: 18px;
    line-height: 1.8;
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: 40px 20px;
    background-color: #ecf0f1;
    border-radius: 10px;
    margin-bottom: 40px;
  }
  
  .testimonials h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .testimonials-grid div {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Call to Action Section */
  .cta {
    text-align: center;
    padding: 60px 20px;
    background-color: #2ecc71;
    color: white;
    border-radius: 10px;
    margin-bottom: 40px;
  }
  
  .cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .cta a {
    display: inline-block;
    margin: 10px;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
  }
  
  .btn-primary {
    background-color: #e74c3c;
    color: white;
    border: none;
  }
  
  .btn-secondary {
    background-color: white;
    color: #2ecc71;
    border: 2px solid white;
  }
  
  /* Contact Section */
  .contact {
    padding: 40px 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .btn-contact {
    display: inline-block;
    padding: 12px 24px;
    background-color: #d4a373;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .btn-contact:hover {
    background-color: #34495e;
  }

  /* app/assets/stylesheets/pages.css */

 
  
  h1 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 40px;
  }
 /* app/assets/stylesheets/pages.css */

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

.tab-list {
  display: flex;
  justify-content: space-around;
  list-style-type: none;
  padding: 0;
  margin-bottom: 20px;
  border-bottom: 2px solid #ddd;
}

.tab-list li {
  flex: 1;
  text-align: center;
}

.tab-list li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s, color 0.3s;
}

.tab-list li.active a,
.tab-list li a:hover {
  background-color: #e27d60;
  color: white;
}

.tab-content .tab {
  display: none;
}

.tab-content .tab.active {
  display: block;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
  /* Footer */
  footer {
    padding: 20px;
    background-color: #2c3e50;
    color: white;
    text-align: center;
    border-radius: 0 0 10px 10px;
  }



.peach-bg {
  background-color: #fff0e6; /* same peach shade */
  padding-top: 2rem;         /* optional: spacing */
  padding-bottom: 2rem;      /* optional: spacing */
}

.section-heading {
  margin-top: 50px; /* Adjust the spacing as per your requirement */
  color: #2C3E50;
}

.large-text {
  font-size: 24px; /* Set the desired size */
  font-weight: bold; /* Ensures bold text, since <strong> adds bold by default */
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #2C3E50;
  text-align: center;
  font-weight: bold;
  letter-spacing: 1.5px;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

h1::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #E59866;
  margin: 10px auto 0;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 20px;
  box-sizing: border-box;
  margin-top: 150px;
}

.card {
  background-color: rgb(242, 236, 232);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card h2 {
  font-size: 1.5em;
  color: #2C3E50;
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  background-color: #FFCC99;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.card ul li {
  font-size: 1.5em;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  color: #555;
  line-height: 1.8;
}

.card ul li::before {
  content: "\f00c";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 0;
  color: #E59866;
}

.btn-learn-more {
  background-color: #E59866;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  display: block;
  margin: 0 auto;
  width: fit-content;
  margin-top: 20px;
  flex-shrink: 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-learn-more:hover {
  background-color: #D77A3A;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    padding: 30px;
  }

  .card {
    margin-bottom: 30px;
  }

  .card h2 {
    font-size: 1.5em;
  }

  .card ul li {
    font-size: 0.9em;
    line-height: 1.4;
  }

  .btn-learn-more {
    padding: 8px 12px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .cards-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px;
  }

  .card {
    padding: 15px;
    margin-bottom: 30px;
  }

  .card h2 {
    font-size: 1.2em;
  }
}

.btn-theme {
  background-color: #cf741a;   /* terracotta */
  border-color: #cf741a;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 20px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hover effect */
.btn-theme:hover {
  background-color: #b96312;   /* darker shade */
  border-color: #b96312;
  color: #fff;
  transform: scale(1.05);
}
/* Optional CSS to control carousel size and appearance */



/* Show only the active testimonial */
#testimonialsCarousel .carousel-item {
  display: none;
  transition: opacity 0.6s ease-in-out; /* smooth fade */
  opacity: 0;
}

#testimonialsCarousel .carousel-item.active {
  display: block;
  opacity: 1;
}

/* Keep next/prev slides visible only during transition */
#testimonialsCarousel .carousel-item-next,
#testimonialsCarousel .carousel-item-prev,
#testimonialsCarousel .carousel-item.active.carousel-item-start,
#testimonialsCarousel .carousel-item.active.carousel-item-end {
  display: block;
  opacity: 0;
}

.carousel-text-section {
  text-align: center;
  padding: 20px;
  background-color: #f3eae0;
  margin-bottom: 20px;
}

.carousel-text-section h2 {
  font-size: 2rem;
  color: #cf741a;
  margin-bottom: 10px;
}

.carousel-text-section p {
  font-size: 1.2rem;
  color: #cf741a;
}

.cta-section{ background:transparent; }
.cta-card{
  max-width:760px;
  margin:0 auto;
  padding:2rem 1.5rem;
  border-radius:18px;
  background:#fff;
  box-shadow:0 12px 30px rgba(0,0,0,.06), inset 0 0 0 1px rgba(0,0,0,.06);
  border:1px solid rgba(210,123,67,.18);
}
.cta-card h3{ color:#b55f28; font-family:"Playfair Display",serif; font-weight:800; }
.cta-card p{ color:#555; margin:.75rem 0 1.25rem; }

.carousel-container {
  background: linear-gradient(135deg, #f9f6f1, #f3eae0);
  padding: 40px;
  border-radius: 10px;
  position: relative;
}

.decorative-circle {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: rgba(229, 152, 102, 0.2); /* Soft peach */
  z-index: 1;
}

/* Position the circles around the carousel */
.circle-1 {
  top: -50px;
  left: 20px;
}

.circle-2 {
  bottom: -60px;
  right: 50px;
}

.carousel-inner {
  max-height: 600px; /* Adjust based on your design */
  overflow: hidden;
}

.carousel-item img {
  object-fit: contain;
  max-height: 600px; /* Ensures images do not overflow */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #A9876D; /* Customize the color of the arrows */
  border-radius: 50%;
  padding: 10px;
}
.transformation-carousel-container {
  margin-top: 40px;
  position: relative;
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px;
  background-color: #D1B6A1;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.transformation-text {
  text-align: center;
  margin-bottom: 40px; /* Add space between the text and the carousel */
}

.transformation-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: bold;
  color: #A0522D; /* A darker, richer terracotta shade */
  margin-bottom: 20px;
}

.transformation-text p {
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #4A2E2A; /* warm dark brown for contrast */
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.transformation-carousel .transformation-item {
  text-align: center;
}

.transformation-carousel img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #A9876D;
  border-radius: 50%;
  padding: 10px;
}

.carousel-indicators [data-bs-target] {
  background-color: #A9876D;
}

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

/* force only the active slide to show in THIS carousel */
#transformationCarousel .carousel-item { display: none; }
#transformationCarousel .carousel-item.active { display: block; }

/* optional: avoid weird stacking while sliding */
#transformationCarousel .carousel-item-next,
#transformationCarousel .carousel-item-prev,
#transformationCarousel .carousel-item.active.carousel-item-end,
#transformationCarousel .carousel-item.active.carousel-item-start {
  display: block;
}

@media (max-width: 768px) {
  .transformation-carousel-container {
    padding: 20px;
  }

  .carousel-inner img {
    max-height: 400px; /* Smaller images for mobile */
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
 @import 'media_queries';
 
 .position-absolute {
    z-index: 10;
  }
