body {
  font-family: "Inter", sans-serif;
  background-color: #f8f9fa;
}

/* --- Navbar Styles --- */
.navbar {
  border-bottom: 1px solid #e9ecef;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar-brand {
  font-weight: 700;
  color: #ff6f00; /* Orange color for the brand */
}
.navbar-brand .cart-icon {
  color: #ff6f00;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #343a40;
  padding-left: 1rem;
  padding-right: 1rem;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #ff6f00;
}

/* --- Hero Section Styles --- */
.hero-section {
  background-color: #ffc107; /* Main yellow/orange background */
  padding: 6rem 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-section p {
  font-size: 1.25rem;
  color: #333;
  max-width: 450px;
}

/* --- Recipe Form Styles --- */
.recipe-form textarea {
  min-height: 120px;
  border-radius: 0.5rem;
  border: 1px solid #ced4da;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.recipe-form textarea:focus {
  border-color: #ff6f00;
  box-shadow: 0 0 0 0.25rem rgba(255, 111, 0, 0.25);
}

.recipe-form .btn-primary {
  background-color: #ff6f00;
  border-color: #ff6f00;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  width: 100%;
}
.recipe-form .btn-primary:hover {
  background-color: #e66000;
  border-color: #e66000;
}

/* --- Hero Image --- */
.hero-image-wrapper {
  position: relative;
}
.hero-image {
  width: 100%;
  max-width: 550px;
  border-radius: 50%;
  border: 10px solid white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .navbar-nav {
    align-items: center;
    padding-top: 1rem;
  }
  .hero-section h1 {
    font-size: 2.8rem;
  }
  .hero-image-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 4rem 0;
    text-align: center;
  }
  .hero-section p {
    margin-left: auto;
    margin-right: auto;
  }
}
.recipe-header h1 {
  font-weight: bold;
}
.recipe-meta span {
  margin-right: 15px;
}
.instructions .list-group-item {
  border: none;
  padding-left: 0;
}
.instructions .list-group-item .step-number {
  background-color: #f8f9fa;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  color: #495057;
  margin-right: 15px;
}
.nutrition-facts {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 5px;
}
.nutrition-facts table {
  width: 100%;
}
.nutrition-facts th,
.nutrition-facts td {
  padding: 5px 0;
  border-bottom: 1px solid #dee2e6;
}
.nutrition-facts th {
  text-align: left;
  font-weight: bold;
}
.nutrition-facts td {
  text-align: right;
}
.fresh-recipes .card {
  border: none;
}
.fresh-recipes .card-title {
  font-weight: bold;
}
.subscription-box {
  background-color: #ffe5e5;
  padding: 30px;
  border-radius: 5px;
  text-align: center;
}
.subscription-box h2 {
  font-weight: bold;
}
.subscription-box .form-control {
  border-radius: 20px;
}
.subscription-box .btn {
  border-radius: 20px;
  background-color: #ff4d4d;
  border-color: #ff4d4d;
}
