body {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dark-mode {
  background-color: #121212 !important;
  color: #f8f9fa;
}

.dark-mode .card {
  background-color: #1e1e1e;
  color: #f8f9fa;
  border-color: #444;
}

.dark-mode .form-select,
.dark-mode .form-control {
  background-color: #2b2b2b;
  color: #f8f9fa;
  border-color: #555;
}

.dark-mode .form-select:focus,
.dark-mode .form-control:focus {
  background-color: #2b2b2b;
  color: #f8f9fa;
}

.dark-mode .form-check-label,
.dark-mode .form-label,
.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode p,
.dark-mode label,
.dark-mode li,
.dark-mode strong,
.dark-mode .text-muted {
  color: #f8f9fa !important;
}

.dark-mode .alert {
  color: inherit;
}

.dark-mode .alert-danger {
  background-color: #842029;
  color: #f8d7da;
  border-color: #842029;
}

.dark-mode .alert-success {
  background-color: #0f5132;
  color: #d1e7dd;
}

.dark-mode .alert-warning {
  background-color: #664d03;
  color: #fff3cd;
}

.dark-mode .btn-outline-secondary {
  color: #f8f9fa;
  border-color: #aaa;
}

.dark-mode .btn-outline-secondary:hover {
  background-color: #f8f9fa;
  color: #121212;
}

.form-check-input {
  border: 2px solid #6c757d;
}

.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-check-label {
  font-weight: 500;
}

.step-card {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.fade-out {
  opacity: 0;
  transform: translateY(12px);
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.landing-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  font-weight: 600;
  font-size: 0.9rem;
}

.dark-mode .hero-badge {
  background: rgba(255, 255, 255, 0.08);
  color: #f8f9fa;
}

.landing-feature-list {
  padding-left: 1.15rem;
}

.translation-box {
  background: rgba(13, 110, 253, 0.08);
  border: 1px solid rgba(13, 110, 253, 0.2);
  border-radius: 0.5rem;
  padding: 0.9rem;
}

.dark-mode .translation-box {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.dish-image {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.content-section {
  margin-top: 2rem;
}

.fluff-card {
  height: 100%;
}

.fluff-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-card {
  font-size: 0.95rem;
}
