/* FONT & DASAR */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fff;
}

h2 {
    color: #725e34;
    margin-bottom: 15px;
}

/* === NAVBAR === */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #725e34;
    padding: 15px 60px;
    background-color: rgb(229, 190, 138,0.8);
    border-bottom: 1px solid var #f4e3b2; 
    top :0;
    left: 0;
    right: 0;
    z-index: 9999;

}

.navbar .navbar-logo{
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    font-style: italic;
}

.navbar .navbar-logo span{
    color: #ffcc66;
}
.logo img {
    width: 120px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffcc66;
}

/* === HERO === */
.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* === ABOUT === */
.about-preview {
    text-align: center;
    padding: 60px 20px;
    background-color: #f9f6f0;
}

.about-preview p {
    max-width: 700px;
    margin: 10px auto 20px;
    line-height: 1.6;
    color: #555;
}

.about-img{
    height: 10%;
    width: 10%;
}
/* === BUTTONS === */
.btn,
.btn-secondary,
.btn-light {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn {
    background-color: #ff9900;
    color: white;
}

.btn:hover {
    background-color: #e48800;
}

.btn-secondary {
    border: 2px solid #ff9900;
    color: #ff9900;
}

.btn-secondary:hover {
    background-color: #ff9900;
    color: white;
}

.btn-light {
    background-color: white;
    color: #725e34;
}

.btn-light:hover {
    background-color: #f4e3b2;
}

/* === PRODUK UNGGULAN === */
.featured-products {
    text-align: center;
    padding: 60px 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.product-card {
    border: 1px solid #ddd;
    padding: 50px;
    border-radius: 0.5px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    border-radius: 10px;
}

/* === CTA === */
.cta {
    background-color: #725e34;
    color: white;
    text-align: center;
    padding: 70px 20px;
}

.cta .btn-light {
    margin-top: 15px;
}
/* === DROPDOWN === */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
  transition: 0.3s;
}

.dropbtn:hover {
  color: #ffcc66;
}

/* === CATEGORIES PAGE === */
.categories {
  text-align: center;
  padding: 80px 20px;
  background-color: #f9f6f0;
}

.categories h2 {
  color: #725e34;
  font-size: 2rem;
  margin-bottom: 10px;
}

.categories p {
  color: #555;
  margin-bottom: 40px;
}

.category-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.category-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  width: 300px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.category-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.category-card h3 {
  color: #725e34;
  margin-bottom: 10px;
}

.category-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}


/* Muncul saat hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* === FOOTER === */
footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}
/* ========== HALAMAN PRODUK ========== */
.product-page {
    text-align: center;
    padding: 60px 20px;
    background-color: #f9f6f0;
}

.product-page p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #555;
}

.product-page .product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    transition: transform 0.3s ease;
}

.product-page .product-card:hover {
    transform: translateY(-5px);
}

.product-page .product-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.product-page .product-card h3 {
    color: #725e34;
    font-size: 18px;
    margin: 10px 0 5px;
}

.product-page .product-card p {
    color: #666;
    margin-bottom: 10px;
} 

/* === GALERI TOKO === */
.gallery-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #fffaf3;
}

.gallery-section h2 {
  font-size: 1.8rem;
  color: #725e34;
  margin-bottom: 25px;
}

.gallery-container {
  display: grid;
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}


/* ===== Kontak ===== */
/* === CONTACT PAGE === */
.contact-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #f9f6f0;
}

.contact-section h2 {
  color: #725e34;
  margin-bottom: 10px;
}

.contact-section p {
  color: #555;
  margin-bottom: 30px;
  font-size: 16px;
}

.contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  text-decoration: none;
  font-size: 18px;
  background-color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  width: 280px;
  justify-content: center;
}

.contact-link:hover {
  background-color: #f4e3b2;
  transform: translateY(-3px);
}

.icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 768px) {
  /* Navbar */
  .navbar {
    flex-direction: column;
    padding: 10px 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
  }

  .nav-links a {
    font-size: 14px;
  }