body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9fafb;
  color: #1f2937;
}

.hero {
  background: url('./cassava.jpg') no-repeat center center/cover;
  height: 500px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px 30px;
  text-align: center;
  border-radius: 10px;
}

.overlay h1 {
  color: white;
  font-size: 28px;
  margin-bottom: 10px;
}

.overlay p {
  color: #d1d5db;
  font-size: 16px;
}

.container-theme {
  max-width: 700px ;
  margin: 40px auto;
  padding: 0 20px;
}

.upload-box {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-top: -100px; /* This moves it up into the hero */
   position: relative;
  z-index: 10;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.file-label {
  display: block;
  padding: 20px;
  border: 2px dashed #a7f3d0;
  border-radius: 8px;
  background: #f0fdf4;
  cursor: pointer;
  font-size: 16px;
  margin-bottom: 15px;
}

.file-label span {
  color: #065f46;
}

button {
  padding: 10px 25px;
  background-color: #10b981;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

button:hover {
  background-color: #059669;
}

.powered {
  font-size: 14px;
  color: #6b7280;
  margin-top: 10px;
}

.powered a {
  color: #3b82f6;
  text-decoration: none;
}

.info {
  margin-top: 40px;
}

.info h2 {
  margin-top: 30px;
  color: #065f46;
}

.info p {
  color: #374151;
  line-height: 1.6;
}