    html {
      scroll-behavior: smooth;
    }

    h1, h2 {
      color: #D4AF37;
      text-align: center;
      text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    }

    /* Introductiepagina */
    .intro {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      text-align: center;
      background: rgba(0, 0, 0, 0.6);
      color: #f0f0f0;
      position: relative;
    }

    .intro-content {
      z-index: 1;
      animation: fadeIn 2s ease-in-out;
    }

    .intro h1 {
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .intro p {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }

    .intro-button {
      background-color: #D4AF37;
      color: #121212;
      padding: 1rem 2rem;
      font-size: 1.1rem;
      border-radius: 5px;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .intro-button:hover {
      background-color: #f0c050;
    }

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
      padding: 20px;
      background: linear-gradient(to bottom, #111, #333);
      animation: fadeIn 1s ease-in-out;
    }
  
    .gallery-item {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      background-size: cover;
      background-position: center;
      height: 250px;
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
    }
  
    .gallery-item:hover {
      transform: translateY(-12px) scale(1.05);
      box-shadow: 0 16px 32px rgba(255, 255, 255, 0.4);
    }
  
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
  
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
  
    .item-1 { background-image: url('../images/Shailesh4122.jpg'); background-position: center 10%; }
    .item-2 { background-image: url('../images/Shailesh4028.jpg'); background-position: center 12%; }
    .item-3 { background-image: url('../images/Shailesh4191.jpg'); background-position: center 20%; }
    .item-4 { background-image: url('../images/Shailesh4065.jpg'); background-position: center 10%; }
    .item-5 { background-image: url('../images/Shailesh4152.jpg'); background-position: center 10%; }
    .item-6 { background-image: url('../images/Shailesh4041.jpg'); background-position: center 10%; }
    .item-7 { background-image: url('../images/Shailesh4147.jpg'); background-position: center 11%; }
  
    /* Media Queries */
    @media (max-width: 1024px) {
      .gallery-item {
        height: 200px;
      }
    }
  
    @media (max-width: 768px) {
      .gallery-item {
        height: 200px;
      }
    }
  
    @media (max-width: 480px) {
      .gallery-item {
        height: 150px;
      }
    }