/* Healthy Bowl 1 - Custom Styles */

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* Navbar */
.navbar {
  background-color: #f8f9fa;
}
.navbar-brand {
  color: #28a745 !important; /* Fresh Green */
}
.nav-link:hover {
  color: #ff7f50 !important; /* Energetic Orange */
}
/* Hero Banner Styling */
.hero-img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
}

.hero-caption {
  padding: 1rem;
}

@media (max-width: 768px) {
  .hero-caption h1 {
    font-size: 1.8rem;
  }
  .hero-caption p {
    font-size: 1rem;
  }
  .hero-caption a.btn {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 576px) {
  .hero-caption h1 {
    font-size: 1.5rem;
  }
  .hero-caption p {
    font-size: 0.9rem;
  }
  .hero-caption a.btn {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
}



/* Cards */
.package-card, .menu-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: transform 0.2s;
}
.package-card:hover, .menu-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Buttons */
.btn-success {
  background-color: #28a745;
  border: none;
}
.btn-warning {
  background-color: #ff7f50;
  border: none;
}
.btn-danger {
  background-color: #dc3545;
  border: none;
}

#seasonal-fruits .card-header {
  font-size: 1.2rem;
}
#seasonal-fruits ul li {
  margin-bottom: 0.5rem;
}
/* Style for fruit icons inside the seasonal fruits list */
#seasonal-fruits ul li img {
  vertical-align: middle;   /* Align icon with text baseline */
  margin-right: 8px;        /* Space between icon and text */
  height: 24px;             /* Consistent icon size */
  width: 24px;              /* Consistent icon size */
}

/* Add spacing between list items */
#seasonal-fruits ul li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  line-height: 1.5;
}

/* Card header styling */
#seasonal-fruits .card-header {
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

/* Optional: style for year-round staples inline icons */
#seasonal-fruits .card-body img {
  vertical-align: middle;
  margin: 0 6px 0 0;
  height: 22px;
  width: 22px;
}
#seasonal-fruits ul li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  line-height: 1.5;
}

#seasonal-fruits ul li i {
  margin-right: 8px;
  font-size: 1.2rem;
  vertical-align: middle;
}
#seasonal-fruits ul li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  line-height: 1.5;
}

#seasonal-fruits ul li strong {
  color: #2c3e50; /* Darker text for fruit names */
}


/* Footer */
.footer {
  background-color: #f8f9fa;
  padding: 30px 0;
  color: #555;
}
.footer p {
  margin: 0;
}
    .tagline { font-size: 1.5rem; font-weight: 500; }
    .package-card { border: 1px solid #ddd; border-radius: 8px; padding: 20px; margin-bottom: 20px; }
    .footer { background-color: #f8f9fa; padding: 30px 0; }
	
.package-card { border: 1px solid #ddd; border-radius: 10px; padding: 25px; margin-bottom: 30px; transition: transform 0.2s; }
    .package-card:hover { transform: scale(1.05); }
    .price { font-size: 1.2rem; font-weight: bold; color: #28a745; }
    .footer { background-color: #f8f9fa; padding: 30px 0; }