.intro1 {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 20px 5%;
    max-height: 180px; 
    gap: 40px;
    width:100%;
    background-color: #f8d7da;
    box-sizing: border-box;
    overflow: hidden;
}
.logo1 {
    width: 35%; 
    max-width: 300px; 
    max-height: 150px;
}

.intro-text1 {
    width: 55%; 
    text-align: left;
    font-family: 'Playfair Display', sans-serif;
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 600;
    color: #4a2c2a;
    line-height: 1.4;
    padding-left: 5%;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    white-space: normal; 
    overflow: visible; 
    text-overflow: clip;
}
.intro-text1 h2 {
    font-family: 'Great Vibes',cursive;
    font-size: clamp(36px, 4vw, 55px);
    font-weight: 800;
    white-space: nowrap; 
    margin-bottom: 5px;
}
body {
    background-color: #f8d7da; /* Soft pink */
    margin: 0;
    padding: 0;
    font-family: 'Playfair Display', serif;
  }
  .custom-form{
    flex:1;
  }
  .custom-intro {
    position:relative;
    text-align: left;
    padding:40px;
  }
  
  .custom-intro h2 {
    font-size: 36px;
    color: #5a2a2a;
    margin: 0;
  }
  .custom-order-wrapper {
    margin-top: 20px;
  }
  
  .toggle-btn {
    background-color: #a05d5a;
    color: white;
    border: none;
   padding: 12px 24px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: bold;
    margin-top: 20px;
  }
  
  .toggle-btn:hover {
    background-color: #934f4d;
  }
  .custom-flex-wrapper {
    display: flex;
    justify-content: space-between;
    align-items:flex-start;
    gap:40px;
    margin-top:20px;
    flex-wrap:wrap;
  }
  .custom-form {
    flex: 1;
    background-color: #fbdde2;
    padding: 25px;
    border-radius: 10px;
    max-width: 600px;
    flex-direction: column;
    gap: 15px;
  }
  
  .custom-form label {
    display: block;
    text-align: left;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .custom-form input,
  .custom-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  
  .submit-btn {
    background-color: #5a2a2a;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
  }
  
  .submit-btn:hover {
    background-color: #472020;
  }
  .confirmation-message {
    background-color: #dff0d8;
    color:#3c763d;
    padding: 15px 20px;
    border-radius:8px;
    margin-top:20px;
    text-align:center;
  }
  .hidden {
    display:none;
  }
  .custom-image-side {
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  }
  .showoff-image { 
    flex-shrink: 0;
    width:420px;
    position:relative;
  }
  .custom-image-side img {
    max-width: 450px;
    max-height: 500px;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  }
.order-guidelines {
  background-color: #f8d7da;
  margin: 20px 20px;
  padding: 20px 20px;
  border-radius:10px;
  box-shadow: 0 6 rgba(0,0,0,0.1);
}
.order-guidelines h3 {
  font-size:36px;
  color:#5a2a2a;
  margin-bottom:15px;
}
.order-guidelines ul {
  list-style-type: disc;
  padding-left:20px;
  color:#4a2c2a;
  font-size: 20px;
  line-height:1.6;
}
.custom-gallery {
  background-color: #f8d7da;
  padding: 40px 20px;
  text-align:center;
}
.custom-gallery h2 {
  font-size: 36px;
  color:#5a2a2a;
  margin-bottom: 30px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap:20px;
  justify-items: center;
}
.gallery-item img {
  width:100%;
  min-width:400px;
  min-height:400px;
  max-width: 400px;
  max-height: 400px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0 ,0, 0.15);
}
.img-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
  cursor: zoom-out;
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
}

.img-modal .close {
  position: absolute;
  top: 30px;
  right: 45px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}