/* /styles/styles.css */

/* Import Playfair Display font */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    margin: 0;
    font-family: Quicksand, sans-serif;
    background-color: #F8F3F1;
    background-color: #f8f4ef;
    background-color: #ECD8C5;
        background-color: #f8f4ef;

    color: #3f3d3b; 
  }

  a {
    text-decoration: none; /* Remove underline from links a */
    color: inherit;
  }

  a:link {
    text-decoration: none;
  }
  
/* Existing Styles */
/* Existing Styles */
.header {
  background-color: #f1e2d2; /* light cream */
  padding: 0.9rem 1rem;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 35px;
}

.brand {
  display: flex;
  align-items: center;
}

.menu-button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: Quicksand, sans-serif;
  font-weight: 200;
  font-size: 1.125rem;
  color: rgb(64, 61, 59);
  padding: 0;
}

.dropdown {
  position: relative;
  display: inline-block;
  z-index: 2;
}

.menu-svg {
  margin-left: -1px;
  height: 1.25rem;
  width: 1rem;
  transition: transform 0.2s ease;
  margin-bottom: -4px;
}

.menu-svg.rotate {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 12px;
  width: 120px;
  background-color: #ecd5bd;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
              0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  padding: 0.25rem 0;
  z-index: 3;
  text-align: center;
}

.dropdown-menu.show {
  opacity: 1;
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: #333;
  font-family: Quicksand, sans-serif;
  font-weight: 300;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: background-color 0.2s;
}

.dropdown-menu a:hover {
  text-decoration: underline;
}

/* Media Query for Screen Widths >= 1250px */
@media screen and (min-width: 1250px) {
  /* Hide the menu button */
  .menu-button {
    display: none;
  }

  /* Show the dropdown-menu inline */
  .dropdown-menu {
    position: static;
    display: flex;
    flex-direction: row;
    opacity: 1;
    pointer-events: auto;
    margin-top: 0;
    width: auto;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    height: 100%;
    align-items: center;
    transform: none;
  }

  .dropdown-menu a {
    display: inline-block;
    padding: 0 15px;
    color: #403d3b;
    font-family: Quicksand, sans-serif;
    font-weight: 300;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5rem;
    transition: color 0.2s;
    text-align: left;
  }

  .dropdown-menu a:hover {
    color: #555;
    text-decoration: underline;
  }

  /* Adjust the .navbar */
  .navbar {
    justify-content: flex-start;
  }

  /* Adjust the .dropdown */
  .dropdown {
    display: flex;
    align-items: center;
    margin-left: 20px;
  }

  /* Ensure .brand and .dropdown are left-justified */
  .brand,
  .dropdown {
    display: flex;
    align-items: center;
  }

  /* Adjust .get-started-button */
  .get-started-button {
    margin-left: auto;
  }
}


  
  .brand {
    display: flex;
    align-items: center;
  }
  
  .brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
  }
  
  .brand-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-right: 8px;
    font-family: 'Playfair Display', serif;
  }
  
  .logo {
    width: 32px;
    height: 32px;
  }
  
  .get-started-button {
    background-color: #edd3b9; /* peach */
    padding: 0.5rem 1rem;
    border-radius: 24px;
    text-decoration: none;
    font-size: 16px;
    font-family: Quicksand, sans-serif;
    font-weight: 300;
    margin-right: 1rem;
    transition: all 0.6s ease;
    white-space: nowrap;
  }

  .get-started-button:hover {
    background-color:#f0dac5;
  }

  @media (max-width: 768px) {
    .get-started-button {
        margin-right: 0px;
  }
}
  
  .main-content {
    padding: 16px;
  }

