a {
  text-decoration: underline;
  color: navy;
}

li {
  list-style-type: none;
  margin: 0;
}

ul ul{
  margin-top: 0;
  margin-bottom: 0;
}

#menu {
  height: 100%;
  background-color: Linen;
  padding: 10px;
}

#links {
  background-color: Linen;
  overflow: hidden;
}

#links a {
  float: left;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.8rem; 
  line-height: 1.5;  
  letter-spacing: -.05rem; 
}

a.active {
  background-color: Khaki;
}

img {
  margin: 5px;
  display: block;
  margin-left: auto; 
  margin-right: auto;
}

#picimg {
  width: 100%;
}

.vidcontainer {
  display: flex;
  margin-top: 20px;
  position: relative;
  width: 100%;
  max-width: 500px;
}

/* Make the image to responsive */
.vidthumb {
  display: block;
  width: 464px; 
  height: 264px;
}

.photo {
  display: block;
  width: 464px; 
}

.ta-center {
  text-align: center; 
}

.stretch {
    width: 100%;
    display: inline-block;
    font-size: 0;
    line-height: 0
}

.vidwithtext {
    display: flex;
    margin-top: 20px;
}

.viddesc {
    margin-left: 20px;
    width: 500px;
}

.vidback {
    width: 100%;
	z-index: -1;
}

/* Lightbox Styles - Minimal to match your aesthetic */
.photo {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.photo:hover {
  opacity: 0.9;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  display: block;
}

.close-lightbox {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 24px;
  font-family: 'Raleway', sans-serif;
  cursor: pointer;
}

.nav-buttons {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  top: 50%;
  transform: translateY(-50%);
}

.nav-button {
  background: transparent;
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
}

.lightbox-counter {
  position: absolute;
  bottom: -30px;
  width: 100%;
  text-align: center;
  color: white;
  font-family: 'Raleway', sans-serif;
}

.photo-grid {
  column-count: 1;
  column-gap: 15px;
  margin-top: 20px;
}

/* Adjust photo class to work with masonry layout */
.photo {
  width: 100%;
  height: auto; /* Height will adjust automatically based on image proportions */
  display: block;
}

/* Photo item container */
.photo-item {
  break-inside: avoid; /* Prevents images from being split between columns */
  margin-bottom: 15px; /* Space between images */
}

/* Media queries for responsive columns */
@media (min-width: 550px) {
  .photo-grid {
    column-count: 2;
  }
}

@media (min-width: 750px) {
  .photo-grid {
    column-count: 3;
  }
}

@media (min-width: 1000px) {
  .photo-grid {
    column-count: 4;
  }
}