#spiritual {
    position: relative; /* Membuat elemen ini sebagai konteks tumpukan untuk pseudo-element */
    max-width: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center; /* Atur posisi background agar bagian atas terlihat */
    color: #333;
    text-align: center;   
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 5%;
    padding-bottom: 4%;
    font-family: 'Montserrat', sans-serif; /* Terapkan Montserrat */
     margin-top: 70px;
}

#spiritual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; /* Menutupi seluruh elemen induk */
    z-index: 1; /* Position the overlay behind the text */
    overflow: hidden;
}

#spiritual h1, #spiritual p {
    position: relative; /* Pastikan elemen teks berada di atas overlay */
    z-index: 2; /* Z-index lebih tinggi dari pseudo-element */
}

.container {
    text-align: center;
    margin-top: 10px;
}



#spiritual h1 {
    font-size: 70px;
    font-weight: 700;
    color: white;
    margin-bottom: 20%;
    margin-top: 20%;
    text-align: center;
    font-family: 'Montserrat', sans-serif; /* Terapkan Montserrat */
   padding-left: 26%;
   padding-right: 26%;
}

#spiritual p {
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 18px;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    font-family: 'Montserrat', sans-serif; /* Terapkan Montserrat */
    font-weight: 500;
}

@media (max-width: 768px) {
  #spiritual h1 {
    font-size: 32px;
    margin-top: 30%;
    margin-bottom: 20%;
    padding-left: 10%;
    padding-right: 10%;
  }
}

/* Tampilan Produk */
.product-card {
  display: flex;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 100%;
  margin: 20px 50px 25px 50px;
 
}



.product-image-1 img {
  height: 425px;
  object-fit: cover;
  margin: 30px 0px 30px 30px;
}

.product-info {
  padding: 20px;
  width: 60%;
  margin-left: 40px;
}

.product-info h1 {
  color: black;
  font-size: 20px;
  padding-top: 30px;
  font-weight: bold;
}

.product-title {
  font-size: 29px;
  margin-bottom: 10px;
  color: #E2C275;
  font-weight: bold;
}

.product-description {
  font-size: 16px;
  color: #555;
}

.product-description p{
  color: black;
}

.product-description h2{
    color: black;
    font-size: 20px;
    font-weight: bold;
}

.product-description li{
  color: black;
}

.product-price {
  margin-top: 15px;
  font-size: 18px;
  color: #3C6E71;
  font-weight: bold;
}


.poduct-price s{
  text-decoration: line-through;
}

/* Footer */
footer {
  background-color: #eee;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #666;
}

/* Responsif */
@media (max-width: 768px) {
  .product-card {
    flex-direction: column;
    margin: 10px;
  }
  .product-image-1{
     text-align: center;
  }
  .product-info {
    width: 100%;
    margin: 0px;
  }
}


.order-btn {
  margin-top:0px;
  padding: 10px 20px;
  background-color: #3C6E71;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  margin-bottom: 10px;
}

.order-btn:hover {
  background-color: #2a4f52;
}


.modal {
  display: none;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 85%;
  position: relative;
}

.modal-content h2,p,li {
  margin-top: 0;
  color: black;
}

.modal-content input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.modal-content button {
  width: 100%;
  padding: 10px;
  background-color: #3C6E71;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.modal-content button:hover {
  background-color: #2a4f52;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}


@media (max-width: 768px) {
  .product-image-1 img {
    height: 300px;
    margin: 20px;
    object-fit: contain;
    width: 300px;
  }

  .modal-content{
     margin: 40% auto;
  }
}
