* {
  font-family: "Nunito Sans", sans-serif;
}
.gallery-image {
  aspect-ratio: 1920 / 2560;
  object-fit: cover; /* Ensures the image fills the container without distortion */
  width: 100%; /* Set width */
  border-radius: 8px; /* Optional: Add rounded corners */
}

/* Initial Positioning of Lines */
#nav-icon3 {
  position: relative;
  width: 28px;
  height: 28px;
}

#nav-icon3 span:nth-child(1) {
  top: 10px;
}

#nav-icon3 span:nth-child(2) {
  top: 20px;
}

/* Open State */
#nav-icon3.open span:nth-child(1) {
  top: 16px;
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(2) {
  top: 16px;
  transform: rotate(-45deg);
}

/* Mobile Menu Initial State */
#mobile-menu {
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
}

/* Mobile Menu Open State */
#mobile-menu.open {
  transform: translateX(0);
}
