body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

/* HEADER */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 56px;
}

.brand span {
  font-size: 20px;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.site-header h1 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 1px;
}

.site-header nav a {
  margin-left: 16px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

/* HERO */
<script>
  const slides = document.querySelectorAll('.slide');
  let current = 0;

  setInterval(() => {
    slides[current].classList.remove('active');
    current = (current + 1) % slides.length;
    slides[current].classList.add('active');
  }, 5000);
</script>

/* CONTENT */
.section {
  padding: 60px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.section h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.card {
  background: #ffffff;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}

footer {
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  padding: 24px;
  text-align: center;
  font-size: 13px;
  color: #777;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 58, 43, 0.55);
}

.hero-text {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

.hero-text h2 {
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: #ffffff;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.45);
}

.hero-text p {
  font-size: 18px;
  color: #f0f0f0;
  text-shadow:
    0 1px 4px rgba(0, 0, 0, 0.45);
}
.hero-text p {
  color: #f0f0f0;
  text-shadow:
    0 1px 4px rgba(0, 0, 0, 0.45);
}
@media (max-width: 768px) {

/* HEADER */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.brand img {
  height: 36px;
}

/* NAV DESKTOP */
.nav-menu a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

/* HAMBURGER BUTTON */
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #eaeaea;
    display: none;
    flex-direction: column;
  }

  .nav-menu a {
    padding: 14px;
    border-bottom: 1px solid #f0f0f0;
    margin: 0;
  }

  .nav-menu.active {
    display: flex;
  }
}

  /* HIDE DESKTOP NAV ON MOBILE */
  nav {
    display: none;
  }
.nav-menu {
  transition: all 0.3s ease;
}
  /* HERO */
  .hero-slider {
    height: 420px;
  }

  .hero-text h2 {
    font-size: 26px;
    letter-spacing: 1px;
  }

  .hero-text p {
    font-size: 13px;
  }

  /* CONTENT */
  .section {
    padding: 40px 16px;
  }

  .values {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
/* =========================
   BASE / GLOBAL
   ========================= */
/* body, header, nav, hero, dll */


/* =========================
   MENU PAGE (DESKTOP)
   ========================= */
.menu-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 20px;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.menu-list img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  cursor: zoom-in;
}


/* =========================
   MOBILE RESPONSIVE (GLOBAL + MENU)
   ========================= */
@media (max-width: 768px) {

  /* NAV */
  nav {
    display: none;
  }

  .nav-menu {
    transition: all 0.3s ease;
  }

  /* HERO */
  .hero-slider {
    height: 420px;
  }

  .hero-text h2 {
    font-size: 26px;
    letter-spacing: 1px;
  }

  .hero-text p {
    font-size: 13px;
  }

  /* CONTENT */
  .section {
    padding: 40px 16px;
  }

  .values {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* MENU PAGE MOBILE */
  .menu-page {
    padding: 24px 14px;
  }

  .menu-list img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
  }

}
/* =========================
   MENU MODAL (ZOOM)
   ========================= */
.menu-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.menu-modal img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  cursor: zoom-out;
}
/* =========================
   TANAMAN LIST PAGE
   ========================= */

.tanaman-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tanaman-item {
  display: flex;
  gap: 14px;
  text-decoration: none;
  color: #333;
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.tanaman-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.tanaman-info h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.tanaman-info p {
  margin: 0;
  font-size: 13px;
  color: #666;
}
/* =========================
   PLANT GALLERY
   ========================= */
.plant-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.plant-gallery img {
  width: 100%;
  border-radius: 12px;
  cursor: zoom-in;
}

/* HERO IMAGE */
.plant-gallery img:first-child {
  grid-column: 1 / -1;
  max-height: 420px;
  object-fit: cover;
  cursor: default;
}
.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.image-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
/* =========================
   CARD HOVER EFFECT
   ========================= */

.card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.card {
  cursor: pointer;
}
.card h4 {
  transition: color 0.3s ease;
}

.card:hover h4 {
  color: #2e7d5b; /* hijau tenang */
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
  max-width: 420px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #fafafa;
  text-decoration: none;
  color: #333;
  transition: background 0.25s ease, transform 0.2s ease;
}

.contact-item:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.contact-item .icon {
  font-size: 26px;
  line-height: 1;
}

.contact-item .text {
  font-size: 14px;
  line-height: 1.4;
}
.contact-item .icon svg {
  width: 26px;
  height: 26px;
  fill: #111;
}

.contact-item:hover .icon svg {
  fill: #2f6f4e; /* hijau suraloka vibe */
}
.contact-item:hover {
  transform: translateY(-2px);
}
/* CONTACT SECTION */
.contact-section {
  margin-top: 3rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ITEM */
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;

  text-decoration: none;
  color: #222;

  padding: 1rem;
  border-radius: 12px;

  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-item:hover {
  background: #f4f4f4;
  transform: translateX(4px);
}

/* ICON */
.contact-item i {
  font-size: 1.8rem;   /* INI YANG NGIKAT UKURAN */
  width: 40px;
  text-align: center;
}

/* TEXT */
.contact-item strong {
  display: block;
  font-size: 1rem;
}

.contact-item span {
  font-size: 0.9rem;
  color: #666;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #222;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.contact-item:hover {
  background: #f5f5f5;
}

.contact-item .icon i {
  font-size: 1.6rem; /* INI KUNCI */
  width: 32px;
  text-align: center;
}

.contact-item .text {
  font-size: 0.95rem;
  line-height: 1.4;
}
/* =====================
   RUANG TENANG GALLERY
===================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* =====================
   LIGHTBOX
===================== */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  animation: zoomIn 0.25s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.95); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}
.gallery img {
  pointer-events: auto;
  cursor: zoom-in;
}
.gallery-grid img {
  width: 100%;
  height: 220px;              /* konsisten */
  object-fit: cover;          /* potong rapi */
  border-radius: 12px;
  cursor: zoom-in;
}
.linlab .subtitle {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 6px;
}

.linlab .cta {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 16px;
}
/* ===== MOBILE CTA STRONG MODE ===== */

@media (max-width: 768px) {
  .card {
    background: #2f2a24;   /* hitam earthy */
    border-color: #2f2a24;
    color: #ffffff;
  }

  .card h3,
  .card p {
    color: #ffffff;
  }

  .card {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
}
.hero-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
