/* 🌸 DAPOER GLOBAL STYLE 🌸 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* 🌿 BODY (Gabungan semua versi) */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #eaffea 0%, #c8f5d6 100%);
  color: #333;
  overflow-x: hidden;
}

/* 🌿 NAVBAR (digabung dari semua versi) */
.navbar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  z-index: 10;
}

.logo {
  font-size: 1.7em;
  font-weight: 700;
  color: #27ae60;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo::before {
  content: "🥗";
  font-size: 1.4em;
}

.nav-links a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #27ae60;
}

.admin-btn {
  background: #2e8b57;
  color: white !important;
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.admin-btn:hover {
  background: #256c45;
}

/* ✅ Pesan Berhasil */
.message-box {
  background: #d4edda;
  color: #155724;
  padding: 12px;
  text-align: center;
  margin: 20px auto;
  width: 80%;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 🍴 Jumbotron */
.jumbotron {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #2e8b57, #6edb7b);
  color: white;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  animation: fadeIn 1.2s ease;
}

.jumbotron h1 {
  font-size: 3em;
  margin-bottom: 10px;
  animation: floatText 3s infinite ease-in-out;
}

.jumbotron p {
  font-size: 1.2em;
}

/* 🍛 Menu */
.menu-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  padding: 60px;
}

.menu-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.menu-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-bottom: 4px solid #6edb7b;
}

.menu-card h3 {
  margin: 15px 0 6px;
  font-size: 1.25em;
  color: #2e8b57;
}

.menu-card .price {
  color: #f57c00;
  font-weight: 600;
  margin-bottom: 15px;
}

.menu-card form {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-bottom: 20px;
}

/* 🌿 Checkout Container */
.checkout-container {
  max-width: 900px;
  margin: 60px auto;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  animation: fadeIn 0.6s ease;
}

h2 {
  text-align: center;
  color: #27ae60;
  margin-bottom: 30px;
}

/* 🌿 Input */
label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

input[type=text],
input[type=date] {
  width: 100%;
  padding: 12px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  margin-bottom: 18px;
  transition: 0.3s;
}

input:focus {
  border-color: #27ae60;
  box-shadow: 0 0 5px rgba(46, 204, 113, 0.4);
}

/* 🌿 Tabel */
table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 15px;
}

thead tr {
  background: #27ae60;
  color: white;
}

th, td {
  padding: 14px;
  text-align: center;
}

tbody tr:nth-child(even) {
  background: #f9f9f9;
}

/* 🌿 Tombol (Gabungan semua versi) */
.btn {
  display: inline-block;
  padding: 10px 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
}

.btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #239b56, #27ae60);
}

.btn-green {
  background: linear-gradient(135deg, #ffb347, #f57c00);
}

.btn-green:hover {
  background: linear-gradient(135deg, #ff9933, #e46d00);
}

/* 🌿 Tombol Qty */
.qty-form {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  background: #2ecc71;
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
}

.qty-btn:hover {
  background: #27ae60;
  transform: scale(1.05);
}

/* 🍰 Testimoni */
.testimoni {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  padding: 70px 20px;
  border-radius: 30px;
  max-width: 900px;
  margin: 80px auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.testimoni h2 {
  font-size: 1.8em;
  color: #2e8b57;
  margin-bottom: 25px;
}

.testimoni img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.testimoni img:hover {
  transform: scale(1.05) rotate(3deg);
}

/* 🌿 FOOTER (gabungan versi) */
footer {
  text-align: center;
  padding: 35px;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 80px;
  position: relative;
}

footer::after {
  content: "🍴";
  position: absolute;
  right: 25px;
  font-size: 1.4em;
  animation: bounce 2s infinite ease-in-out;
}

/* 🌿 ANIMASI */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatText {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
