 .modal-image {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

    
    .gallery {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      padding: 20px;
    }

    .gallery figure {
      margin: 0;
      width: 280px;
      cursor: pointer;
      transition: transform 0.2s ease;
    }

    .gallery img {
      width: 100%;
      border-radius: 8px;
      display: block;
    }

    .gallery figure:hover {
      transform: scale(1.03);
    }

    .gallery figcaption {
      text-align: center;
      font-size: 0.9rem;
      color: #555;
      margin-top: 5px;
    }
.gallery figure {
  margin: 0;
  width: 280px;
  cursor: pointer;
  transition: transform 0.2s ease;
  opacity: 0;
  animation: fadeIn 0.6s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

    #loadMoreBtn {
      display: block;
      margin: 20px auto;
      padding: 12px 24px;
      font-size: 1rem;
      cursor: pointer;
      background: #212433;
      color: white;
      border: none;
      border-radius: 6px;
      transition: background 0.3s;
    }

    #loadMoreBtn:hover {
      background: #0056b3;
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

    .modal.open {
      display: flex;
    }

    .modal img {
      max-width: 90%;
      max-height: 80vh;
      border-radius: 6px;
      box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }

    .modal-caption {
      color: #ddd;
      font-size: 1rem;
      margin-top: 10px;
      text-align: center;
    }

    .modal-nav {
      position: absolute;
      top: 50%;
      font-size: 3rem;
      color: white;
      cursor: pointer;
      padding: 10px;
      transform: translateY(-50%);
    }

    .modal-nav:hover {
      color: #ccc;
    }

    .prev {
      left: 20px;
    }

    .next {
      right: 20px;
    }

    .close {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 2.5rem;
      color: white;
      cursor: pointer;
    }

    .close:hover {
      color: #ccc;
    }

    .footer-top {
      margin-top: -1%;
    }

    .header {
      position: relative;
      text-align: center;
  background: linear-gradient(60deg, rgb(233, 126, 2) 0%, rgb(224, 180, 136) 100%);
      color: white;
    }


    .inner-header {
      
      width: 100%;
      margin: 0;
      padding: 0;
    }



    .waves {
      position: relative;
      width: 100%;
      height: 10vh;
      margin-bottom: -7px;
      /*Fix for safari gap*/
      min-height: 100px;
      max-height: 150px;
    }

    .content {
      position: relative;
      height: 20vh;
      text-align: center;
      background-color: white;
    }

    /* Animation */

    .parallax>use {
      animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
    }

    .parallax>use:nth-child(1) {
      animation-delay: -2s;
      animation-duration: 7s;
    }

    .parallax>use:nth-child(2) {
      animation-delay: -3s;
      animation-duration: 10s;
    }

    .parallax>use:nth-child(3) {
      animation-delay: -4s;
      animation-duration: 13s;
    }

    .parallax>use:nth-child(4) {
      animation-delay: -5s;
      animation-duration: 20s;
    }

    @keyframes move-forever {
      0% {
        transform: translate3d(-90px, 0, 0);
      }

      100% {
        transform: translate3d(85px, 0, 0);
      }
    }

    /*Shrinking for mobile*/
    @media (max-width: 768px) {
      .waves {
        height: 40px;
        min-height: 40px;
      }

      .content {
        height: 30vh;
      }

    }