body {
      font-family: 'Gabarito', sans-serif;
      background-color: #f4f4f4;
      margin: 0;
      padding: 0;

    }

    /* Navigation */

.navbar-brand img {
  height: 41px; /* Sesuaikan tinggi sesuai kebutuhan */
  width: auto; /* Menjaga proporsi */
}

    .navbar {
      background-color: #000;
      padding: 10px 20px;
    }

    .navbar-brand {
      font-size: 1.2rem;
      font-weight: bold;
      color: white;
    }

    .navbar-nav .nav-link {
      color: white;
      font-size: 1rem;
      margin: 0 10px;
      transition: color 0.3s;
    }

    .navbar-nav .nav-link:hover {
      color: #f4f4f4;
    }


    /* Hero Section Styling */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  transform-origin: center;
  transition: transform 0.3s ease-out; /* Animasi smooth */
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1663517768994-a65e6ab3a40a?q=80&w=1527&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D01aff67d40b8b73d8d38927c80f51ae2bde5b7c76809&w=1060') no-repeat center center/cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0)); /* Efek fade-out */
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  color: white;
  padding: 20px;
}

/* Animasi teks masuk */
.fade-in-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.5s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Parallax saat scroll */
.hero.scrolled {
  transform: scale(1.05);
}

/* Bagian Konten Setelah Hero */
.content {
  padding: 80px 20px;
  background: white;
  text-align: center;
  font-size: 20px;
}

/* Responsif */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }
}


    /* Profile Section */
    .profile-section {
    background-color: #f8f9fa;
    }

    .profile-section h2 {
      font-family: 'Gabarito', sans-serif;
      letter-spacing: 1px;
    }

    .profile-section img {
      transition: transform 0.3s ease;
    }

    .profile-section img:hover {
      transform: scale(1.05);
    }

  .profile-section .btn-primary {
    background-color: #000;
    border: none;
    transition: background-color 0.3s ease;
    }

    .profile-section .btn-primary:hover {
      background-color: #333;
    }

    .bi-check-circle-fill {
      font-size: 1.3rem;
    }

    /* Explore Section */
    .explore-section {
      padding: 50px 20px;
      text-align: center;
    }

    .explore-section h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
      font-weight: bold;
    }

    .product-category {
      display: none;
    }

    .active-category {
      display: block;
    }

    .carousel-item h3 {
      font-size: 1.5rem;
      margin: 15px 0;
      font-weight: bold;
    }

    .carousel-item p {
      color: #555;
      font-size: 0.9rem;
    }

    /* Product Box */
   .product-category {
  display: none;
}

.product-category.active-category {
  display: block;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.product-box {
  margin-bottom: 25px; /* Menambahkan jarak antar produk */
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-height: 300px; /* Pastikan semua kotak memiliki tinggi yang sama */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-box img {
  width: 100%;  /* Agar gambar memenuhi lebar kotak */
  max-height: 150px; /* Batasi tinggi agar tidak terlalu besar */
  object-fit: contain; /* Pastikan gambar tidak terdistorsi */
}

.product-box h3 {
  font-size: 1.2rem;
  margin: 10px 0 5px;
}

.product-box p {
  font-size: 0.9rem;
  color: #555;
  flex-grow: 1;
}

      .product-image {
        width: 100%;
        max-height: 180px;
        object-fit: cover;
      }
      .title-price-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 5px;
      }
      .product-title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 2px;
      }
      .price-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
      }
      .price-label {
        font-size: 14px;
        color: #666;
        margin-bottom: -5px;
      }
      .price {
        font-weight: bold;
        font-size: 20px;
      }
      .btn-outline-dark {
        border: 1px solid #000;
        color: #000;
        padding: 6px 12px;
        text-align: center;
        display: inline-block;
        font-size: 12px;
        cursor: pointer;
        border-radius: 5px;
        background: none;
      }
      .btn-outline-dark:hover {
        background-color: #000;
        color: #fff;
      }
      .small-btn {
        padding: 5px 10px;
        font-size: 12px;
      }

  .product-category { display: none; }
  .active-category { display: block; }

  .modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); justify-content: center; align-items: center; animation: fadeIn 0.3s ease-in-out; }
  .modal-content { background: white; padding: 20px; border-radius: 10px; width: 90%; max-width: 500px; text-align: center; box-shadow: 0px 10px 30px rgba(0,0,0,0.3); position: relative; transform: scale(0.8); animation: popUp 0.3s forwards; }

  /* Tombol Kembali */
  .back-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ddd;
    color: #333;
    border: none;
    padding: 5px 10px; /* Ukuran lebih kecil */
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
  }

  .back-btn:hover {
    background-color: #bbb;
  }

  /* Container Carousel */
  .carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 20px 0;
  }

  .carousel-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  #carouselImage {
    max-width: 85%;
    height: auto;
    max-height: 300px;
  }

  /* Tombol Panah */
  .carousel-btn {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 35px; /* Menjadi lingkaran sempurna */
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Membuatnya lingkaran */
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }

  .carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }

  /* Dots Indicator */
  .carousel-dots {
    text-align: center;
    margin-top: 8px;
  }

  .dot {
    height: 8px;
    width: 8px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
    cursor: pointer;
  }

  .dot.active {
    background-color: #717171;
  }

  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes popUp { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }


