/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Root Settings */
:root {
    --primary-font: "Poppins", sans-serif;
    --primary-color: #E3366C;
    --primary-color-dark: #C72D5F;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--primary-font);
}

body {
    background-color: #f6f6f6;
}


/* ---------------- NAVBAR ---------------- */

.navbar-wrapper {
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    background: #fff;
}

.logo-column {
    width: 200px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    font-size: 17px;
    font-weight: 700;
    color: #333;
}

.right-section {
    flex-grow: 1;
}

.top-bar {
    background: var(--primary-color);
    padding: 12px 25px;
    color: #fff;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 0 50px 0 50px;
}

.navbar-custom {
    background: #fff;
    padding: 12px 0;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.social-icons .link{
    text-decoration: none !important;
    color: #fff;
}

 @media(max-width: 992px) {
    .navbar-toggler{
        justify-content: center;
        align-items: center;
        margin-left: 10px;
    }
    .nav-item{
        text-align: center;
    }
      .navbar-wrapper {
         flex-direction: column; 
         border-radius: 25px; }
      .logo-column { 
        width: 100%; 
        padding: 15px 0; }
      .top-bar { 
        border-radius: 0; 
        text-align: center;
        font-size: 13px;
        justify-content: center; }
    }



/* ---------------- LANDING ---------------- */

#landing-page {
    width: 100%;
    height: 90vh;
    position: relative;
}

#landing-page img {
    height: 90vh;
    object-fit: cover;
    border-radius: 30px;
}

.slide-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 120px 40px 50px;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    border-radius: 0 0 25px 25px;
    color: #fff;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
}

.btn-primary:hover {
    background: var(--primary-color-dark);
}

@media(max-width: 768px){
  #landing-page {
    height: auto;
  }
  #landing-page img {
    height: auto;
    border-radius: 20px;
  }
  .slide-bottom {
    padding: 60px 20px 25px;
  }
}

/* ---------------- TENTANG ---------------- */
#tentang{
  background-color: #ffffff;
}

.text-brand {
    color: var(--primary-color);
}

.tentang-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.tombol-brand {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 28px;
    border-radius: 30px;
    border: none;
}

.tombol-brand:hover {
    background: var(--primary-color-dark);
    color:#fff;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .navbar-wrapper {
        flex-direction: column;
        border-radius: 25px;
    }

    .product-card img{
      height: 100px;
      width: 100%;
      object-fit: cover;
    }
}

@media(max-width: 768px){
    #landing-page img {
        height: auto;
        max-height: 65vh;
    }
    .slide-bottom {
        padding: 80px 20px 35px;
    }
    #tentang {
        text-align: center;
    }
    .product-card img{
      height: 300px;
      width: 100%;
      object-fit: cover;
    }

}

@media (max-width: 576px) {
  .product-img {
  max-height: 220px;
  }
}

.judul-tentang{
    font-size: 40px;
}

#kembaliKeAtas {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border: none;
  background-color: #E3366C;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 2000;
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
}

#kembaliKeAtas:hover {
  background-color: #C72D5F;
}

/* Saat tombol muncul */
#kembaliKeAtas.show {
  opacity: 1;
  visibility: visible;
}

#produk{
  background-color: #f6f6f6;
}

#produk .produk-img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 20px;
}

.product-banner {
  position: relative;
  border-radius: 20px;
}
.product-banner img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.banner-text {
  position: absolute;
  background: rgba(255,255,255,0.7);
  padding: 25px;
  text-align: center;
  width: 70%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
}
.banner-text h2 {
  font-weight: 700;
  color: #333;
}
.banner-text p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* Banner Produk */
.product-banner {
  position: relative;
}
.product-banner img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.banner-text {
  position: absolute;
  background: rgba(255,255,255,0.7);
  padding: 25px;
  text-align: center;
  width: 70%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
}
.banner-text h2 {
  font-weight: 700;
  color: #333;
}
.banner-text p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* Produk Card */
.product-scroll {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.product-scroll::-webkit-scrollbar {
  display: none;
}

.product-card {
  min-width: 200px;
  max-width: 240px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  scroll-snap-align: start;
  text-align: center;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.product-price{
  color: var(--primary-color);
  font-weight: 700;
}
/* Tombol Scroll */
.scroll-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  border: none;
  background: #ffffffd2;
  width: 50px;
  height: 50px;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.scroll-btn:hover {
  background: #fff;
}

.left-btn {
  left: -10px;
}

.right-btn {
  right: -10px;
}

/* Responsif */
@media (max-width: 576px) {
  .scroll-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
  .left-btn { left: -25px; }
  .right-btn { right: -25px; }
   .product-card {
    min-width: 180px;
  }
  .product-card img {
    height: 200px;
  }
}

@media (min-width: 992px) {
  .product-card {
    min-width: 230px;
  }
  .product-card img {
    height: 250px;
  }
}


.footer {
  background: #333;
  color: #eee;
}

.footer-brand {
  font-weight: 700;
  font-size: 22px;
  color: var(--primary-color);
  
}

.footer-text {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.85;
}

.footer-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-item {
  width: 35px;
  height: 35px;
  background: #222;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  font-size: 16px;
  transition: 0.3s;
}

.social-item:hover {
  background: var(--primary-color);
  color: #111;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 12px;
  font-size: 13px;
  opacity: 0.7;
}

/* Responsif */
@media (max-width: 576px) {
  .footer-brand {
    font-size: 20px;
  }
  .social-icons {
    justify-content: start;
  }
}

#lokasi{
  background-color: #fff;
}
#lokasi h2{
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
}

