/* GLOBAL */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f88158;
    color: #f88158;
}

/* HEADER */
header {
    background: url('indonesia.png') center/cover no-repeat, linear-gradient(to right, #90EE90, #98FB98);
    padding: 40px 20px;
    border-bottom: 3px solid #d9b99b;
    color: #98FB98;
    position: relative;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.logo {
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.header-text {
    max-width: 600px;
    text-align: left;
}
.header-text h1 {
    font-size: 38px;
    margin-bottom: 5px;
    color: #a0522d;
}
.header-text h2 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #8b4513;
}
.header-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* NAVIGATION */
nav a {
    color: #8b4513;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    background-color: #fff5ea;
    margin-right: 8px;
    transition: background-color 0.3s, color 0.3s;
}
nav a:hover {
    background-color: #ffd7b5;
    color: #a0522d;
}

/* PRODUCTS */
.products {
    padding: 30px 20px;
    background-color: #fffefc;
    text-align: center;
}
.products h2 {
    margin-bottom: 30px;
}
.product-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.product {
    background-color: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    padding: 15px;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.product-description {
    margin: 10px 0;
    color: #555;
    font-size: 14px;
}
.product-price {
    font-weight: bold;
    color: #d2691e;
    margin: 10px 0;
}
.add-to-cart {
    background-color: #ff8c00;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}
.add-to-cart:hover {
    background-color: #e07b00;
}

/* CHECKOUT */
.checkout {
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
}
#cart-summary {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}
#cart-summary li {
    margin: 5px 0;
}
#total-price {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

/* BERITA */
.news-section {
    background-color: #fffdf8;
    padding: 40px 20px;
}
.news-section h2 {
    text-align: center;
    color: #8b4513;
}
.news-section article h3 {
    color: #a0522d;
}
.news-section article p {
    color: #333;
}

/* PROMOSI */
.promo-section {
    background-color: #fff0e0;
    padding: 40px 20px;
    text-align: center;
}
.promo-section h2 {
    color: #8b4513;
}
.promo-section a {
    font-weight: bold;
}

/* KOMENTAR & SARAN */
.feedback-section {
    background-color: #ffffff;
    padding: 40px 20px;
}
.feedback-section h2 {
    text-align: center;
    color: #8b4513;
}
.feedback-section input,
.feedback-section textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
}
.feedback-section button {
    background-color: #25D366;
    cursor: pointer;
    transition: background-color 0.3s;
}
.feedback-section button:hover {
    background-color: #1da851;
}
#feedback-list {
    max-width: 600px;
    margin: 20px auto 0;
    color: #333;
}

/* GALLERY SLIDER */
.gallery-slider {
    width: 100%;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
    position: relative;
}
.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slide {
    min-width: 100%;
    max-height: 450px;
    display: none;
    justify-content: center;
    align-items: center;
}
.slide.active {
    display: flex;
}
.slide img,
.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* FOOTER */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px;
}
footer a {
    color: #f0c674;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    .product-list {
        flex-direction: column;
        align-items: center;
    }
    .product {
        width: 90%;
    }
}
.menu-toggle {
  display: none; /* Tombol disembunyikan secara default */
  background-color: #ff8c00;
  color: white;
  border: none;
  padding: 10px 15px;
  margin-top: 10px;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    margin-top: 10px;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: inline-block; /* Tombol baru muncul saat layar kecil */
  }
}
/* Daftar Produk */
.products {
  margin-top: 20px;
}

.category-section {
  display: none; /* Kategori disembunyikan secara default */
  padding: 20px;
  background-color: #f9f9f9;
  margin-top: 10px;
  border-radius: 6px;
}

.toggle-button {
  background-color: #f2f2f2;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 16px;
}

.toggle-button:hover {
  background-color: #ff8c00;
  color: white;
}

@media screen and (max-width: 768px) {
  .toggle-button {
    width: 100%; /* Tombol toggle menyamping di layar kecil */
    text-align: left;
  }
}

@media screen and (min-width: 769px) {
  .category-section {
    display: block; /* Menampilkan kategori di layar besar */
  }
}
