:root {
  --primary: #c98a3c;
  --secondary: #8b5a2b;
  --dark: #0f0f0f;
  --card: #171717;
  --white: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: radial-gradient(
    circle at top center,
    rgba(255, 196, 87, 0.3) 0%,
    rgba(196, 118, 25, 0.25) 20%,
    rgba(92, 52, 15, 0.5) 45%,
    rgba(15, 10, 8, 0.95) 80%
  );
}

/* ================= NAVBAR ================= */

nav {
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  border-bottom: 1px solid rgba(182, 115, 21, 0.2);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.brand {
  display: flex;
  flex-direction: column;
}

.title {
  color: #b67315;
  font-weight: 700;
}

.tag {
  color: #ddd;
  font-size: 12px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a,
.nav-menu span {
  color: #b67315;
  text-decoration: none;
  font-weight: 700;
}

.nav-menu a:hover {
  color: #b67315;
}

.dropdown {
  position: relative;
}

.dropbtn {
  background: #f5f5f5;
  color: #8a5310;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.dropbtn:hover {
  background: rgba(255, 255, 255, 0.05);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 45px;
  left: 0;
  min-width: 180px;
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  z-index: 9999;
}

.dropdown-content a {
  display: block;
  padding: 12px 15px;
  color: white;
}

.dropdown-content a:hover {
  background: #222;
}

/* ================= HEADER ================= */

.hero {
  padding-top: 5px;
  text-align: center;
  padding-bottom: 5px;
}

.hero h1 {
  font-family: "Bebas Neue";
  font-size: 5rem;
  color: var(--primary);
}

.hero h1 span {
  color: white;
}

.hero p {
  max-width: 700px;
  margin: 20px auto;
  color: black;
  line-height: 1.8;
}

/* ================= MENU ================= */

.row {
  width: 95%;
  max-width: 1700px;

  margin: 50px auto;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 380px));

  justify-content: center;

  gap: 35px;
}

.menu-card {
  background: linear-gradient(
    145deg,
    rgba(25, 25, 25, 0.95),
    rgba(10, 10, 10, 0.95)
  );

  border-radius: 25px;

  overflow: hidden;

  border: 1px solid rgba(182, 115, 21, 0.25);

  transition: 0.4s;
}

.menu-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 15px 35px rgba(182, 115, 21, 0.25);
}

.menu-card img {
  width: 100%;

  height: 280px;

  object-fit: cover;

  display: block;
}

.menu-info {
  padding: 20px;
}
.menu-info p {
  color: whitesmoke;
}

.badge {
  display: inline-block;

  background: var(--primary);

  color: white;

  padding: 5px 12px;

  border-radius: 20px;

  font-size: 12px;
}

.menu-info h3 {
  margin-top: 15px;
  color: #ddd;
  font-size: 1.4rem;
}

.price {
  margin: 15px 0;

  color: #f8c471;

  font-size: 1.4rem;

  font-weight: bold;
}

.buy-box {
  display: flex;
  gap: 10px;
}

.buy-box input {
  width: 70px;

  padding: 10px;

  border: none;

  border-radius: 10px;

  text-align: center;
}

.buy-box button {
  flex: 1;

  border: none;

  border-radius: 10px;

  background: linear-gradient(90deg, var(--primary), var(--secondary));

  color: white;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.buy-box button:hover {
  transform: scale(1.03);
}

.operasional-wrapper {
  display: flex;
  justify-content: center;
  margin: 0 auto 25px;
  padding: 0 15px;
}

.operasional-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  padding: 9px 16px;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.operasional-status.buka {
  color: #8cff9b;
  background: rgba(46, 204, 113, 0.13);
  border: 1px solid rgba(46, 204, 113, 0.35);
}

.operasional-status.tutup {
  color: #ff8585;
  background: rgba(231, 76, 60, 0.13);
  border: 1px solid rgba(231, 76, 60, 0.35);
}

/* PRODUK SAAT TOKO TUTUP */
.menu-card.toko-tutup {
  opacity: 0.72;
}

.buy-box input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.buy-box button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  background: #555 !important;
  color: #ccc !important;
}

.closed-info {
  margin-top: 8px;
  color: #ff8585;
  font-size: 11px;
  font-weight: 500;
}

/* ================= HAMBURGER ================= */

.hamburger {
  display: none;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  nav {
    flex-wrap: wrap;
  }

  .nav-menu {
    width: 100%;
    flex-direction: column;
    display: none;
    padding-top: 20px;
  }

  .nav-menu.show {
    display: flex;
  }

  .hamburger {
    display: block;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
  }
}

@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }
}
.operasional-status {
  padding: 8px 13px;
  font-size: 11px;
}
