body {
      font-family: 'Georgia', serif;
      background-color: #fdfaf7;
      color: #333;
      scroll-behavior: smooth;
    }

    .hero-header {
     
      position: relative;
      padding: 140px 20px 60px;
      text-align: center;
    }

    .hero-header::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      color: white;
    }

    .navbar {
      z-index: 3;
    }

    .about img {
      width: 100%;
      border-radius: 8px;
      max-height: 350px;
    }

    .services .card {
      border: none;
      background-color: transparent;
    }

    .gallery img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 8px;
    }

    footer {
      background-color: #eee;
      padding: 30px 20px;
      text-align: center;
      font-size: 0.95rem;
    }
    /* Style for open (expanded) FAQ */
.accordion-item .accordion-collapse.show .accordion-body {
  background-color: #fff7e6; /* light warm beige/yellow tone */
  border-top: 1px solid #ddd;
  color: #333;
}

/* Optional: Style question buttons */
.accordion-button {
  background-color: #f8f9fa;
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  background-color: #e9ecef; /* soft gray when open */
  color: #000;
  box-shadow: none;
}

/* Navbar Styling */
.classy-navbar {
  background: #191818;
  font-family: 'Georgia', serif;
  padding: 0.75rem 1rem;
}

.classy-navbar .navbar-brand {
  color: #d4af37;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.classy-navbar .nav-link {
  color: #f8f8f8 !important;
  font-weight: 500;
  margin-left: 1rem;
}

.classy-navbar .nav-link:hover {
  color: #d4af37 !important;
}
.classy-navbar .navbar-brand:hover {
    color: #f8f8f8 !important;; /* Change this to any hover color you want */
}

/* Hero Section */
.hero-header {
  /*background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('bg.jpg') center/cover no-repeat;
  */height: 50vh;
  padding-top: 100px;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.text-shadow {
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
/* Global font setup */
body {
  font-family: 'Lora', serif;
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
}

/* Headings & hero title */
h1, h2, h3, .navbar-brand {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}

/* Optional: Adjust hero size */
.hero-header h1 {
  font-size: 2.8rem;
}

.hero-header p {
  font-size: 1.25rem;
  font-family: 'Lora', serif;
}

h2 {
  color: #3b2f2f;
  font-size: 2rem;
  border-left: 4px solid #b68d2f;
  padding-left: 15px;
}

#about p {
  font-family: 'Lora', serif;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
}

.gallery-img {
  transition: transform 0.3s ease, opacity 0.3s ease;
  object-fit: cover;
  height: 220px;
}

.gallery-img:hover {
  transform: scale(1.05);
  opacity: 0.9;
  cursor: pointer;
}



/* Make navbar toggler icon white */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.6);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler:hover {
  border-color: #ffffff;
}
.bg-footer {
  background-color: #2e2e2e; /* softer than pure black */
}

.footer h5 {
  font-family: 'Playfair Display', serif;
  color: #e9c78a;
  font-size: 1.1rem;
}

.footer a:hover {
  color: #d4af37 !important;
  text-decoration: underline;
}

.footer hr {
  border-top: 1px solid rgba(255,255,255,0.15);
}
/* Arrows */
.scroll-btn {
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background-color: #343a40;
  color: #fff;
  z-index: 10;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Limit buttons to container edge */
.scroll-left {
  left: -20px; /* Adjust as needed for spacing */
}

.scroll-right {
  right: -20px;
}

@media (max-width: 768px) {
  .scroll-btn {
    display: none; /* Hide on mobile */
  }
}

.scroll-btn:hover {
  background-color: #b68d2f;
}



/* Hide scrollbar */
#funeralCarousel {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#funeralCarousel::-webkit-scrollbar {
  display: none;
}

/* Card Fix */
.card-fixed {
  min-width: 240px;
  max-width: 240px;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.card-img-top {
  height: 150px;
  object-fit: cover;
}
