* {
  font-family: 'Fira Code', 'sans-serif';
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
}

.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-column {
  display: flex;
  flex-direction: column;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}
.gap-1 {
  gap: 1rem;
}
.red {
  color: red;
}

.contain-btn {
  padding: 0.5rem 3rem;
  background-color: maroon;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  border: none;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
}
.contain-btn:hover {
  background-color: red;
}

.outline-btn {
  border: 2px solid maroon;
  padding: 0.5rem 2rem;
  border-radius: 8px;
  background-color: white;
  color: maroon;
  font-weight: 700;
  cursor: pointer;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
}
.outline-btn:hover {
  background-color: maroon;
  color: white;
  transition: all 0.3s ease-in-out;
}

.secondary-btn {
  padding: 1rem 1rem;
  background-color: lightgray;
  border-radius: 8px;
  color: black;
  font-weight: bold;
  cursor: pointer;
  border: none;
}

.secondary-btn:hover {
  background-color: red;
  color: white;
  box-shadow: rgba(0, 0, 0, 0.1);
}
.navbar {
  width: 100vw;
  padding: 1rem 4rem;
  border-bottom: 1px solid grey;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar-left-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
}

.navbar-right-menu {
  display: flex;
  /* flex-direction: row;
  align-items: right;
  gap: 1rem; */
  text-decoration: none;
  color: black;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
}

.navbar-container-menu {
  display: flex;
  gap: 1rem;
  font-weight: 350;
}
.navbar-container-menu a {
  cursor: pointer;
  text-decoration: none;
  color: black;
}
.navbar-container-menu a:hover {
  color: maroon;
}

.section-container {
  /* background-color: blue; */
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 3rem 4rem;
}

.section-title {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
  justify-content: left;
  /* background-color: red; */
}

.section-title-content {
  font-size: 32px;
  font-weight: 600;
}
.red-box {
  height: 16px;
  width: 16px;
  background-color: maroon;
}

.product-name {
  font-size: 18px;
  font-weight: bold;
}

.product-price {
  background-color: white;
  padding: 0.1rem 1rem;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 500;
  color: maroon;
}

.product-catalog-container {
  display: grid;
  grid-template-columns: auto auto auto auto;
  column-gap: 3rem;
  row-gap: 5rem;
}

.product-catalog-container-category {
  display: flex;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 3rem;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-item {
  width: 300px;
  height: 400px;
  /* background-color: grey; */
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 2rem;
  justify-content: space-between;
  border-radius: 15px;
  position: relative;
}

.product-item:hover {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.1) 10px 10px 20px;
}
.product-item .product-img {
  width: auto;
  max-width: 100%;
  max-height: 180px;
  margin: 0 auto; /* horizontal center */
  display: block;
  object-fit: contain;
  border-radius: 10px;
}

.product-item > h3 {
  font-size: 20px;
  /* font-weight: 600; */
  margin-bottom: 8px;
}

.footer {
  width: 100vw;
  background-color: black;
  display: flex;
  color: white;
  justify-content: space-around;
  padding: 3rem 4rem;
  height: 300px;
}

.footer-left {
  font-size: 22px;
}
.footer-middle ul,
.footer-right ul {
  list-style: none; /* Hilangkan bullet/titik */
  padding: 0; /* Hilangkan padding default */
  margin: 0; /* Hilangkan margin default */
}
.footer a {
  text-decoration: none; /* Hilangkan underline */
  color: white; /* Ubah warna */
}

.footer a:hover {
  color: maroon; /* Efek hover */
}

.about-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-title {
  font-size: 2.5rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.contact-section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.contact-info p {
  margin: 10px 0;
  font-size: 1rem;
}

.contact-info a {
  color: #007bff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
}

.contact-form button {
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0056b3;
}
