@charset "UTF-8";
/* CSS Document */
body {
  font-family: Arial, sans-serif;
  background-color:floralwhite;
  margin: 0;
padding-top: 50px; 
padding-bottom: 20px; 
padding-left:30px;
padding-right:20px; 
  
}

nav {
  width: 100%;
  background-color: rgba(0, 0, 0, 0); /* transparent */
  color: black;
  padding: 0.5rem 1.2rem; /* 🔼 smaller padding to bring it closer to top */
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  font-family:"Times New Roman", "serif"; 
}

.logo {
  flex: 1;
  font-weight:none;
  font-size: 1.4rem;
}


.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

/* Lightbox (Full screen overlay) */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  flex-direction: column;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 0px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


/* Prev/Next buttons */
.nav {
  position: absolute;
  width: 85%;
  top: 50%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  transform: translateY(-50%);
}

.prev, .next {
  font-size: 1rem;
  color: white;
  cursor: pointer;
  user-select: none;
}

.close-link {
  position: absolute;
  top: 0.7rem;
  right: 30px;
  font-size: 1rem;
  color: black;
  text-decoration: none;
  z-index: 1100;
  user-select: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-link:hover {
  color: #ccc;
}

