body {
  background-color: #fffaf3;
  font-family: "Open Sans", sans-serif;
}
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}
.card {
  background-color: rgba(255, 255, 255, 0.9);
}

.site-footer {
  border-top: 1px solid #ccc;
  color: var(--primary-color);
  padding: 20px;
  text-align: center;
}

.bg-overlay {
  background-image: url("../img/pastries-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.15;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bakery-card {
  background: rgba(255, 255, 255, 0.93);
  border-radius: 16px;
  border: none;
}

.bakery-card:hover {
  transform: translateY(-5px);
}

.bakery-img {
  height: 220px;
  object-fit: cover;
}

.bakery-title {
  font-family: Georgia, serif;
  color: #6b3e26;
}

.price {
  font-size: 22px;
  color: #a04e2a;
  margin: 10px 0;
}

.unit {
  font-size: 14px;
  color: #777;
}

.bakery-btn {
  background: #c97b5c;
  color: white;
  border: none;
}

.bakery-btn:hover {
  background: #b06a4e;
}

/* Add this to your style.css */
.navbar-brand {
  font-size: 1.8rem; /* bigger bakery-style logo */
  font-weight: bold;
  color: #d35400; /* warm, friendly color */
}

.nav-link {
  font-size: 1.1rem;
  margin-right: 1rem;
}

.navbar .badge {
  font-size: 0.8rem;
  min-width: 20px;
  height: 20px;
}

.navbar {
  background: url("img/navbar-pattern.png");
  background-size: cover;
  background-repeat: no-repeat;
  background: #fff5e6; /* soft bakery cream */
  border-bottom: 3px solid #f6b26b; /* warm accent line */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 15px 15px;
}

.navbar .nav-link {
  color: #d35400; /* warm, pastry-like orange */
  font-weight: 500;
}

.navbar .nav-link:hover {
  color: #e67e22;
}

.navbar .nav-link .cart-icon {
  font-size: 1.3rem;
  position: relative;
}

.navbar .nav-link .cart-badge {
  background: #e74c3c;
  color: white;
  font-size: 0.7rem;
  top: -8px;
  right: -8px;
  border-radius: 50%;
  padding: 2px 6px;
  position: absolute;
}

/* ===== BAKERY NAVBAR ===== */

.bakery-navbar {
  background: #fff3e0;
  border-bottom: 3px solid #f4a261;
  padding: 12px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.bakery-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #c85a17;
  letter-spacing: 0.5px;
}

.navbar .nav-link {
  color: #7a3e0c;
  font-weight: 500;
  margin: 0 5px;
  transition: all 0.2s ease;
  border-radius: 8px;
}

.navbar .nav-link:hover {
  background: #ffe5c7;
  color: #b34700;
}

/* Cart badge */
.cart-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background: #e63946;
  color: white;
  font-size: 12px;
  padding: 2px 7px;
  border-radius: 50%;
  font-weight: bold;
}

/* Dropdown */
.bakery-dropdown {
  border-radius: 12px;
  border: 1px solid #f4a261;
}

.bakery-dropdown .dropdown-item:hover {
  background: #fff3e0;
}

/* Special buttons */
.logout-link {
  color: #c0392b !important;
}

.register-link {
  background: #f4a261;
  color: white !important;
  padding: 6px 12px !important;
  border-radius: 20px;
}

.register-link:hover {
  background: #e76f51 !important;
}
