body {
    font-family: "Manrope", sans-serif;
}

@font-face {
    font-weight: 700;
    font-style: normal;
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Bold.woff2') format('woff2');
    font-display: swap;
  }
  
  @font-face {
    font-weight: 800;
    font-style: normal;
    font-family: 'Manrope';
    src: url('/fonts/Manrope-ExtraBold.woff2') format('woff2');
    font-display: swap;
  }
  
  @font-face {
    font-weight: 200;
    font-style: normal;
    font-family: 'Manrope';
    src: url('/fonts/Manrope-ExtraLight.woff2') format('woff2');
    font-display: swap;
  }
  
  @font-face {
    font-weight: 300;
    font-style: normal;
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Light.woff2') format('woff2');
    font-display: swap;
  }
  
  @font-face {
    font-weight: 500;
    font-style: normal;
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Medium.woff2') format('woff2');
    font-display: swap;
  }
  
  @font-face {
    font-weight: 400;
    font-style: normal;
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Regular.woff2') format('woff2');
    font-display: swap;
  }
  
  @font-face {
    font-weight: 600;
    font-style: normal;
    font-family: 'Manrope';
    src: url('/fonts/Manrope-SemiBold.woff2') format('woff2');
    font-display: swap;
  }




/**
* Image gallery
*/
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }

  .gallery img {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s;
    object-fit: scale-down;
    max-height: 90px;
  }

  .gallery img:hover {
    transform: scale(1.05);
  }

  /* Lightbox styles */
  .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .lightbox img {
    max-width: 90%;
    max-height: 80%;
  }

  .lightbox.show {
    opacity: 1;
    visibility: visible;
  }

  .lightbox-actions {
    margin-top: 20px;
    display: flex;
    gap: 20px;
  }

  .lightbox-actions a, .lightbox-actions button {
    background: #fff;
    padding: 10px 20px;
    text-decoration: none;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .lightbox-actions a:hover, .lightbox-actions button:hover {
    background: #f0f0f0;
  }

  /* Arrow styles */
  .arrow {
    position: absolute;
    top: 50%;
    font-size: 3rem;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    cursor: pointer;
    z-index: 1000;
  }

  .arrow-left {
    left: 10px;
  }

  .arrow-right {
    right: 10px;
  }

  /* Close button styles */
  .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    cursor: pointer;
  }