/* 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;
  color: #8b4513;
  margin-bottom: 16px;
  font-weight: 600;
}

.card {
  border-radius: 12px;
}

.card-body {
  padding: 24px;
}

.form-control,
.form-select {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  padding: 10px 12px;
}

.form-control:focus,
.form-select:focus {
  border-color: #8b4513;
  box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.15);
}

.btn-coffee {
  background-color: #8b4513;
  border-color: #8b4513;
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
}

.btn-coffee:hover {
  background-color: #6d3610;
  border-color: #6d3610;
}

.btn-outline-secondary {
  border-radius: 8px;
}

.input-group-text {
  background-color: #f9f5f0;
  border: 1px solid #e0e0e0;
  border-radius: 8px 0 0 8px;
}

textarea {
  resize: vertical;
}

.roasting-item .input-group-text,
.special-item {
  min-width: 160px;
}

.product-item .input-group-text {
  min-width: 160px;
}

@media (max-width: 768px) {
  .container {
    padding: 16px;
  }

  .card-body {
    padding: 16px;
  }

  .roasting-item .input-group-text,
  .special-item,
  .product-item .input-group-text {
    min-width: 120px;
  }
}
