/* General styles */
      body {
        background-color: black;
        color: black;
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        line-height: 1.6;
        font-size: 16px;
        overflow-x: hidden; /* Prevent horizontal scrolling */
      }
      
      pre {
        tab-size: 6;
        font-family: Arial;
      }

      .banner-container {
        width: 100%;
        overflow: hidden;
        position: relative;
        height: 10vw; /* Adjust to match your image height */
      }

      .banner {
        display: flex;
        position: absolute;
        width: calc(100% + 1px); /* Ensures seamless scrolling */
        animation: scrollBanner 60s linear infinite;
      }

      .banner img {
        width: 300%; /* Each image takes full container width */
        height: auto; /* Maintain aspect ratio */
      }

      @keyframes scrollBanner {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-300.5%);
        }
      }
      
/* Style for the black bar container */
.header-container {
  background-color: black;
  padding: 10px 0; /* Adds some vertical spacing inside the container */
}
      
/* Style for the menu links */
.menu-header a {
  color: white; /* Make the text white */
  text-decoration: none; /* Remove underline */
  margin: 0 15px; /* Add spacing between links */
  font-size: 16px; /* Adjust font size as needed */
  justify-content: space-around;
  padding: 10px 20px;
}

.menu-header a:hover {
  text-decoration: underline; /* Optional: underline on hover */
}
    
  * {
    box-sizing: border-box;
}
    
/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
  float: left;
  width: 60%;
  padding-left: 5vw;

}

/* Right column */
.rightcolumn {
  float: left;
  width: 40%;
  padding-left: 20px;
  padding-right: 5vw
}

/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
  background-color: #FFD801;
  padding: 20px;
  margin-top: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
    
#footer {
  text-align: center;
  font-size: 0.9rem;
  color: white;
  margin: 2rem 0;
}
/*Gallery page items*/
.gallery-section {
  padding: 20px;
  text-align: center;
}

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

.gallery-item {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}

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

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item-info {
  padding: 5px;
  text-align: left;
  color: white;
}

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

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border: 2px solid white;
}

      /* Responsive Styles */
      @media (max-width: 768px) {
        .banner-container {
          height: 110px; /* Adjust for smaller screens */
        }

        .banner img {
          width: 800%; /* Make banner images wider for smaller screens */
        }
        
        .menu-header a {
          margin: auto; /* shortens spacing between links for mobile*/
        }
        
        .leftcolumn, .rightcolumn {
          width: 100%;
          padding: 0; /*make the two columns stack on top of each other instead of next to each other */
        }
        
        .gallery-grid {
          grid-template-columns: repeat(auto-fit, minmax(75px, 1fr));
        }
        .gallery-item-info {
          font-size: 10px; /* Smaller font size for mobile */
        }
      }
