/* Custom styles for mylinklove.com — kept minimal to match the original */

html { scroll-behavior: smooth; }

/* Active nav indicator */
nav a.active { color: #f59e0b; }

/* Form input style */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e6e6ea;
  border-radius: 0.5rem;
  background: white;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #26262d;
  margin-bottom: 0.4rem;
}

/* Recipe card */
.recipe-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.recipe-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.1);
  border-color: #f59e0b;
}

.tag {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
}
.tag-vegetarian { background: #dceadd; color: #386340; }
.tag-meat       { background: #fbe3d3; color: #8c3b15; }
.tag-seafood    { background: #d5e6f0; color: #1c4a6e; }
.tag-more       { background: #f0e4d5; color: #7a5318; }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: #181820;
  color: #fbbf24;
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid #e6e6ea;
  background: white;
  color: #3f3f4a;
  cursor: pointer;
  transition: all 0.2s;
}
.chip:hover { border-color: #f59e0b; }
.chip.active {
  background: #181820;
  color: #fbbf24;
  border-color: #181820;
}

.fade-up { animation: fade-up 0.5s ease-out backwards; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
