/* Photo Gallery Styles */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.photo-gallery img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s;
   display: block;
}

/* CONTACT LAYOUT */
.contact-title {
  text-align: center;      
  font-size: 3rem;        
  font-weight: 600;
  margin-bottom: .2rem;
  width: 100%;    
}        


.contact-container {
  display: flex;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: .2rem;
  align-items: flex-start;
}

.package-list {
  list-style-type: disc;       /* normal bullets */
  padding-left: 1.5rem;        /* space from left */
  margin-top: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.6;
}

.package-list li {
  margin-bottom: 0.5rem;      /* space between bullets */
}


/* LEFT TEXT */
.contact-text {
  flex: 1;
  max-width: 450px;
  font-size: 1.25rem;
  line-height: 1.6;
  text-align: left; /* important */
}

/* RIGHT FORM */
.contact-form-wrapper {
  flex: 1;
  max-width: 500px;
}

/* FORM STYLING */
.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 8px;
  background-color: #f3f3f3;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #02AFB9;
  background-color: #fff;
}

/* BUTTON */
.contact-form .btn {
  background-color: #D4AF37;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
  background-color: #b8982e;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-text,
  .contact-form-wrapper {
    max-width: 100%;
  }

  .contact-text {
    text-align: center;
  }
}




/* Tablet (max width 1024px) */
@media (max-width: 1024px) {
  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (max width 600px) */
@media (max-width: 600px) {
  .photo-gallery {
    grid-template-columns: 1fr;
  }
}

.pswp__button--zoom {
  display: none !important;
}

/* Disable zoom cursor in PhotoSwipe */
.pswp__img {
  cursor: default !important;
}
