/* Font */
body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
  }
  
  /* Navbar */
  .bg-bakery {
    background-color: #1F501F;
  }
  
  .nav-link {
    font-size: 18px;
    color: #fff !important;
    transition: color 0.3s ease;
  }

  .active{
    color: #F2C849 !important;
    transition: color 0.3s ease;  
  }
  
  .nav-link:hover {
    color: #F2C849 !important;
  }
  
  .btn-light:hover {
    background-color: #F2C849;
    color: #1F501F;
  }

  /* Solid dropdown background for mobile menu */
@media (max-width: 991.98px) {
  .custom-navbar .navbar-collapse {
    background-color: #1F501F; /* Dark green or any solid color you prefer */
    padding: 1rem;
    border-radius: 0 0 10px 10px;
  }

  .custom-navbar .nav-link {
    color: #fff !important;
  }

  .custom-navbar .nav-link:hover,
  .custom-navbar .nav-link.active {
    color: #F2C849 !important;
  }

  .custom-navbar .btn {
    color: #1F501F;
    background-color: #fff;
    margin-top: 10px;
  }

  .custom-navbar .btn:hover {
    background-color: #F2C849;
    color: #1F501F;
  }
}

/* Default transparent navbar (for desktop) */
.custom-navbar {
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  transition: background-color 0.3s ease;
}

/* Solid background once scrolled */
.custom-navbar.scrolled {
  background-color: #1F501F !important;
}


  
   
  /* Prevent flicker during fade */
.carousel-item {
    transition: opacity 1s ease-in-out;
    backface-visibility: hidden;
    height: 500px;
    background-color: #000; /* fallback background */
  }
  
  /* Images should fully cover the space */
  .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    display: block;
  }
  
  /* Full screen overlay */
  .full-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    padding: 20px;
  }
  
  /* Carousel Text */
  .carousel-caption h1 {
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    animation: fadeInUp 1s ease-in-out;
    font-weight: 100;
    font-style: italic;
  }
  
  .carousel-caption .btn {
    background-color: #1F501F;
    border: none;
    transition: all 0.3s ease;
  }
  
  .carousel-caption .btn:hover {
    background-color: #F2C849;
    color: #1F501F;
  }
  
  /* Mobile Styling */
  @media (max-width: 768px) {
    .carousel-caption h1 {
      font-size: 2rem;
      padding: 0 15px;
    }
  
    .carousel-caption .btn {
      font-size: 1rem;
      padding: 10px 20px;
    }
  }

  /* About Us Section */
.about-section {
    background-color: #fff;
  }
  
  .about-heading {
    font-family: 'Roboto', cursive;
    font-size: 2.5rem;
    color: #F2C849;
    font-style: italic;
    font-weight: 600;
  }
  
  .about-section p {
    font-size: 1.05rem;
    line-height: 1.8;
  }
  
  .about-section .btn-success {
    background-color: #1F501F;
    border: none;
  }
  
  .about-section .btn-success:hover {
    background-color: #F2C849;
    color: #1F501F;
  }

  /* Menu Section */
.menu-section {
    background-color: #fff;
  }
  
  .section-heading {
    font-family: 'Roboto', cursive;
    font-size: 2.5rem;
    color: #F2C849;
    font-style: italic;
    font-weight: 600;
  }
  
  .divider {
    width: 80px;
    height: 4px;
    background-color: pink;
    position: relative;
  }
  
  .divider::before {
    content: "▲";
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    color: pink;
    font-size: 18px;
  }
  
  .menu-img {
    height: 100px;
    transition: transform 0.3s ease;
  }
  
  .menu-img:hover {
    transform: scale(1.05);
  }

  .menu-section {
    background-color: #f7df734f;
  }
  
  /* Responsive fix for small screens */
  @media (max-width: 576px) {
    .menu-section h6 {
      font-size: 0.95rem;
    }
  
    .menu-img {
      margin-bottom: 10px;
    }
  }


  .inquiry-section {
    background-color: #fef9f1; /* Soft cream background */
  }
  
  .inquiry-section .section-heading {
    font-family: 'Roboto', cursive;
    font-size: 2.2rem;
    color: #F2C849;
    font-style: italic;
    font-weight: 600;
  }
  
  .inquiry-section .form-control {
    border-radius: 8px;
    border: 1px solid #ccc;
  }
  
  .inquiry-section .btn-success {
    background-color: #1F501F;
    border: none;
    transition: all 0.3s ease;
  }
  
  .inquiry-section .btn-success:hover {
    background-color: #F2C849;
    color: #1F501F;
  }

  .footer-section {
    background-color: #258025; /* Dark background */
    color: #ccc;
  }
  
  .footer-section h6 {
    color: #fff;
    margin-bottom: 1rem;
  }
  
  .footer-section p {
    font-size: 0.95rem;
    color: #bbb;
  }
  
  .footer-logo {
    max-width: 120px;
  }
  
  .btn-info {
    background-color: #00bcd4;
    border: none;
  }
  
  .btn-info:hover {
    background-color: #0097a7;
  }
  
  .btn-outline-light:hover {
    background-color: #fff;
    color: #1F501F;
    border-color: #fff;
  }
  
  .social-icon {
    background-color: #333;
    color: #bbb;
    padding: 10px;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s ease;
  }
  
  .social-icon:hover {
    background-color: #F2C849;
    color: #1F501F;
  }
  
  .about-hero {
    position: relative;
    background-image: url('../images/slide1.jpeg'); /* Your hero image */
    background-size: cover;
    background-position: center;
    height: 400px;
    color: #fff;
    z-index: 1;
    overflow: hidden;
  }
  
  /* Overlay */
  .about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 16, 14, 0.6); /* Semi-transparent green */
    z-index: -1;
  }
  
  
  /* About Section */
  .about-content p {
    line-height: 1.8;
  }
  
  .section-heading {
    font-family: 'Roboto', cursive;
    font-size: 2.2rem;
    color: #F2C849;
    font-style: italic;
    font-weight: 600;
  }
  
  .footer-logo {
    max-width: 120px;
  }

  .menu-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(31, 80, 31, 0.6)),
                url('../images/slide1.jpeg') no-repeat center center;
    background-size: cover;
    height: 300px;
  }
  
  .section-heading {
    font-family: 'Roboto', cursive;
    color: #F2C849;
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .card img {
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
  }
  
  .card h6 {
    font-size: 1rem;
    color: #1F501F;
  }
  
  .card p {
    font-size: 0.9rem;
  }
  
  /* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    font-size: 24px;
    padding: 14px 16px;
    border-radius: 50%;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: transform 0.3s ease;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebc59;
    color: white;
  }
  
  .modal-content {
    border-radius: 12px;
  }
  
  .modal-header {
    border-bottom: none;
  }
  
  .btn-close {
    font-size: 1rem;
  }
  
  
  
  