/* General Page Background */
body {
  background-color: #FFF8DC;
  font-family: 'Antic Didone', sans-serif;
  color: #183153;
}

body, h1, h2, h3, h4, h5, h6, p, a, button, input, textarea {
  font-family: 'Antic Didone', serif;
}

/* Navbar */
.navbar {
  background-color: #FFF8DC;
  font-family: 'Antic Didone', serif;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
  top: 0;
  align-items: center;
}
.navbar .nav-link {
  color: #183153;
}
.navbar .nav-link.active {
  color: #198754;
}

/* Hero Section */
.hero-section {
  background-color: #FFF8DC;
}
.hero-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
}
.hero-img {
   max-width: 100%; 
  height: 500px; 
  object-fit: cover;
  border-radius: 10px;
  max-width: 100%;
}

/* Categories */
.categories-section {
  background-color: #fff;
}
.category-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0px 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s;
  min-height: 220px;
}

.category-card:hover {
  transform: translateY(-5px);
}

/* Pastel backgrounds */
.card-fruits { background-color: #fff0f0; }
.card-pantry { background-color: #ffffe0; }
.card-eco    { background-color: #e0ffe0; }

/* Wrapper box */
.icon-wrapper {
  width: 50px;   /* size of the white rounded square */
  height: 50px;
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* Shop Now link */
.shop-link {
  color: #198754;
  font-weight: 500;
  text-decoration: none;
}

.shop-link:hover {
  text-decoration: underline;
}

.footer {
  background-color: #183153;
  color: #FFF8DC;
  font-family: 'Antic Didone', serif;
}

.footer a.footer-link,
.footer a.footer-social {
  color: #FFF8DC;
  text-decoration: none;
}

.footer a.footer-link:hover,
.footer a.footer-social:hover {
  color: #ffffa0;
}

.footer-divider {
  border-color: #FFF8DC;
  opacity: 0.3;
}