/* Styling untuk Carousel Section */
#carouselSection {
  color: white;
}

/* Styling untuk gambar carousel */
.carousel-img {
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  max-width: 90%;
  margin: auto;
}

.carousel-item:hover .carousel-img {
  transform: scale(1.02);
}

/* Styling untuk tombol navigasi */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  padding: 10px;
  width: 30px;
  height: 30px;
  transition: background-color 0.3s, filter 0.3s, transform 0.3s;
  filter: invert(1);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: rgba(255, 255, 255, 1);
  filter: invert(0);
  transform: scale(1.1);
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8);
}

/* Styling untuk indikator */
.carousel-indicators button {
  background-color: rgba(255, 255, 255, 0.5);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.carousel-indicators .active {
  background-color: white;
}

/* Styling untuk HR */
hr {
  border: none;
  height: 3px;
  background: linear-gradient(to right, transparent, #ff5733, transparent);
  margin: 20px auto;
  width: 80%;
}


.promo-section {
    background: #000; /* Latar belakang hitam */
    color: white;
    padding: 60px 30px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    font-family: 'Gabarito', sans-serif; /* Font yang lebih elegan */
}

.promo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    animation: fadeInUp 1s ease-in-out;
    text-align: justify;
    color: #f8f8f8;
    font-size: 16px; /* Ukuran font yang lebih nyaman dibaca */
    font-weight: 400; /* Tidak terlalu tebal */
}

.promo-text h2 {
    font-weight: 600; /* Sedikit lebih tebal untuk judul */
    text-align: center;
    margin-bottom: 15px;
}

.carousel img {
    border-radius: 15px;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.carousel img:hover {
    transform: scale(1.07);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.bordered-img {
    border: 4px solid white;
    border-radius: 15px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}



    /* Footer */
footer {
  background: #333; /* Warna background */
  color: white;
  text-align: center;
  padding: 10px;
  width: 100%;
}

        .popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            width: 90%;
            max-width: 600px;
            background: white;
            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            z-index: 1000;
            padding: 30px;
            opacity: 0;
            transition: opacity 0.4s ease, transform 0.4s ease;
            animation: popIn 0.5s ease-out;
        }
        .popup.show {
            display: block;
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
        .popup img {
            width: 100%;
            border-radius: 15px;
            display: block;
            animation: fadeIn 0.5s ease-in-out;
        }
        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: red;
            border: none;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s, background 0.3s;
        }
        .close-btn:hover {
            transform: scale(1.2);
            background: darkred;
        }
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .overlay.show {
            display: block;
            opacity: 1;
        }
        @keyframes popIn {
            0% {
                transform: translate(-50%, -50%) scale(0.5);
                opacity: 0;
            }
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
        }
        @keyframes fadeIn {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }

    /* Category Buttons */
    .category-button {
      margin: 5px; /* Reduced margin for closer buttons */
      padding: 10px 20px;
      font-size: 1.1rem;
      cursor: pointer;
      border-radius: 5px;
      background-color: #000; /* Change color to black */
      color: white;
      border: none;
    }

    .category-button:hover {
      background-color: #333; /* Slightly darker on hover */
    }

    /* Adjust spacing between the buttons and the product categories */
    .explore-section > div {
      margin-top: 10px; /* Reduced space between buttons and product categories */
    }

  /* Styling untuk tombol */
  .btn-custom {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
  }
  .btn-custom:hover {
    background-color: #fff;
    color: #111;
  }


  
  /* Styling untuk tombol Show Map */
  .btn-map {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 8px 15px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    margin-bottom: 10px; /* Tambahan jarak */
  }

  .btn-map:hover {
    background-color: #fff;
    color: #111;
  }
  .btn-map i {
    margin-right: 5px;
  }

  /* Garis batas */
  .divider {
    width: 2px;
    height: 80%;
    background-color: #444;
  }

  /* Styling untuk kontak */
  .contact-title {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .contact-info {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 5px;
  }
  .contact-info i {
    margin-right: 8px;
  }

  /* Styling untuk ikon sosial media */
  .social-icons {
    margin-top: 10px;
  }
  .social-icons a {
    text-decoration: none;
    color: #fff;
    margin-right: 12px;
    font-size: 20px;
    transition: 0.3s;
  }
  .social-icons a:hover {
    color: #bbb;
  }


.why-choose-us {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}

.why-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    animation: fadeInDown 1s ease-in-out;
}

.why-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.why-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-in-out forwards;
}

.why-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.why-icon {
    font-size: 35px;
    color: #e63946;
    margin-bottom: 10px;
}

.why-subtitle {
    font-size: 1.1rem;
    margin: 10px 0;
}

.why-text {
    font-size: 0.9rem;
    color: #555;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .why-grid {
        flex-direction: column;
        align-items: center;
    }
    .why-card {
        width: 80%;
        max-width: 300px;
    }
}

