body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
  }

  .banner {
    width: 100%;
    height: 100%;
    background-size:cover;
    background-repeat: no-repeat;
    background-attachment: fixed; 

}



header{
    width: 100%;
    height: 80px;
    background: #3a7294;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    position: fixed;
    z-index: 90;
}

.logo {
    font-size: 33px;
    font-weight: bold;
    color: white;
    font-family: "Lobster", sans-serif;
    font-weight: 400;
    margin-left: 30px ;
    z-index: 200;
    cursor: pointer;
}


.hamburger {
    display: none;
}

.nav-bar ul{
    display: flex;
    text-decoration: none;
    list-style: none;
    margin-left: 50px;
}

.nav-bar li{
    text-decoration: none;
}

#navBar .nav-bar .nav-bar.active a{
  display: flex;
  justify-content: center;
  align-items: center;

}

.nav-bar ul li a{
    display: block;
color: #fefefe;
font-size: 20px;
padding: 10px 25px;
border-radius: 50px;
text-decoration: none;
transition: 0.3s ease;
margin: 0 5px;
}

.nav-bar ul li a:hover{
    color: black;
    background: azure;
}

/* end navbar */




  .gallery-container {
    padding: 40px;
    max-width: 80%;
    margin: auto;
    padding-top: 5%;
  }

  .gallery-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
    color: #222;
  }

  .masonry {
    column-count: 3;
    column-gap: 15px;
  }

  @media (max-width: 999px) {
    .masonry {
      column-count: 2;
    }
    
  
  }

  @media (max-width: 600px) {
    .masonry {
      column-count: 2;
    }

    .logo{
      font-size: 25px;
    }
    .gallery-container{
      padding-top: 26%;
    }

    
    .hamburger {
      display: block;
      font-size: 23px;
      color: white;
      cursor: pointer;
      margin-right: 20px;
      z-index: 300;
      transition: 0.3s ease;
    }
  
    .hamburger.active::before {
      content: "\2715"; 
      font-size: 30px;
    }
  
    .hamburger::before {
      content: "\2261";
      font-size: 40px;
  
    }
  
    .hamburger{
      background: none;
      border: none;
      outline: none;
    }
  
    .nav-bar {
      position: absolute;
      top: 80px;
      left: 0;
      background-color: #3a7294;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-in-out;
      flex-direction: column;
      text-align: center;
      justify-content: center;
      align-items: center;
    }
  
    .nav-bar.active {
      max-height: 500px; 
      /* enough to show all items */
    }
  
    .nav-bar ul {
      flex-direction: column;
      padding: 10px 0;
      justify-content: center;
    }
  
    .nav-bar ul li {
      display: inline-block;         /* ✅ Inline block for natural sizing */
    font-size: 20px;
    padding: 10px 40px;
    color: #fff;
    background-color: transparent;
    border-radius: 30px;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    }
  
    .nav-bar ul li a {
      padding: 10px;
      margin: 0;
      
    }
  }

















  .masonry-item {
    break-inside: avoid;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.75);
  }

  .masonry-item img {
    width: 100%;
    height: auto;
    display: block;
  }


 