/*
  Custom CSS for Chair Lunch Dinner
  Warm, cozy evening colors for a welcoming vibe!
  (Hey future me, don't forget to check the sunset for inspo 🌅)
*/

/* 1. Warm Navbar Background */
.navbar {
  background: linear-gradient(90deg, #d35400 0%, #e67e22 100%) !important; /* sunset orange */
}

/* 2. Jumbotron Border & Background */
section.py-5.bg-light .bg-white {
  border: 3px solid #d35400;
  background: #fbeee6; /* warm cream */
  box-shadow: 0 0 20px rgba(211,84,0,0.10);
}

/* 3. Toasty Cards */
.card {
  border-radius: 1.5rem !important;
  background: #fff6e3; /* soft beige */
  border: 1.5px solid #e67e22;
}

/* 4. Warm Buttons */
.btn-primary {
  background-color: #d35400;
  border-color: #d35400;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #e67e22;
  border-color: #e67e22;
}

/* 5. Table Header */
.table-primary {
  background-color: #f9ca24 !important; /* gold */
  color: #3e2723 !important; /* dark brown */
}

/* 6. Footer */
footer.bg-primary {
  background: linear-gradient(90deg, #c0392b 0%, #d35400 100%) !important;
  color: #fffbe6;
}

/* 7. Text tweaks */
body, .card-text, .lead, .navbar, .footer {
  color: #3e2723;
}

/* 8. Just for fun: duplicate class (does nothing extra) */
.card.card { }

/* 10. Friendly reminder: Don't forget to water the plants in the lobby! */
