/* FAQ Section Custom Styling */
#faqAccordion .accordion-item, 
#faqLeft .accordion-item, 
#faqRight .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Subtle hover lift effect */
#faqAccordion .accordion-item:hover,
#faqLeft .accordion-item:hover, 
#faqRight .accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}

/* The Button (Question) */
.accordion-button {
    background-color: #ffffff !important;
    color: #4a4a4a !important;
    font-family: 'Cinzel', serif; /* Matching your headings */
    font-size: 1.05rem;
    padding: 20px;
    border: none !important;
}

/* When the accordion is open */
.accordion-button:not(.collapsed) {
    color: #8c6c4f !important; /* Using your gold/brown accent color */
    background-color: #ffffff !important;
    box-shadow: none;
}

/* The Icon (Chevron) color change */
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C8B6D9'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    background-size: 1.2rem;
}

/* The Answer Text */
.accordion-body {
    background-color: #ffffff;
    color: #666;
    line-height: 1.7;
    padding: 0 20px 25px 20px;
    font-size: 0.95rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .accordion-button {
        font-size: 0.9rem;
        padding: 15px;
    }
}

.menu-services {
  max-width: 1000px;
  margin: 0 auto;
  background: #fffaf3;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #e8ddc5;
}

.menu-services h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #b89e6a;
  margin-bottom: 0.5rem;
}

.menu-services p {
  font-family: 'TT Norms Pro';
  font-size: 1.1rem;
 
}

.service-category {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.service-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
}

.service-list {
  max-width: 500px;
}

.service-list h3 {
  font-family: 'Cinzel';
  font-size: 1.8rem;
  color: #a17c4d;
  margin-bottom: 1rem;
}

.service-item {
  font-family: 'TT Norms Pro';
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-left: 4px solid #C8B6D9;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.03);
  transition: background 0.3s;
}

.service-item strong {
  display: block;
  font-size: 1.1rem;
  color: #6d533c;
  margin-bottom: 0.3rem;
}

.service-item ul {
  margin: 0.5rem 0 0 1rem;
  padding: 0;
}

.service-item ul li {
  list-style: square;
  color: #5f4b35;
  font-size: 0.95rem;
}

h4 {
  font-family: 'Playfair Display', serif;
  color: #b89e6a;
  font-size: 1.3rem;
  margin-top: 2rem;
}

/* Service Card Styling */
.service-card {
    border-radius: 20px !important;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    background: #fff;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.service-img-container {
    height: 250px;
    overflow: hidden;
}

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

.service-card:hover .service-img-container img {
    transform: scale(1.1);
}

.brand-font.gold {
   font-family: 'Cinzel', serif;
    color: #8c6c4f;
    font-size: 1.8rem;
}

/* More Info Button */
.btn-more-info {
    background-color: transparent;
    border: 2px solid #C8B6D9;
    color: #C8B6D9;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.btn-more-info:hover {
    background-color: #C8B6D9;
    color: #fff;
}

/* Ensure all cards are the same height */
.h-100 {
    display: flex;
    flex-direction: column;
}

