*,
html {
    margin: 0;
    padding: 0;
}

.quintessential-regular {
  font-family: "Quintessential", serif;
  font-weight: 400;
  font-style: normal;
}


body {
    margin: 0;
    font-family: 'Poppins', sans-serif ;
    background-color: rgb(87, 31, 31);
}

h1, h2, h3 .Brand {
    font-family: 'Quintessential', serif;
}

/* 🔹 NAVBAR */
.navbar {
  width: 100%;
  padding: 10px 20px;
  background-color: rgb(148, 128, 16);
  color: rgb(255, 255, 255);
  font-size: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 100;
}

.Brand {
    font-size: 1.5em;
    font-weight: bold;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

.Brand img {
    width: 180px;
    height: auto;
    object-fit: contain;
    margin-right: 20px;
    flex-shrink: 0;
    transition: 0.2s;
}

.Brand img:hover {
    transform: scale(1.1);
}

.ul-navbar {
  list-style: none;
  display: flex;
  gap: 20px;
  font-size: 1.2em;
  font-weight: 500;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  color: white;
  transition: 0.2s;
}
/*  NAVBAR End*/

/*  Content */
.Kotak {
  list-style: none;
  display: flex;
  gap: 20px;
}

.Kotak a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.2s;
}

.Kotak a:hover {
  color: #ffcc00;
}

.Kotak a,
.Kotak a:visited {
  color: black;
  text-decoration: none;
}

.Kotak h2 {
  text-align: center;
  align-items: center;
  color: rgb(148, 128, 16) ;
}


.content {
  max-width: 1100px;
  margin: 40px auto;
  padding: 30px;
  color: ivory;
}

.pusat-kotak {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.Kotak {
  background: #f0f0f0;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: o.2s;
  justify-content: center;
}

.Kotak:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.Kotak2 {
  background:#f7f1d0;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: o.2s;
  justify-content: center;
  position: relative;
}

.Kotak2:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.Kotak2 h2 {
  margin-top: 0;
  color:black;
}

.Kotak2 p {
  color: black;
  text-align: justify;
  text-decoration: none;
  line-height: 1.6;
  text-indent: 30px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}


.back-btn {
  background-color: #555;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: 0.3s;
}

.back-btn:hover {
  background-color: #ffcc00;
  color: black;
}

.image-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  margin: 80px auto 40px;
  flex-wrap: wrap;
  text-align: left;
}

.image-text img {
  width: 650px;
  height: auto;
  transition: 0.2s;

}

.image-text img:hover {
  transform: scale(1.05);
}
.text {
  flex: 1;
}

.text h2 {
  font-family: 'Quintessential', serif;
  font-size: 2.5em;
  font-weight:700 ;
  margin: 0;
}

.text p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: rgb(148, 128, 16);
  margin-top: 10px;
  text-align: center;
  align-items: center;
}
/*  Content End */

/* Responsif untuk HP */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .content {
    margin: 20px;
    padding: 20px;
  }

  .image-text {
    flex-direction: column;
    align-items: center;
  }

  .image-text img {
    width: 100%;
    max-width: 300px;
  }

  .Brand {
    flex-direction: row;
    align-items: center;
    text-align: center;
    justify-content: space-between;
  }

  .Brand img {
    width: 150px;
    margin: 0;
  }

  .ul-navbar {
    font-size: 1em;
    gap: 15px;
  }
}


   