/*   .parallax-image-container {
    position: absolute;
    top: 0; /* Start from the top of the page 
    left: 0;
    width: 100%; /* Full width of the viewport 
    height: calc(100vh - 40px); /* Full height of the viewport + 40px 
    z-index: -1; /* Sends the background behind other content 
    overflow: hidden; /* Prevent overflow 
  }
  
  /* Parallax effect for the image 
  .parallax-image-1 {
    background-image: url("/public/images/ripple.webp"); /* Replace with your actual image path 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-attachment: fixed; /* Parallax effect 
  } */

  .parallax-image-container {
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    z-index: -1;
    overflow: hidden;
  }
  
  .parallax-image-1 {
    background-image: url("/public/images/tropical-water.webp"); /* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-attachment: fixed; /* Parallax effect */
  }
  
  
  .hero-section {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 2fr; /* 1fr for the image, 2fr for the text */
    gap: 20px;
    background-color: rgb(241, 226, 210);
    padding: 14px;
    border-radius: 8px;
    margin-top: 20px;
    align-items: center;
    z-index: 1;
  }
  
  .hero-image {
    width: 95%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    grid-column: 1; /* Image will occupy the first column */
  }

  .description-section {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-column: 2; /* Text will occupy the second column */
    width: 57%;
  }
  
  .hero-text h2 {
    font-size: 1.9rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: #403d3b;
    font-family: 'Playfair Display', serif;
  }

  @media (max-width: 1050px) {
    .hero-text {
      width: 70%;
    }
  }
  
  .hero-description h3 {
    margin-bottom: 8px;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 200;
    margin-block-start: 10px;
  }
  
  .hero-description ul {
    list-style-type: disc;
    padding-left: 20px;
  }

  .hero-description li {
    font-size: 20px;
    line-height: 1.75rem;
    font-weight: 200;
    font-family: Quicksand, sans-serif;
  }
  
  .cta-button {
    background-color: #edd3b9;
    padding: 0.7rem 1.3rem;
    border-radius: 24px;
    text-decoration: none;
    font-size: 1.2em;
    font-family: Quicksand, sans-serif;
    font-weight: 300;
    margin-right: 1rem;
    margin-top: 1rem;
    transition: all 0.2s ease;
    width: fit-content;
  }
  
  .cta-button:hover {
    background-color:#f0dac5;
  }
  
  .cta-arrow {
    margin-left: 3px;
    transition: transform 0.3s ease-in-out;
    display: inline-block;
  }
  
  .cta-button:hover .cta-arrow {
    transform: translateX(5px);
  }
  
  /* Responsive Design for smaller screens */
  @media (max-width: 768px) {
    .hero-section {
      grid-template-columns: 1fr; /* Stack elements vertically on smaller screens */
    }
  
    .hero-image, .hero-text {
      grid-column: 1; /* Both the image and text will take up the full width */
    }
  
    .hero-text {
      margin-left: 0; /* Remove left margin for smaller screens */
    }
  }


/* Interactive Section Styles */
.interactive-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #f1e2d2;
  margin-top: 52px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.interactive-section h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #403d3b;
  margin-bottom: 40px;
  font-family: 'Quicksand', sans-serif;
  opacity: 0;
  transform: translateY(20px);
}

.interactive-section h2.animate {
  animation: fadeInUp 1s ease forwards;
}

.cards-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.cards-container.animate {
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

.cards-container.animate .card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.cards-container.animate .card:nth-child(1) {
  animation-delay: 0.2s;
}

.cards-container.animate .card:nth-child(2) {
  animation-delay: 0.4s;
}

.cards-container.animate .card:nth-child(3) {
  animation-delay: 0.6s;
}

.card {
  position: relative;
  width: 300px;
  height: 400px;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  background-color: #edd3b9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Enhanced Styles for Card Content */
.card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(236, 216, 197, 0.85); /* Slightly more opaque for better readability */
  color: #3f3d3b;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.card:hover .card-content,
.card:focus .card-content {
  opacity: 1;
}

.text-wrapper {
  max-width: 80%;
  animation: fadeInText 0.8s ease forwards;
}

.text-wrapper h3 {
  font-size: 1.75rem;
  margin-bottom: 10px;
  font-weight: 400;
  font-family: 'Playfair Display', serif; /* Elegant serif font */
}

.text-wrapper .divider {
  width: 50px;
  height: 2px;
  background-color: #3f3d3b;
  margin: 0 auto 15px auto;
  border-radius: 100px;
}

.text-wrapper p {
  font-size: 1rem;
  font-weight: 300;
  font-family: 'Quicksand', sans-serif;
  line-height: 1.5;
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover and Focus Effects */
.card:hover,
.card:focus {
  transform: scale(1.03);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.card:hover img,
.card:focus img {
  transform: scale(1.05);
}

.card:focus {
  outline: none;
}

/* Keyframe Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 900px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 80%;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .interactive-section h2 {
    font-size: 2rem;
  }
  .text-wrapper h3 {
    font-size: 1.5rem;
  }
  .text-wrapper p {
    font-size: 0.9rem;
  }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  .interactive-section h2,
  .cards-container,
  .card,
  .card img,
  .card-content,
  .text-wrapper {
    animation: none;
    transition: none;
  }
}

/* Testimonials Section Styles */
.testimonials-section {
  text-align: center;
  padding: 20px 20px 60px 20px;
  background-color: #f8f4ef;
/*   background-color: #f1e2d2;
 */}

.testimonials-section h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #403d3b;
  margin-bottom: 40px;
  font-family: 'Quicksand', sans-serif;
}

.testimonials-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial {
  background-color: #f1e2d2;
  padding: 20px;
  border-radius: 16px;
  max-width: 300px;
  position: relative;
}

.testimonial::before, .testimonial::after {
  content: '"';
  font-size: 3rem;
  color: #ecd5bd;
  position: absolute;
}

.testimonial::before {
  top: -20px;
  left: 10px;
}

.testimonial::after {
  bottom: -20px;
  right: 10px;
}

.quote {
  font-size: 1.1rem;
  margin: 20px 0;
  font-family: 'Playfair Display', serif;
}

.author {
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Quicksand', sans-serif;
}

/* Scrolling Marquee Styles */
.marquee {
  background-color: #edd3b9;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.marquee p {
  display: inline-block;
  padding-left: 0;
  animation: marquee 42s linear infinite;
  font-size: 1.2rem;
  font-family: 'Quicksand', sans-serif;
  color: #403d3b;
}

@keyframes marquee {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-50%, 0); }
}

/* .image-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.image-marquee-content {
  display: flex;
  width: 6930px; /* Updated total width for two sets of images (2 * 3465px) 
  animation: scrollMarquee 52s linear infinite; /* Adjust duration as needed 
}

.image-set {
  display: flex;
  width: 3465px; /* Updated total width of one set of images 
}

.logo-image {
  height: 400px; /* New uniform height for all images 
  width: 300px; /* New fixed width for each image 
  object-fit: cover; /* Crop image to fit within the set dimensions 
  object-position: center; /* Center the cropped portion 
  margin-right: 5px;
  margin-left: 5px;
  border-radius: 2px;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-3465px); /* Move exactly one set of images (3465px) 
  }
} */

.image-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.image-marquee-content {
  display: flex;
  width: 4620px; /* Updated total width for two sets of images (2 * 2310px) */
  animation: scrollMarquee 82s linear infinite; /* Adjust duration as needed */
}

.image-set {
  display: flex;
  width: 2310px; /* Updated total width of one set of images */
}

.logo-image {
  height: 300px; /* Uniform height for all images */
  width: 200px; /* Fixed width for each image */
  object-fit: cover; /* Crop image to fit within the set dimensions */
  object-position: center; /* Center the cropped portion */
  margin-right: 5px;
  margin-left: 5px;
  border-radius: 2px;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-2310px); /* Move exactly one set of images (2310px) */
  }
}




