@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600;700&display=swap');

body {
  font-family: 'Titillium Web', sans-serif;
  background-color: #FFF6F9;
  margin: 0;
  padding: 0;
  color: #222;
}

body {
  background-image: url('images/8-bit-graphics-pixels-scene-with-village.jpg'); /* sesuaikan dengan path gambar Anda */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}


/* Kontainer utama */
.container {
  max-width: 500px;
  margin: 5% auto;
  padding: 2.5rem;
  background-color: #ffffff;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0px #888888;
  text-align: left;
  border-radius: 8px;
}

/* Header */
h1 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

p {
  font-size: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Grid 2 kolom */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
}

.form-group label {
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.form-group.full {
  grid-column: 1 / 3;
}

/* Input, select, textarea */
input, select, textarea {
  padding: 0.6rem;
  font-family: 'Titillium Web', sans-serif;
  font-size: 0.95rem;
  border: 1px solid #bbb;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}

/* Tombol Aksi */
.button-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn {
  font-family: 'Titillium Web', sans-serif;
  padding: 0.8rem 1.4rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid #000;
  box-shadow: 2px 2px 0px #000;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.1s ease-in-out;
  color: #000;
  background-color: #eee; /* fallback */
}

.btn:hover {
  transform: scale(1.05);
}

/* Warna tombol berdasarkan palet Gelato Days */
.btn-blue {
  background-color: #BCD8EC;
}

.btn-green {
  background-color: #D6E5BD;
}

.btn-yellow {
  background-color: #F9E1A8;
}

.btn-pink {
  background-color: #FFCBE1;
}

.btn-orange {
  background-color: #FFDAB4;
}

.btn-purple {
  background-color: #DCCCEC;
}

/* Output Prompt */
textarea#hasil {
  background-color: #fdfdfd;
  border: 2px dashed #ccc;
  font-family: 'Titillium Web', sans-serif;
  font-size: 0.95rem;
  resize: none;
  margin-top: 0.5rem;
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
}

/* Tombol donate mengambang */
.donate-float {
  position: fixed;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #D6E5BD;
  color: #000;
  padding: 10px 16px;
  text-decoration: none;
  font-family: 'Titillium Web', sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  border: 2px solid #000;
  box-shadow: 2px 2px 0 #000;
  border-radius: 8px;
  z-index: 999;
}

.donate-float:hover {
  transform: translateY(-50%) scale(1.05);
  background-color: #cde1af;
}

/* Footer */
.copyright {
  position: fixed;
  bottom: 5px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #444;
  background-color: transparent;
  font-family: 'Titillium Web', sans-serif;
  z-index: 999;
}
