.logo img {
  max-height: 80px;   /* ukuran aman & profesional */
  width: auto;
}

.logo a {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 48px;     /* sesuaikan, jangan auto */
  width: auto;
}


:root {
  --green: #5aa832;
  --blue: #0f3c5f;
  --dark: #1e1e1e;
  --light: #f8f9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Update Dropdown Style */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
  z-index: 100;
  border-radius: 4px;
  top: 100%;
}

.dropdown-content a {
  color: var(--blue) !important;
  padding: 12px 16px;
  display: block;
  margin: 0 !important;
  font-size: 14px;
  border-bottom: 1px solid #f1f1f1;
}

.dropdown-content a:hover {
  background-color: #f8f9fa;
  color: var(--green) !important;
}

.dropdown:hover .dropdown-content {
  display: block;
}

body {
  font-family: Arial, sans-serif;
  color: var(--dark);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* HEADER */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: var(--blue);
  font-weight: 600;
}

.btn-nav {
  background: var(--green);
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  width: 100%;
  /* Gunakan !important sementara untuk memastikan tidak tertimpa settingan lain */
  background: url("images/hero.png") center / cover no-repeat !important;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(15, 60, 95, 0.65),
    rgba(90, 168, 50, 0.65)
  );
  z-index: 1; /* Overlay di level 1 */
}

.hero-content {
  position: relative;
  z-index: 2; /* Konten harus di atas level 1 */
  max-width: 900px;
  padding: 0 20px;
}


/* SECTIONS */
section h2 {
  color: var(--blue);
  margin-bottom: 30px;
}

.origin {
  background: #f8f9fa;
}

.origin-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.origin-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 10px;
  border-top: 4px solid var(--green);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.origin-card:hover {
  transform: translateY(-5px);
}

.origin-card h3 {
  color: var(--blue);
  margin-bottom: 15px;
}

.origin-card p {
  font-size: 15px;
  color: #333;
}


/* PRODUCTS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.product-content {
  padding: 25px;
}

.product-content h3 {
  color: var(--blue);
  margin-bottom: 12px;
}

.product-content p {
  font-size: 15px;
  color: #333;
}


/* QUALITY */
.quality-list {
  list-style: none;
}

.quality-list li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

/* FOOTER */
.footer {
  background: var(--blue);
  color: #fff;
}

.footer a {
  color: #fff;
  display: block;
  margin-top: 8px;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  background: #0a2a42;
  font-size: 14px;
}

/* --- Tambahan CSS untuk Navigation & Hamburger --- */

/* Sembunyikan Checkbox & Hamburger secara default (Desktop) */
:root {
  --green: #5aa832;
  --blue: #0f3c5f;
  --dark: #1e1e1e;
  --light: #f8f9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: var(--dark);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* --- HEADER & NAV DESKTOP --- */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img {
  max-height: 60px;
  width: auto;
}

/* Sembunyikan checkbox & hamburger di desktop */
.menu-toggle { display: none; }
.hamburger { display: none; }

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin-left: 25px;
  text-decoration: none;
  color: var(--blue);
  font-weight: 600;
}

.btn-nav {
  background: var(--green);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 4px;
}

/* --- RESPONSIVE MOBILE (PERBAIKAN) --- */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
    transition: 0.3s;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%; /* Sembunyi di kanan */
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 30px;
    gap: 20px;
    transition: 0.4s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  }

  .nav-links a {
    margin-left: 0;
    width: 100%;
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
  }

  .btn-nav {
    border-bottom: none !important;
    text-align: center;
    margin-top: 10px;
  }

  /* Animasi buka menu */
  .menu-toggle:checked ~ .nav-links {
    right: 0;
  }

  /* Animasi Icon X */
  .menu-toggle:checked ~ .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
  .menu-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
  .menu-toggle:checked ~ .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
}

/* --- SISA CSS HERO & SECTIONS (Tetap Sama) --- */
.hero { background: linear-gradient(120deg, var(--blue), var(--green)); color: #fff; }
.hero-content { padding: 100px 20px; }
.origin-grid, .product-grid, .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.products { background: var(--light); }
.product-grid article { background: #fff; padding: 25px; border-left: 4px solid var(--green); }
.footer { background: var(--blue); color: #fff; padding: 40px 0 0; }
.footer a { color: #fff; display: block; margin-top: 8px; text-decoration: none; }
.footer-bottom { text-align: center; padding: 20px; background: #0a2a42; margin-top: 40px; }