body {
    margin: 0;
    font-family: 'Mulish', sans-serif;
    background-color: #f5f5f5;
}

  
  nav {
    background-color: #ffffff;
    padding: 0.5rem 1rem 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .logo img {
    height: 80px;
    width: auto;
    margin-bottom: 0.5rem;
  }
  
  ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
  }
  
  li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #000000;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
  }
  
  li a:hover {
    color: #000000;
  }
  
  li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  .hero {
    width: 100%;
  }
  
  .hero img {
    width: 100%;
  }
  
  @media (max-width: 600px) {
    ul {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
    .logo img {
      height:80px;
    }
  }
  

  .intro {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #fff;
  }
  
  .intro h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #222;
  }
  
  .intro p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: #555;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    background-color: #f5f5f5;
  }
  
  .gallery-item {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.05);
    cursor: pointer;
  }
  
  @media (max-width: 900px) {
    .gallery {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .gallery {
      grid-template-columns: 1fr;
    }
  }
  
