/* ====== CSS DESAIN AWAL (TANPA MODAL) ====== */

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7f9fa;
  color: #222;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== HEADER ===== */
.header {
  width: 100%;
  background: linear-gradient(90deg, #3a8dde 60%, #6dd5ed 100%);
  padding: 28px 0 18px;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 2px 12px #b8d5ef50;
}

/* ===== KONTEN UTAMA ===== */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ===== MENU ===== */
.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  width: 90%;
  max-width: 900px;
  margin: 40px auto;
}

.menu-item {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1976d2;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  transition: all .25s ease;
}

.menu-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,.15);
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 14px 0;
  font-size: .9rem;
  color: #777;
}