
*{
    margin: 0;
    padding: 0;
    /* border: 1px solid yellow; */
}

@font-face {
    font-family: myFirstFont;
    src: url(../Poppins/Poppins-Regular.ttf);
}
    @font-face {
    font-family: italic;
    src: url(../Poppins/Poppins-Bold.ttf);
}

@font-face {
    font-family: secound;
    src: url(../Poppins/Poppins-Bold.ttf);
}

h1{
    font-family: italic;
}

body{
    font-family: bold;
    cursor:default;
	
}

    /* Website Scrollerbar */
    body::-webkit-scrollbar {
        width: 5px !important;
        height: 5px !important;
    }
    body::-webkit-scrollbar-track {
        background: #3838387c !important;
    }
    body::-webkit-scrollbar-thumb {
        background-color: #e0120ba4 !important;
        border: 1px solid #ff020279 !important;
        border-radius: 1px !important;
    }
	
 body {
		
      margin: 0;
      font-family: Arial, sans-serif;
      background: white;
    }

    .gallery-container {
		border:2px;
		border-color:orange;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 15px;
      padding: 30px;
    }

    .gallery-img {
		
      width: 100%;
      height: 150px;
      object-fit: cover;
      cursor: pointer;
      transition: 0.3s ease;
      border-radius: 8px;
	  border: 5px solid orange;
	      box-shadow: 0 10px 30px rgba(255, 255, 255, 0.5);
 
	  background: rgba(0, 0, 0, 0.8);
    }

    .gallery-img:hover {
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      transform: scale(1.03);
	  border:2px;
		border-color:orange;
    }

    /* Modal overlay */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      background: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
    }

    .modal img {
      max-width: 100%;
      max-height: 100%;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(255, 255, 255, 0.5);
    }

    .modal.show {
      display: flex;
	  max-width: 100%;
      max-height: 100%;
    }

    /* Optional: close cursor */
    .modal {
      cursor: zoom-out;
    }
	
    .modal-content .caption {
      margin-top: 15px;
      font-size: 18px;
      font-weight: 500;
    }

    .modal.show {
      display: flex;
    }

	h2{
	text-align:center;
	text-decoration:bold;
	color:white;
	}
	.fade-up {
  opacity: 1;
  transform: translateY(30px);
  animation: fadeUp 3s ease-out forwards;
}
/* Fade-up animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.top{
	width:100%;
	height:30vh;
	position:relative;
	text-align:center;
	text-decoration:underline;
	background:black;
	color:orange;
}
