
body {
  font-family: 'Poppins', sans-serif;

  /* Green gradient background for freshness */
  background: linear-gradient(135deg, #a8e6cf 0%, #56c596 50%, #37966f 100%);

  /* Subtle diagonal stripes for depth */
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.05) 10px,
    transparent 10px,
    transparent 20px
  );

  background-repeat: no-repeat;
  background-size: cover;

  /* Text color */
  color: #f0f9f4; /* light minty white for readability */
  
  margin: 0;
  padding: 0;
  min-height: 100vh;

  /* Smooth scrolling and subtle text shadow for depth */
  scroll-behavior: smooth;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Optional: headings slightly brighter */
h1, h2, h3, h4, h5, h6 {
  color: #184d03; /* pure white for emphasis */
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* hero */
.hero-section {
  padding: 40px 15px;
  background: linear-gradient(135deg, #007bff, #53ec2d);
  text-align: left;
  color: #17c717;
}

/* Product cards */
.product-card img {
  height: 200px;
  object-fit: cover;
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
}
.product-card {
  border-radius: .5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Buttons */
.btn {
  border-radius: 50px;
  padding: 6px 16px;
}
.btn-primary {
  background-color: #0077b6;
  border: none;
}
.btn-primary:hover {
  background-color: #005f86;
} 

/* Navbar custom styles */
.navbar {
  background: linear-gradient(90deg, #1e1f75, #064d69, #0caa4e) !important; /* green gradient */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 0.8rem 1rem;
  border-radius: 0 0 12px 12px;
}

.navbar .navbar-brand {
  font-size: 1.3rem;
  color: #ffffff !important; /* force white brand text */
  font-weight: 600;
}

.navbar .navbar-brand img {
  filter: brightness(0) invert(1); /* ensures logo works on dark bg */
}

.navbar-nav .nav-link {
  color: #e8f5e9 !important; /* light greenish text */
  font-weight: 500;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

/* Admin button */
.navbar .btn-outline-light {
  border-color: #e8f5e9;
  color: #e8f5e9;
  font-weight: 500;
  border-radius: 30px; /* pill shape */
  padding: 6px 16px;
  transition: all 0.3s ease;
}

.navbar .btn-outline-light:hover {
  background-color: #ffffff;
  color: #2e7d32; /* emerald green text */
  border-color: #ffffff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}

.logo-img,
.navbar .navbar-brand img {
  filter: none !important;
  max-height: 36px;
  width: auto;
  display: block;
}



/* Footer */
.site-footer {
  background: linear-gradient(135deg, #065e39 0%, #012b19 100%);
  color: #f0f9f4;
  padding: 60px 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -4px 8px rgba(0,0,0,0.1);
  font-size: 0.95rem;
}

.site-footer h4,
.site-footer h5 {
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
}

.site-footer p {
  color: #04c984;
  line-height: 1.6;
}

.site-footer a {
  color: #12da94;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.site-footer a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.site-footer .bg-black {
  background-color: rgba(0,0,0,0.2) !important; /* softened for gradient theme */
  color: #0fda93 !important;
}

.site-footer .bg-black a {
  color: #0fda8f !important;
}

.site-footer .bg-black a:hover {
  color: #2ad30c !important;
}

.site-footer i {
  color: #0ec95f;
  margin-right: 5px;
}

.site-footer ul {
  padding-left: 0;
  list-style: none;
}

.site-footer ul li {
  margin-bottom: 8px;
}

.site-footer ul li a {
  display: block;
  padding: 3px 0;
}


