/* About Story Section */
.about-story-section {
  background-color: #fcfbf7;
  background-image: url("../assets/Images/patterns/introPattern.webp");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 350px;
  padding: 3vw 40px;
  text-align: center;
}

.about-story-container {
  /* max-width: 1300px; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0;
}

.about-story-image {
  flex: 1;
}

.about-story-image img {
  width: 100%;
  height: auto;
  /* border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  display: block;
}

.about-story-content {
  flex: 1;
}
.about-story-text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  font-weight: 400;
}

.about-story-text p {
  margin-bottom: 25px;
}

.about-story-text p:last-child {
  margin-bottom: 0;
}

/* About Quote Section */
.about-quote-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.about-quote-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.6;
  color: #111;
  max-width: 900px;
  margin: 0 auto;
}

/* Promise Section */
.promise-section {
  background-color: #fcfbf7;
  background-image: url("../assets/Images/patterns/gold-line-pattern-removebg-preview.webp");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 350px;
  padding: 3vw 40px;
}

.promise-container {
  /* max-width: 1300px; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.promise-content {
  flex: 1;
}

.text-left {
  text-align: left !important;
}

.divider-left {
  margin: 0 0 30px 0 !important;
}

/* Dining Experience Section */
.dining-experience-section {
  /* display: flex; */
  display: none;
  width: 100%;
  background-color: #27371e; /* Deep dark green */
}

.dining-image {
  flex: 1;
  width: 50%;
}

.dining-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dining-content {
  flex: 1;
  width: 50%;
  padding: 8vw 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.dining-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #e5ead4;
}

.dining-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 30px;
}

.dining-desc {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #b7bfab;
  margin-bottom: 40px;
  max-width: 90%;
}

.dining-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dining-list li {
  display: flex;
  align-items: flex-start;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #e6e9e0;
  margin-bottom: 18px;
  line-height: 1.5;
}

.dining-list li i {
  color: #fff;
  margin-right: 15px;
  margin-top: 5px;
  font-size: 14px;
}

/* =========================================
   Tablet Responsive (max-width: 900px)
   ========================================= */
@media (max-width: 900px) {
  /* --- About Story Section --- */
  .about-story-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-story-image {
    width: 100%;
  }

  /* --- Promise Section --- */
  .promise-container {
    flex-direction: column;
    gap: 40px;
  }

  /* --- Dining Experience Section --- */
  .dining-experience-section {
    flex-direction: column;
  }
  
  .dining-image,
  .dining-content {
    width: 100%;
  }
  
  .dining-content {
    padding: 10vw 8vw;
  }
}

/* =========================================
   Mobile Responsive (max-width: 600px)
   ========================================= */
@media (max-width: 600px) {
  /* --- About Story Section --- */
  .about-story-section {
    padding: 3rem 20px;
    background-size: 200px;
  }

  .about-story-container {
    gap: 30px;
  }
  
  .about-story-text {
    font-size: 15px;
  }

  /* --- About Quote Section --- */
  .about-quote-section {
    padding: 40px 15px;
  }
  
  .about-quote-text {
    font-size: 20px;
  }

  /* --- Promise Section --- */
  .promise-section {
    padding: 3rem 20px;
    background-size: 200px;
  }

  /* --- Dining Experience Section --- */
  .dining-title {
    font-size: 36px;
  }
  
  .dining-desc {
    font-size: 14px;
    max-width: 100%;
  }
  
  .dining-list li {
    font-size: 14px;
  }
}

/* =========================================
   FAQ Section Styles
   ========================================= */
.faq-section {
  background-color: #faf9f6; /* Off-white matching the image background */
  padding: 3vw 40px;
}

.faq-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: flex;
  gap: 60px;
}

.faq-left {
  flex: 0 0 45%;
}

/* FAQ Image Collage */
.faq-collage {
  display: flex;
  gap: 20px;
  width: 100%;
}

.faq-collage-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  margin-top: 40px; /* Stagger effect */
}

.faq-collage-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.faq-img-wrapper {
  /* border-radius: 12px; */
  overflow: hidden;
}

.faq-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq-collage-left .faq-img-wrapper {
  height: 220px;
}

.faq-collage-right .faq-img-wrapper {
  height: 100%;
  min-height: 460px;
}

.faq-right {
  flex: 1;
  background-color: #ffffff;
  padding: 0 35px;
  /* Very subtle shadow/border to give it that crisp container look */
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.03);
}

.faq-item {
  border-bottom: 1px solid #f0f0f0;
}
/* 
.faq-item:first-child {
} */

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  gap: 10px;
}

.faq-question i {
  font-size: 16px;
  color: #333;
  transition: transform 0.3s ease;
}

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

.faq-answer p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #666;
  margin: 0;
  padding-bottom: 24px;
  line-height: 1.8;
}

/* Active State */
/* .faq-item.active .faq-answer {
} */

/* When active, the plus becomes an X by rotating 45 deg */
.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* FAQ Responsive */
@media (max-width: 900px) {
  .faq-container {
    flex-direction: column;
    gap: 40px;
  }
  .faq-left {
    flex: none;
  }
  .faq-collage {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .faq-section {
    padding: 15vw 20px;
  }
  .faq-right {
    padding: 0 20px;
  }
  .faq-question {
    font-size: 16px;
    padding: 20px 0;
  }
  .faq-collage-left .faq-img-wrapper {
    height: 150px;
  }
  .faq-collage-right .faq-img-wrapper {
    min-height: 320px;
  }
  .faq-collage-left {
    margin-top: 20px;
  }
}
