.special-shooting-splitter {
  margin-top: 120px;
}

.shooting-section-title {
  margin-bottom: 90px;
}

.contact-button {
  margin-top: 25px;
  padding: 10px 60px;
  background-color: #303030;
  color: #ece8e8; /*white*/
  border: none;
  cursor: pointer;
  font-size: 20px;
}

.christmas-section {
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 5rem;
  color: #333;
  flex: 1;
  border-radius: 8px;
}

.christmas-section .christmas-section-content {
  flex: 4;
}

.price-card-wrapper {
  flex: 2;
  flex-direction: column;
  /*margin-bottom: -4rem;*/
}

.christmas-section-content {
  margin: auto;
}

.price-card {
  max-width: 100%;
}

.price-note {
  max-width: 85%;
}

.christmas-section .christmas-section-content h2 {
  font-size: 3rem;
  font-weight: 550;
  margin-bottom: 4rem;
}

.christmas-section .christmas-section-content p {
  line-height: 1.6;
  font-size: 1.5rem;
  color: #666;
}

.price-card .disclaimer {
  font-size: 0.75rem;
  color: #888;
  margin-top: 1rem;
  text-align: left;
}


/**/
.preview-images-container {
  max-width: 80%;
  margin: 4rem auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10rem;
}

.preview-image-item {
  flex: 1;
}

.preview-image-item img {
  width: 100%;
  height: auto;
  display: block;
}
/**/

.mosaic-gallery-section h2{
  text-align: center;
  font-weight: 550;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.mosaic-gallery-section {
  margin-bottom: 2.5rem !important;
  overflow: hidden;
}


/**/
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
}

/* Caption of Modal Image (Image Text) - You can add this if needed */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform: scale(0)}
  to {transform: scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
/**/


/* Media Queries for responsiveness */
@media (max-width: 1024px) {
  .christmas-section {
    flex-direction: column;
  }
  .price-card-wrapper {
    max-width: 70%;
    margin: 0 auto;
  }

  .preview-images-container {
    gap: 3rem;
  }

  .christmas-section .christmas-section-content h2 {
    font-size: 2rem;
  }

}

@media (max-width: 768px) {
  .christmas-section {
    text-align: center;
    margin: 0 auto;
    gap: 2rem;
  }
  .price-card-wrapper {
    max-width: 100%;
    margin: 0 auto;
  }
  .preview-images-container {
    flex-direction: column;
  }

  .christmas-section-content {
    row-gap: 30px;
  }

  .christmas-section .christmas-section-content h2 {
    font-size: 1.5rem;
  }

  .text-container {
    flex: 1 1 100%;
  }
}


