/* style.css - Inspired by SOT Coffee Roaster (www.sotcoffee.com) */
/* Minimalist, warm, Japanese delicacy with Nordic simplicity */

body {
  font-family:
    system-ui,
    -apple-system,
    "Hiragino Kaku Gothic ProN",
    sans-serif;
  background-color: #f9f5f0; /* Warm off-white, coffee-inspired */
  margin: 0;
  padding: 0;
  line-height: 1.7;
  color: #444;
}

.container {
  max-width: 100%;
  padding: 24px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

h1 {
  font-size: 2rem;
  text-align: center;
  color: #8b4513; /* Warm coffee brown */
  margin-bottom: 8px;
  font-weight: 600;
}

.lead {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 1.2rem;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #8b4513;
  border-bottom: 2px solid #e6d8c8;
  padding-bottom: 10px;
  margin: 48px 0 24px 0;
}

/* Form groups */
.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #555;
}

.form-control,
input[type="date"],
input[type="number"] {
  display: block;
  width: 100%;
  font-size: 1.15rem;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #fff;
  box-sizing: border-box;
}

/* Shift add section */
.shift-add {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  font-size: 1.15rem;
  color: #555;
}

.checkbox-label input {
  margin-right: 10px;
}

/* Buttons - Warm coffee tones */
.btn {
  font-size: 1.25rem;
  padding: 18px;
  border-radius: 12px;
  font-weight: 600;
  width: 100%;
  margin-top: 20px;
  cursor: pointer;
}

.btn-success {
  background-color: #8b4513;
  border: none;
  color: white;
  box-shadow: 0 6px 16px rgba(139, 69, 19, 0.3);
}

.btn-success:active {
  transform: translateY(2px);
}

.btn-primary {
  background-color: #a5693a;
  border: none;
  color: white;
  box-shadow: 0 4px 12px rgba(165, 105, 58, 0.3);
}

.btn-outline-secondary {
  border: 2px solid #ccc;
  background: transparent;
  color: #666;
}

/* Responsive */
@media (min-width: 576px) {
  .container {
    max-width: 560px;
  }
  h1 {
    font-size: 2.4rem;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 740px;
  }
}

/* Product counts section */
.product-counts {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-item span {
  font-weight: 600;
  color: #555;
  min-width: 180px;
}

.product-item input {
  width: 100px;
  text-align: center;
}

/* Roasting dates section */
.roasting-dates {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.roasting-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.roasting-item span {
  font-weight: 600;
  color: #555;
  min-width: 120px;
}

.roasting-item input {
  width: 200px;
}

/* Special coffees section */
.special-coffees {
  display: grid;
  gap: 20px;
  margin-top: 8px;
}

.special-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.special-item span {
  font-weight: 600;
  color: #555;
}
