:root {
        --primary-color: #008000;
        --primary-light: #33a033;
        --primary-lighter: #66bf66;
        --primary-dark: #006600;
        --primary-darker: #004d00;
        
        --secondary-color: #ffd700;
        --secondary-light: #ffe033;
        --secondary-lighter: #ffe866;
        --secondary-dark: #cca300;
        --secondary-darker: #997c00;
        
        --tertiary-color: #ff0000;
        --tertiary-light: #ff3333;
        --tertiary-lighter: #ff6666;
        --tertiary-dark: #cc0000;
        --tertiary-darker: #990000;
        
        --bg-light: #eee;
        --bg-white: #fff;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background-color: var(--bg-light);
    }

    /* Ethiopian pattern border */
    .ethiopian-border {
        border: 10px solid;
        border-image: repeating-linear-gradient(
            45deg,
            var(--primary-color) 0,
            var(--primary-color) 20px,
            var(--secondary-color) 20px,
            var(--secondary-color) 40px,
            var(--tertiary-color) 40px,
            var(--tertiary-color) 60px
        ) 20;
    }

    .hero {
        height: 100vh;
        display: flex;
        align-items: center;
        text-align: center;
        color: white;
        position: relative;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 10px;
        background: linear-gradient(to right, 
            var(--primary-color) 33%,
            var(--secondary-color) 33%,
            var(--secondary-color) 66%,
            var(--tertiary-color) 66%
        );
    }

    .hero h1 {
        font-size: 4rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

/* Fullscreen Background for Each Slide */
.hero-slide {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  z-index: -1;
  /* Keeps background behind the content */
}

/* Content Styling */
.carousel-content {
  background: rgba(0, 0, 0, 0.2);
  /* Overlay for better text visibility */
  padding: 2rem;
  border-radius: 10px;
  width: 100%;
  height: 100vh;
  /* Matches viewport height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  /* Keeps content above the background */
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Slight dark overlay for text readability */
  z-index: 1;
}

.carousel-indicators {
  margin-left: 0px !important;
  margin-bottom: 10% !important;
}

.carousel-control-prev,
.carousel-control-next {
  color: white;
  z-index: 1000;
}

#heroCarousel {
  height: 100vh !important;
}
.service-card {
    transition: transform 0.3s ease;
    height: 100%;
    background: white;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .service-card:hover {
        transform: translateY(-10px);
    }

    .card-body {
        padding: 2rem;
    }

    .about-section {
        background-color: var(--bg-white);
        overflow: hidden;
    }

    .about-section::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: url('https://placehold.co/100x100') center/50px 50px repeat;
        opacity: 0.1;
    }

    .custom-btn {
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    .btn-outline-light {
      background-color: var(--secondary-color) !important;
      color: #000;
    }

    .custom-btn::after {
        content: '';
        position: absolute;
        width: 0;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, 0.2);
        transition: width 0.3s ease;
    }

    .custom-btn:hover::after {
        width: 100%;
    }

    .btn-primary {
        background-color: var(--primary-color);
        border: none;
    }

    .btn-primary:hover {
        background-color: var(--primary-dark);
    }

    .navbar {
        transition: all 0.3s ease;
    }

    .navbar.scrolled {
        background-color: var(--primary-color) !important;
    }

    .navbar-brand {
        font-weight: bold;
        color: var(--secondary-color) !important;
    }
    .nav-link {
      border-radius: 0.5rem;
      transition: all 0.3s ease-in-out;
    }
    .nav-link:hover {
      background-color: var(--secondary-color);
      color: #000 !important;
    }

    .active-link {
      background-color: var(--primary-light);
      color: #000;
      transition: all 0.3s ease-in-out;
    }
    .active-link:hover {
      background-color: var(--primary-color);
    }

    .section-title {
        font-size: 2.5rem;
        color: var(--tertiary-color);
        margin-bottom: 2rem;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(to right, 
            var(--primary-color) 33%,
            var(--secondary-color) 33%,
            var(--secondary-color) 66%,
            var(--tertiary-color) 66%
        );
        border-radius: 5px;
    }

    .card-title {
        color: var(--primary-dark);
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }

    footer {
        background-color: var(--primary-light);
        padding: 2rem 0;
        position: relative;
    }

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(to right, 
            var(--primary-color) 33%,
            var(--secondary-color) 33%,
            var(--secondary-color) 66%,
            var(--tertiary-color) 66%
        );
    }

    .social-icons a {
        text-decoration: none;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: rgb(255, 255, 255);
        transition: all 0.3s ease;
        color: var(--primary-dark) !important;
    }

    .social-icons a:hover {
        transform: translateY(-5px);
        background-color: var(--tertiary-color);
        color: var(--secondary-color) !important;
    }

    /* Ethiopian-inspired decorative elements */
    .ethiopian-pattern {
        height: 10px;
        background: repeating-linear-gradient(
            45deg,
            var(--primary-color) 0px,
            var(--primary-color) 10px,
            var(--secondary-color) 10px,
            var(--secondary-color) 20px,
            var(--tertiary-color) 20px,
            var(--tertiary-color) 30px
        );
    }

    .menu-item {
        border-left: 4px solid var(--primary-color);
        padding-left: 1rem;
        margin: 1rem 0;
    }

    /* Coffee ceremony section */
    .coffee-ceremony {
        background-color: var(--primary-lighter);
        padding: 2rem;
        border-radius: 15px;
        margin-top: 2rem;
        color: #000;;
    }

    .coffee-ceremony h3 {
        color: var(--primary-darker);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2.5rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .custom-btn {
            padding: 12px 24px;
        }
    }

    /* menu section */
    #menu img {
      width: 100%;
      /* Ensure the image takes up the full width of the column */
      height: auto;
      /* Maintain the aspect ratio */
      object-fit: cover;
      /* Ensure the image covers the container without distortion */
      border-radius: 8px;
      /* Optional: Add rounded corners for aesthetics */
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      /* Optional: Add a shadow for better visual appearance */
  }

  /*styling for catering page */

  .section-header {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .section-header h2 {
    display: inline-block;
    padding: 0 20px;
    background-color: var(--bg-light);
    position: relative;
    z-index: 1;
    border-radius: 2rem;
  }
  
  .section-header::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 2px solid var(--primary-color);
    z-index: 0;
  }
  
  .catering-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
  .catering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  }
  
  .catering-card-header {
    background: linear-gradient(
    135deg,
      var(--primary-color),
      var(--secondary-color)
    );
    color: white;
    text-align: center;
  }
  
  .testimonial-card {
    background-color: white;
    border-left: 5px solid var(--tertiary-color);
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .custom-btn {
    background-color: var(--primary-color);
    border: none;
    transition: all 0.3s ease;
  }
  
  .custom-btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
  }
  .menu-highlight {
    background-color: var(--tertiary-light);
    color: white !important;
  }
  
  .process-step {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .process-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
  }
  
  .gallery-item img {
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  #cateringGalleryCarousel .carousel-item img {
    object-fit: cover;
    height: 250px;
    width: 100%;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
  }
  .service-card {
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    transition: transform 0.3s;
  }
  .service-card:hover {
    transform: scale(1.05);
  }
  .cta-section {
    background: var(--secondary-color);
    color: black;
  }

  .card-body{
   background:#004225;
   color: #fff;
  }

  /* Small screens and below: Add background color */
@media (max-width: 992px) {
  .navbar {
    background-color:var(--primary-color) !important; /* Green background with slight transparency */
  }
}
  /* Small screens and below: Add background color */
  @media (max-width: 378px) {
    .fa-bounce{
      display: none;
    }
  }
  