/* ===== БАЗОВЫЕ НАСТРОЙКИ ===== */


body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  background: #f8f9fa;
  color: #333;
}   

/* ===== BOOTSTRAP OVERRIDES ===== */

/* Кнопки */
.btn {
  border-radius: 0.5rem !important;
  font-weight: 600 !important;
  padding: 0.6rem 1.2rem !important;
}

.btn-primary {
  background-color: #0026ba !important;
  border-color: #0027c1 !important;
  color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #001e91 !important;
  border-color: #001e91 !important;
}

.btn-danger {
  background-color: #c10000 !important;
  border-color: #c10000 !important;
  color: #fff !important;
}

.btn-danger:hover,
.btn-danger:focus {
  background-color: #900000 !important;
  border-color: #900000 !important;
}

/* Navbar */
.navbar {
  background-color: #0026ba !important;
}
.navbar .navbar-brand,
.navbar .nav-link {
  color: #fff !important;
  font-weight: 500 !important;
}
.navbar .nav-link:hover {
  color: #ffeb3b !important;
}

/* ===== СЕТКА НЕДЕЛИ ===== */

.week {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

/* Карточка дня */
.day {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.day:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.day h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #0027c1;
  text-align: center;
}

/* Блюда */
.dish {
  padding: 12px;
  border-radius: 10px;
  background: #f1f3f5;
  margin-bottom: 12px;
}
.dish strong {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
  color: #444;
}
.dish p {
  font-size: 14px;
  margin: 0;
  color: #666;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
  .week {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    padding: 15px;
    gap: 15px;
  }
  .day h2 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .week {
    grid-template-columns: 1fr;
    padding: 10px;
  }
  .day {
    padding: 15px;
  }
  .day h2 {
    font-size: 18px;
  }
  .dish strong {
    font-size: 15px;
  }
  .dish p {
    font-size: 13px;
  }
}

.order-alert {
  background: #6699FF;         /* нежно-синий фон */
  border: 1px solid #0027c1;   /* синий бордер */
  color: #FFFFFF;              /* основной цвет текста */
  padding: 15px 20px;
  border-radius: 0.75rem;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  margin: 20px auto;
  max-width: 600px;
}