/* -----------------------------------------------------------------------------

# Navbar Styles

----------------------------------------------------------------------------- */

.navbar-brand {
  color: white;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 2px;
}

.nav-item a {
  color: white;/* -----------------------------------------------------------------------------
# Navbar Styles
----------------------------------------------------------------------------- */

.navbar-brand {
  color: white;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 2px;
}

.nav-item a {
  color: white;
  font-size: 16px;
  text-decoration: none;
  padding: 10px 16px;
}

/* Style untuk menu aktif */
.nav-item a.active {
  color: orange;
  font-weight: 800;
  border-radius: 8px;
}

.nav-item a.inactive {
  color: white;
  font-weight: 400;
}

.nav-item a:hover {
  color: orange;
  font-weight: 600;
  border-radius: 8px;
  transform: scale(1.1);
  transition: color 0.3s ease, transform 0.3s ease;
}

li {
  font-family: 'Poppins', sans-serif;
}

/* -----------------------------------------------------------------------------
# Header Styles (Hero)
----------------------------------------------------------------------------- */

.hero-section {
  background: url("https://images.unsplash.com/photo-1600093463592-8e36ae95ef56?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D=80&w=2070&auto=format&fit=crop") no-repeat center center;
  background-size: cover;
  color: white;
  padding: 150px 0; 
  position: relative;
  margin-top: 56px;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section .quotes {
  color: #F28123;
  font-family: "Poppins",sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0px;
}

.hero-section h1 {
  font-family: "Poppins",sans-serif;
  font-size: 32px;
  margin-bottom: 32px;
}

.section-title h2 {
  font-weight: 700;
}

.button {
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  text-decoration: none;
  background-color: #F28123;
  border-radius: 24px;
  padding: 12px 20px;
  display: inline-block;
  margin: 5px;
}

.button:hover {
  color: #F28123;
  background-color: black;
}

/* -----------------------------------------------------------------------------
# Card & Products Styles
----------------------------------------------------------------------------- */

section {
  font-family: "Poppins", sans-serif;
}

.section-title {
  text-align: center;
  margin-top: 0px;
  margin-bottom: 30px;
}
.section-title h2 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 800;
}

/* Card Styles */
.card {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 3px 24px;
  border-radius: 36px;
  padding: 32px 26px;
  border: none; /* Remove default border */
}

.card img {
  align-self: center;
  width: 96%;
  border-radius: 24px;
  margin-bottom: 24px;
}

.card:hover, .product-item img:hover {
  transform: translateY(-5px);
  transition: ease-in-out 0.3s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Product List specific styles */
.product-item img {
  transition: transform 0.3s ease;
}

.card-price-text {
    font-family: "Poppins", sans-serif;
    color: #F28123;
}

.cart-button {
  color: white;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  background-color: #F28123;
  border-radius: 24px;
  padding: 16px 24px;
  display: inline-block;
  margin-top: 10px;
}

.cart-button:hover {
  color: #F28123;
  background-color: black;
}

/* -----------------------------------------------------------------------------
# Footer Styles
----------------------------------------------------------------------------- */

.footer {
  background-color: #f9f9f9;
  color: #404040;
  font-family: "Poppins", sans-serif;
  padding: 48px 24px;
  border-top: 1px solid #ddd;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.footer-logo p {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 2px;
  margin: 0;
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #222;
}

.contact-info {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.contact-info .icon {
  font-size: 18px;
  line-height: 24px;
}

.footer-customer-center ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-customer-center p,
.footer-consumer-info p {
  font-size: 15px;
  line-height: 24px;
  margin: 6px 0;
}

.footer-social-media { 
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social-media a {
  text-decoration: none;
  font-size: 28px;
  color: #555;
  transition: color 0.3s ease;
}

.footer-social-media a:hover {
  color: #000;
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid #ddd;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 10px;
}

.footer-bottom ul {
  list-style: none;
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.footer-bottom a {
  color: #555;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* -----------------------------------------------------------------------------
# Media Queries untuk Desktop
----------------------------------------------------------------------------- */
@media (min-width: 992px) {
    .hero-section {
        padding: 350px 0;
    }
    .hero-section h1 {
        font-size: 64px;
    }
    .hero-section .quotes {
        font-size: 20px;
    }
}
  font-size: 16px;
  text-decoration: none;
  padding: 10px 16px;
}

.nav-item a.active {
  color: orange;
  font-weight: 800;
  border-radius: 8px;
}

.nav-item a.inactive {
  color: white;
  font-weight: 400;
}

.nav-item a:hover {
  color: orange;
  font-weight: 600;
  border-radius: 8px;
  transform: scale(1.1);
  transition: color 0.3s ease, transform 0.3s ease;
}

li {
  display: flex;
  font-family: 'Poppins', sans-serif;
}

/* -----------------------------------------------------------------------------

# Header Styles

----------------------------------------------------------------------------- */

.hero-section {
  background: url("https://images.unsplash.com/photo-1600093463592-8e36ae95ef56?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D=80&w=2070&auto=format&fit=crop") no-repeat center center;
  background-size: cover;
  color: white;
  padding: 350px 0;
  position: relative;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section .quotes {
  color: #F28123;
  font-family: "Poppins",sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0px;
}

.hero-section h1 {
  font-family: "Poppins",sans-serif;
  font-size: 64px;
  margin-bottom: 32px;
}

.section-title h2 {
  font-weight: 700;
}

.button {
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  text-decoration: none;
  background-color: #F28123;
  border-radius: 24px;
  padding: 12px 20px;
}

.button:hover {
  color: #F28123;
  background-color: black;
}

/* -----------------------------------------------------------------------------

# Our Proucts Styles

----------------------------------------------------------------------------- */

section {
  font-family: "Poppins", sans-serif;
  padding: 72px 0;
}
.section-title {
  text-align: center;
  margin-top: 0px;
  margin-bottom: 50px;
}
.section-title h2 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 800;
}

.card-body {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 3px 24px;
  border-radius: 36px;
  padding: 32px 26px;
  margin: 72px;
}

.card-body img {
  max-width: 392px;
  border-radius: 24px;
  margin-top: 6px;
  margin-bottom: 6px;
}

.card-body h3 {
  font-size: 36px;
  font-weight: 600;
}

.card-body p {
  font-size: 16px;
}

.card-price-text {
  margin-bottom: 56px;
}

.card-body:hover {
  transform: scale(1.05);
  transition: ease-in-out 0.5s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.cart-button {
  color: white;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  background-color: #F28123;
  border-radius: 24px;
  padding: 16px 24px;
}

.cart-button:hover {
  color: #F28123;
  background-color: black;
}


/* -----------------------------------------------------------------------------

# Footer Styles

----------------------------------------------------------------------------- */

.footer {
  background-color: #f9f9f9;
  color: #404040;
  font-family: "Poppins", sans-serif;
  padding: 48px 24px;
  border-top: 1px solid #ddd;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.footer-logo p {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 2px;
  margin: 0;
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #222;
}

.contact-info {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.contact-info .icon {
  font-size: 18px;
  line-height: 24px;
}

.footer-customer-center ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-customer-center p,
.footer-consumer-info p {
  font-size: 15px;
  line-height: 24px;
  margin: 6px 0;
}

.footer-social-media { 
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social-media a {
  text-decoration: none;
  font-size: 28px;
  color: #555;
  transition: color 0.3s ease;
}

.footer-social-media a:hover {
  color: #000;
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid #ddd;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-bottom ul {
  list-style: none;
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.footer-bottom a {
  color: #555;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}