/* Community Spotlight Styles */
.community-spotlight {
  padding: 60px 20px;
  background-color: #f8f4ef;
  text-align: center;
}

.community-spotlight h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #403d3b;
  margin-bottom: 40px;
  font-family: 'Quicksand', sans-serif;
}

/* Flip Card Styles */
.flip-card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}

.flip-card {
  background-color: transparent;
  width: 250px;
  height: 350px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  max-width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-card-back {
  background-color: #edd3b9;
  color: #403d3b;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.flip-card-back p {
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.flip-card-back span {
  font-size: 1rem;
  font-family: 'Quicksand', sans-serif;
}

/* Social Media Feed Styles */
.social-feed {
  margin-bottom: 60px;
}

.social-feed h3 {
  font-size: 2rem;
  font-weight: 300;
  color: #403d3b;
  margin-bottom: 30px;
}

.feed-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.feed-grid img {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.feed-grid img:hover {
  transform: scale(1.05);
}

/* Featured Customer Story Styles */
.featured-story {
  background-color: #f1e2d2;
  padding: 40px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.featured-story h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 30px;
  font-family: 'Quicksand', sans-serif;
}

.story-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.story-content img {
  width: 300px;
  height: 400px;
  border-radius: 16px;
  object-fit: cover;
}

.story-text {
  max-width: 400px;
  text-align: left;
}

.story-text p {
  font-size: 1rem;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 20px;
}

.read-more-button {
  background-color: #edd3b9;
  padding: 10px 20px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 1rem;
  font-family: 'Quicksand', sans-serif;
  font-weight: 300;
  color: #403d3b;
  transition: background-color 0.3s ease;
}

.read-more-button:hover {
  background-color: #f0dac5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .story-content {
    flex-direction: column;
  }

  .story-content img,
  .story-text {
    max-width: 100%;
  }
}



/* Footer Styles */
.footer {
  background-color: #f1e2d2; /* Light cream color matching the header */
  color: #3f3d3b;
  padding: 40px 40px;
  font-family: 'Quicksand', sans-serif;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  flex: 1 1 200px;
  margin-right: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.footer-logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.footer-brand-name {
  font-size: 1.8rem;
  font-weight: 400;
  font-family: 'Playfair Display', serif; /* Elegant serif font */
}

.footer-description {
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.6;
  margin: 10px 20px 16px 0px;
}

.footer-right {
  flex: 1 1 100px;
  display: flex;
  justify-content: space-between;
}

.footer-links,
.footer-social {
  margin-bottom: 20px;
}

.footer-links h4,
.footer-social h4 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer-links ul,
.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 12px;
}

@media (max-width: 1028px) {
  .footer-links ul,
  .footer-bottom-links {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .footer-links ul,
  .footer-bottom-links {
    flex-direction: row;
  }
}

.footer-links li,
.footer-bottom-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-bottom-links a {
  text-decoration: none;
  color: #3f3d3b;
  font-weight: 300;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-bottom-links a:hover {
  color: #6b6462;
}

.footer-social .social-icons {
  display: flex;
  gap: 15px;
}

.facebook-icon,
.instagram-icon,
.twitter-icon {
  display: none;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.footer-social a:hover img {
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid #d8cfc7;
  padding-top: 20px;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
  font-weight: 300;
}

.footer-bottom-links {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

.footer-bottom-links li {
  margin-left: 15px;
}

.footer-bottom-links a {
  text-decoration: none;
  color: #3f3d3b;
  font-weight: 300;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #6b6462;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-right {
    flex-direction: column;
  }

  .footer-left,
  .footer-right {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0px;
  }

  .footer-bottom-links {
    margin-top: 10px;
  }

  .footer-bottom-links li {
    margin-left: 0;
    margin-right: 15px;
  }
}

/* Terms Section Styles */
.terms-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Quicksand', sans-serif;
  color: #3f3d3b;
}

.terms-section h1 {
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
}

.terms-section h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.terms-section p {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}

.terms-section a {
  color: #3f3d3b;
  text-decoration: underline;
}

.terms-section a:hover {
  color: #6b6462;
}


/* Privacy Section Styles */
.privacy-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Quicksand', sans-serif;
  color: #3f3d3b;
}

.privacy-section h1 {
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
}

.privacy-section h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.privacy-section p {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}

.privacy-section a {
  color: #3f3d3b;
  text-decoration: underline;
}

.privacy-section a:hover {
  color: #6b6462;
}

.custom-list {
  list-style-type: none; /* Remove default bullet points */
  padding: 0;
}

.custom-list li {
  margin-bottom: 10px; /* Space between each list item */
  font-size: 1.1rem; /* Adjust size to your liking */
  display: flex;
  align-items: center;
}

.custom-list .icon {
  font-size: 1.5rem; /* Adjust icon size */
  margin-right: 10px; /* Space between icon and text */
  color: #9f714f; /* Change color to match your theme */
}


/* Journey Section Styles */
.journey-section {
  padding: 80px 0 60px 0;
  background-color: #f8f4ef;
  overflow: hidden;
}

.journey-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.journey-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  font-family: 'Playfair Display', serif;
  color: #403d3b;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.journey-step {
  opacity: 0;
  transform: translateY(20px);
}

/* Stagger the animations */
.journey-step:nth-child(1) { animation: fadeInUp 0.6s ease 0.1s forwards; }
.journey-step:nth-child(2) { animation: fadeInUp 0.6s ease 0.2s forwards; }
.journey-step:nth-child(3) { animation: fadeInUp 0.6s ease 0.3s forwards; }
.journey-step:nth-child(4) { animation: fadeInUp 0.6s ease 0.4s forwards; }

.step-content {
  background-color: #f1e2d2;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.step-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.step-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #9f714f;
  opacity: 0.8;
  margin-right: 12px;
}

.step-icon {
  margin-left: auto;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  color: #9f714f;
  transition: transform 0.4s ease;
}

.step-content:hover .step-icon svg {
  transform: rotate(5deg);
}

.step-text {
  flex-grow: 1;
}

.step-text h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #403d3b;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

.step-text p {
  color: #403d3b;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-image {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.step-content:hover .step-image img {
  transform: scale(1.05);
}

.journey-cta {
  text-align: center;
  margin-top: 128px;
  opacity: 0;
  padding: 1px;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease 0.5s forwards;
}

.begin-btn {
  font-size: 24px;
  font-family: 'Playfair Display', serif;
  border-radius: 40px;
  padding: 15px 30px;
}

/* .cta-button-2 {
  display: inline-flex;
  align-items: center;
  background-color: #edd3b9;
  padding: 14px 32px;
  border-radius: 28px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 300;
  color: #403d3b;
  transition: all 0.4s ease;
} */

.cta-sparkle {
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.4s ease;
}

/* .cta-button:hover {
  background-color: #f0dac5;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
} */

.cta-button:hover .cta-sparkle {
  transform: rotate(15deg);
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .journey-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 70px 20px;
  }
}

@media (max-width: 768px) {
  .journey-section {
    padding: 60px 0 30px 0;
  }

  .journey-container {
    padding: 0 20px;
  }

  .journey-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .journey-steps {
    grid-template-columns: 1fr;
    gap: 60px 16px;
  }

  .step-content {
    padding: 20px;
  }

  .step-text h3 {
    font-size: 1.3rem;
  }

  .step-image {
    height: 140px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .journey-title,
  .journey-step,
  .step-content,
  .step-icon svg,
  .step-image img,
  .cta-button,
  .cta-sparkle {
    animation: none;
    transition: none;
  }
}