/* ================= gallery ================  */

.gallery {
    padding: 60px 20px;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  .gallery h2 {
    text-align: center;
    font-size: 40px;
    color: white;
    margin-bottom: 20px;
  }
  .gallery .gallery-content {
    max-width: 1200px;
    margin-inline: auto;
  }
  .gallery .gallery-content .button {
    text-align: center;
    color: white;
  }
  .gallery .gallery-content .button a {
    text-decoration: none;
    padding: 10px 40px;
    border: 2px solid var(--bg-gold);
    transition: 0.3s;
  }
  .gallery .gallery-content .button a:hover {
    background-color: var(--bg-gold);
    color: black;
  }
  
  .gallery .gallery-content .image-area {
    margin-bottom: 20px;
  }
  .gallery .gallery-content .image-area .image {
    max-width: 600px;
    margin-inline: auto;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .gallery .gallery-content .images-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .gallery .gallery-content .images-area .image img {
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
  }
  
  @media screen and (max-width: 768px) {
    .gallery .gallery-content .images-area {
      grid-template-columns: 1fr;
    }
  }
  
  @media screen and (max-width: 576px) {
    /* .gallery {
      padding: 60px 20px;
    } */
  }
  
  