body {
  margin: 0;
  line-height: 1.6;
}

section {
  padding: 70px 20px;
}

* {
  transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

* {
  font-family: 'Poppins', sans-serif;
}
/* LOGO */
/* NAVBAR */
.navbar {
  background: #1b5e20;
  padding: 15px 0;
}

/* CONTAINER TENGAH */
.nav-container {
  display: flex;
  justify-content: center; /* INI KUNCINYA */
  align-items: center;
}

/* LOGO + TEXT */
.logo-center {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* LOGO BESAR */
.logo-center img {
  width: 65px; /* diperbesar */
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
}

/* TEXT */
.logo-center h2 {
  color: white;
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
}
body {
  background: #f5f5f5;
}

#menu {
  background: white;
}
#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* BATASIN cuma di hero */
  background: rgba(0,80,0,0.4); /* lebih soft */
  z-index: 1;
}

.hero-content {
  position: absolute;
  z-index: 2; /* biar di atas overlay */
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: white;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 18px;
}

.btn {
  background: #2ecc71;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
}

.btn:hover {
  background: #27ae60;
  transform: scale(1.05);
}

/* MENU */
#menu {
  padding: 40px;
}

.menu-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 20px;
}

.card {
  background: #e8f5e9;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: 0.3s;
}

.card:hover img {
  transform: scale(1.1);
}

.card button {
  background: green;
  color: white;
  border: none;
  padding: 8px;
  cursor: pointer;
}

/* CART */
#cart {
  border-top: 3px solid #2e7d32;
}

#cart button {
  background: #1b5e20;
  padding: 10px 20px;
  border-radius: 8px;
  color: white;
}

/* KEUNGGULAN */
.unggulan {
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.unggulan h2 {
  margin-bottom: 40px;
  font-size: 28px;
}

.unggulan-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 kolom */
  gap: 20px;
  max-width: 1000px; /* biar ga terlalu lebar */
  margin: auto; /* biar di tengah */
}

.unggulan-card {
  background: rgba(255,255,255,0.1);
  padding: 25px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.unggulan-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-8px) scale(1.02);
}

.unggulan-card h3 {
  margin-bottom: 10px;
}

.unggulan-card p {
  font-size: 14px;
}

@media (max-width: 768px) {
  .unggulan-container {
    grid-template-columns: repeat(2, 1fr); /* jadi 2 kolom di HP */
  }
}

/* TENTANG KAMI */
.tentang {
  padding: 60px 20px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  text-align: center;
}

.tentang h2 {
  font-size: 32px;
  color: #1b5e20;
  margin-bottom: 20px;
}

.tentang p {
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  line-height: 1.6;
  color: #2e7d32;
}

/* CARD STYLE */
.tentang-box {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tentang-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  width: 250px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.tentang-card:hover {
  transform: translateY(-8px);
}

.tentang-card h3 {
  color: #2e7d32;
  margin-bottom: 10px;
}

.tentang-card p {
  font-size: 14px;
  color: #555;
}

/* MAP */
.lokasi-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 20px;
  padding: 20px;
}

.lokasi-box {
  background: #e8f5e9;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.lokasi-box iframe {
  width: 100%;
  height: 200px;
  border: none;
  margin: 10px 0;
}

.jam {
  text-align: center;
  padding: 20px;
  background: #c8e6c9;
  margin-top: 20px;
}

/* HUBUNGI KAMI */
.sosial {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #c8e6c9, #e8f5e9);
}

.sosial h2 {
  font-size: 28px;
  color: #1b5e20;
  margin-bottom: 10px;
}

.sosial p {
  color: #2e7d32;
  margin-bottom: 30px;
}

/* CONTAINER */
.kontak-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* CARD */
.kontak-card {
  width: 250px;
  padding: 25px;
  border-radius: 15px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* WHATSAPP */
.kontak-card.wa {
  background: #25D366;
}

/* INSTAGRAM */
.kontak-card.ig {
  background: #1b5e20;
}

.kontak-card:hover {
  transform: translateY(-8px);
  opacity: 0.9;
}

.kontak-card h3 {
  margin-bottom: 10px;
}

.kontak-card p {
  font-size: 14px;
  color: white;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
  padding: 20px;
}

.menu-card {
  background: #e8f5e9;
  padding: 15px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
}

.menu-card:hover {
  transform: translateY(-10px) scale(1.03);
}

.menu-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.menu-card span {
  display: block;
  margin: 10px 0;
  font-weight: bold;
  color: #1b5e20;
}

.menu-card button {
  background: #2ecc71;
  border: none;
  padding: 8px 15px;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

/* VIDEO SECTION */
.video-section {
  padding: 60px 20px;
  text-align: center;
  background: #f5f5f5;
}

.video-section h2 {
  color: #1b5e20;
  margin-bottom: 10px;
}

.video-section p {
  color: #2e7d32;
  margin-bottom: 30px;
}

/* GRID */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

/* CARD */
.video-card {
  background: white;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.video-card:hover {
  transform: translateY(-8px);
}

/* VIDEO */
.video-card video {
  width: 100%;
  border-radius: 10px;
  margin: 10px 0;
}

/* TITLE */
.video-card h3 {
  color: #1b5e20;
  margin-bottom: 10px;
}

/* TEXT */
.video-card p {
  font-size: 14px;
  color: #555;
}

/* RESPONSIVE (HP) */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .unggulan-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }
}