body {
  color: #333333;
  font-family: "Segoe UI", sans-serif;
}

/*Navbar*/
.navbar {
  background: #3b5d50 !important;
  padding-top: 1rem;
  padding-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0.75rem;
  color: #ffffff;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #f9bf29;
}

.form-control {
  border-radius: 20px;
  padding: 0.5rem 1rem;
  border: 1px solid #333333;
}



/*Card*/
#card-barang {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
#card-barang:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background-color: #ffffffee;
}

/*About*/
.about-section {
  padding: 60px 0;
  background-color: #fff;
}

.container-card {
  width: 80%;
  margin: auto;
}

.about-title {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.about-description {
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.row {
  display: flex;
  justify-content: space-between;
}

.col-md-4 {
  flex: 1;
  margin: 0 10px;
}

.about-card {
  background-color: #eaeaea;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-icon {
  font-size: 3em;
  margin-bottom: 10px;
}

.about-card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.about-card-text {
  font-size: 1em;
  color: #333;
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .col-md-4 {
    margin: 10px 0;
  }
}

/*Contact*/
.custom-contact-wrapper {
  padding: 3rem 2rem;
  background: #3b5d50;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  margin: 2rem auto;
  max-width: 1200px;
}

.form-box {
  background-color: #ffff;
}

.custom-contact-wrapper .form-control {
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #3333;
  color: black;
  transition: all 0.3s ease;
}

.custom-contact-wrapper .form-control:focus {
  background-color: rgba(255, 255, 255, 0.5);
  border-color: #3b5d50;
  box-shadow: 0 0 0 0.25rem rgba(184, 163, 96, 0.232);
}

.custom-contact-wrapper .form-label {
  font-weight: 500;
  color: #3333;
}

.custom-contact-wrapper .btn-primary {
  background-color: #3b5d50;
  border: none;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.custom-contact-wrapper .btn-primary:hover {
  background-color: rgba(25, 22, 13, 0.232);
}

.contact-info p {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.contact-info i {
  font-size: 1.2rem;
  margin-right: 1rem;
  width: 24px;
  text-align: center;
}

/*footer*/
.footer {
  background-color: #1f1f1f;
  color: #ffffff;
  padding-top: 60px;
  padding-bottom: 40px;
  font-size: 0.95rem;
}
#footer{
  background-color: #3b5d50;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 8px;
  display: inline-block;
  transition: color 0.3s ease, font-size 0.3s ease;
}

.footer-link:hover {
  color: #d4af37;
  transform: scale(1.05);
}

.footer .copyright {
  font-size: 0.85rem;
  color: #aaa;
  padding-top: 20px;
}
