body {
      /*font-family: 'Poppins', sans-serif;*/
      margin: 0;
      background: #e6dbd5;
      color: #333;
    }

    .BTN {
      display: flex;
    }
    
    .BTN a {
    text-decoration: none;
    background-color: #4d3636;
    color: white;
    padding: 4px 15px;
    width: 120px;
    display: inline-block;
    text-align: center;
    margin: 20px auto 0px auto;
    border-radius: 5px;
    box-shadow: 3px 3px 10px black;

}

    h1 {
      text-align: center;
      /*padding: 20px 0;*/
      font-weight: 600;
      color: #4d3636;
      text-shadow: 2px 2px 8px black;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .gallery img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gallery img:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 1000;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.8);
      align-items: center;
      justify-content: center;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 80%;
      border-radius: 12px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.5);
      animation: fadeIn 0.3s ease;
      
    }

   

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }

    .close, .prev, .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: white;
      font-size: 40px;
      cursor: pointer;
      user-select: none;
      padding: 10px;
      transition: color 0.3s;
    }

    .close {
      top: 30px;
      right: 40px;
      font-size: 35px;
      transform: none;
    }

    .prev { left: 40px; }
    .next { right: 40px; }

    .close:hover, .prev:hover, .next:hover {
      color: #f39c12;
    }