* {
    box-sizing: border-box;
}

.header-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


body {
    margin: 0%;
    font-family:'system-ui';
  background: linear-gradient(to bottom, #dedada, #4e598a);


}

.logo {
    width: 200px;
    height: auto;
    margin-left: 20px;
    border-radius: 50%;
    transition: transform 0.3s ease;
   box-shadow: 0 6px 15px rgba(76, 55, 213, 0.4); 
}
.logo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(224, 225, 249, 0.4); 
  
}

header {
    padding: 0px 0px;
    background-color: #170c7a;
    border-bottom: 20px solid #e1d882;
    
}



/* top navigation bar */
.navbar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
}

.navbar a {
  color: white;
  padding: 12px 18px;
  text-decoration: none;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  text-align: center;
  border-radius: 8px;
  transition: 0.3s;
}

.navbar a:hover {
  background-color: #e1d882; 
  box-shadow: 0 6px 15px rgb(255, 255, 255); 
  transform: translateY(-3px); 
}


.navbar a:active {
  transform: translateY(0); 
  box-shadow: 0 3px 8px rgba(160, 139, 25, 0.4);
}


/* column container */
.row {
  display: flex;
  justify-content: center; 
  align-items: flex-start;  
  flex-wrap: wrap;
  gap: 40px; 
  padding: 50px;
}

/* sidebar / left column */
.side {
  flex: 30%;
  background: #e1d882;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(110, 96, 22, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* main column */
.main {
  flex: 65%;
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* gambar di dalam kolom kiri */
.fakeimg img {
  display: block;
  margin: 15px auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.7s ease, box-shadow 0.3s ease;
}

.fakeimg img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}


footer {
    padding: 20px;
    text-align: center;
    background-color:beige;
}

/* responsive layout - when screen is less than 700px wide, make the two cc */
@media screen and (max-width: 700px) {
  .row, .navbar {
      flex-direction: column;
      align-items: center;
  }

  .navbar a {
      padding: 10px;
      width: 100%;
      text-align: center;
  }

  .logo {
      width: 70px;
      margin-bottom: 10px;
  }
}

.pstyleside{
    color:rgb(117, 80, 6); 
    font-family:cursive; 
    text-align: center;
    padding:0 10px 0 10px;
    margin-top: 10px;
    margin-right: 20px ;

}
.pstyle {
  color:  #0d064b; /* oranye hangat */
  font-family: 'Pacifico', cursive; /* gaya tulisan tangan */
  font-size: 20px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(95, 95, 98, 0.92);
}



.contactperson{
    position: static; text-align: center;color:rgb(117, 80, 6);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


.produk-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
  font-family: 'Poppins', sans-serif;
}

.produk-section h2 {
  color: #3a2e2e;
  font-size: 28px;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.produk-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-items: center;
}

.produk-card {
  background:  #e1d882;
  border-radius: 20px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-items: center;
  justify-content: center;
}

.produk-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.produk-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.produk-card h3 {
  color: #6b4e16;
  font-size: 18px;
  margin-bottom: 8px;
}

.produk-card p {
  color: #333;
  font-weight: 500;
}

.img {
   transition: transform 0.7s ease, box-shadow 0.3s ease;
}

.img:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 50px rgba(255, 255, 255, 0.946);
}


.button {
  display: inline-block;
  background: linear-gradient(45deg, #ffc107, #ff9800);
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

.button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 50px rgba(41, 2, 215, 0.957);
}
.order-section {
  max-width: 600px;
  margin: 80px auto;
  background: #fff8dc;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.order-section h2 {
  color: #4b3b05;
  margin-bottom: 15px;
}

.order-section p {
  color: #5f4b04;
  font-size: 15px;
  margin-bottom: 25px;
}

.order-form {
  text-align: left;
}

.order-form label {
  display: block;
  font-weight: 500;
  color: #4a3b05;
  margin-top: 15px;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid #c7b860;
  margin-top: 5px;
  font-size: 14px;
}

.order-form button {
  display: block;
  width: 100%;
  margin-top: 25px;
  background: linear-gradient(45deg, #d4a017, #e7ba36);
  border: none;
  color: white;
  font-weight: bold;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.order-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 50px rgba(47, 0, 253, 0.2);
}
.contact-section {
  text-align: center;
  padding: 60px 20px;
 
  color: #333;
}

.contact-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2em;
  color: #efcd42;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 1.1em;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-card {
  background: rgb(255, 255, 255);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 30px;
  width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.contact-card img {
  width: 60px;
  margin-bottom: 15px;
}

.contact-card h3 {
  color: #f6416c;
  margin-bottom: 10px;
}

.btn-contact {
  display: inline-block;
  background: #f6416c;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-contact:hover {
  background: #d92d5a;
}

/* Responsif */
@media (max-width: 700px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
}
/* ======= ABOUT PAGE ======= */
.about-section {
  background: linear-gradient(135deg, #fff9c4, #ffcc80);
  padding: 60px 40px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.about-text {
  flex: 1;
  max-width: 600px;
}

.about-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2em;
  color: #5c3d00;
  margin-bottom: 15px;
  text-align: justify;
}

.about-text p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1.1em;
  text-align: justify;
}

.about-image img {
  width: 350px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgb(4, 17, 196);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px whitesmoke;
}

/* VISI MISI SECTION */
.visi-misi {
  background-color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.visi-misi h2 {
  font-size: 2em;
  color: #4a3b00;
  margin-bottom: 30px;
}

.vm-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: justify;
}

.vm-box {
  background: #fff9c4;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 25px;
  width: 300px;
  text-align: justify;
}

.vm-box h3 {
  color: #d2691e;
  margin-bottom: 15px;
  text-align: center;
}

.vm-box ul {
  list-style: none;
  padding: 0;
}

.vm-box li {
  color: #333;
  text-align: left;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Responsif */
@media (max-width: 700px) {
  .about-container {
    flex-direction: column;
  }
  .about-image img {
    width: 90%;
  }
}
.btn-wa a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-wa a img {
    width: 24px;
    margin-right: 8px;
}

.btn-wa a:hover {
    background-color: #20b857;
}