 :root {
    --primary-color: #536c40;
    --primary-color-1--: #a9746e;
    --secondary-color: #efe3c8;
    --secondary-color-1--: #c2c1a5;
    --secondary-color-2--: #edeaca;
    --secondary-color-3--: #b09f91;
    --secondary-color-4--: #dde8b9;
    --white-color: #fff;
    --text-color: #4a4a4a;
}

.faq-section {
    padding: 0px 0;
    background: var(--secondary-color);
}

.faq-title h1 {
    font-size: 48px;
    color: var(--primary-color);
}

.faq_accordion .accordion-item {
    background: var(--white-color);
    border-radius: 14px !important;
    margin-bottom: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.accordion-item:hover {
    background: #f1efd8;
}

.accordion-button {
    font-size: 24px;
    color: #3e5530;
    background: transparent;
    padding: 22px 25px;
    box-shadow: none !important;
}

.accordion-button::after {
    font-size: 24px;
    color: var(--primary-color);
    transform: rotate(0deg);
    transition: 0.3s;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(45deg);
}

.accordion-body {
    font-size: 19px;
    color: #4a4a4a;
    line-height: 28px;
    padding: 20px 25px;
}

.faq_accordion .accordion-button:not(.collapsed) {
    background-color: #a9746e !important;
    color: #ffffff !important;
}

.faq_accordion.accordion-button:not(.collapsed)::after {
    color: #ffffff !important;
    filter: brightness(10);
}


/*CATERING CSS*/

.catering-page-title, h1 {
  text-align: center;
  font-size: 45px;
  color: var(--primary-color--);
  font-family: 'Delicy', sans-serif;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.catering-page-sub {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 50px;
  color: #4a4a4a;
  font-family: 'Shallot', sans-serif;
}

.catering-card {
  margin-top: -20px;
  margin-bottom: 40px;
  width: 100%;

  background: var(--secondary-color-4--);
  border-radius: 18px;
  border: 2px dashed var(--primary-color--);
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.catering-card:hover {
  background: var(--secondary-color-2--);
  transform: translateY(-8px);
}

.icon img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: invert(40%) sepia(12%) saturate(900%) hue-rotate(52deg) brightness(85%) contrast(90%);
  transition: 0.3s ease;
}

.catering-card:hover .icon img {
  filter: invert(60%) sepia(10%) saturate(900%) hue-rotate(314deg) brightness(90%) contrast(95%);
}

.catering_title {
  font-size: 21px;
  font-weight: 900;
  margin-top: 15px;
  margin-bottom: 10px;
  color: #000;
}

.desc {
  font-size: 15.5px;
  line-height: 1.6;
  color: #333;
  font-family: 'Shallot', sans-serif;
  opacity: 0.95;
}

.page-title, h1 {
  text-align: center;
  font-size: 42px;
  color: var(--primary-color--);
  font-family: 'Delicy', sans-serif;
  margin-bottom: 20px;
}

.page-sub {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 15px; 
  color: #333;
  font-family: 'Shallot', sans-serif;
}

.icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: invert(40%) sepia(12%) saturate(900%) hue-rotate(52deg) brightness(85%) contrast(90%);
  transition: 0.3s ease;
}

.catering-card:hover .icon img {
  filter: invert(61%) sepia(12%) saturate(900%) hue-rotate(314deg) brightness(90%) contrast(95%);
}

.hero-section {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 20px;

}

.hero-wrapper {
  background: 
  radial-gradient(circle at 80% 50%, 
  rgba(0,0,0,0) 10%, 
  rgba(0,0,0,0.6) 60%),
  url('../images/catering_img.jpg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.catering_banner{
  width: 100%;
  position: relative;
}

.catering_banner::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, transparent, var(--secondary-color-5--));
  left: 0;
  bottom: 0;
  z-index: 1;
}

.hero-title {
  font-size: 46px;
  font-family: 'Delicy', sans-serif;
  color: var(--primary-color--);
  margin-bottom: 16px;       
  line-height: 1.2;
}

.hero-sub {
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  font-family: 'Shallot', sans-serif;
  max-width: 780px;
  margin: 0 auto;
  opacity: 0.95;
}


