/* CSS Document */

css

html{
	margin: auto;
}

nav {
	width: 100%;
	background-color: hsla(0,0%,0%,0.80);
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: modesto-condensed, serif;
	position: fixed;
	 z-index: 2;
}

.pageHeader {
	font-size: 6vw;
	text-align: center;
	color: white;
	transition: font-size .5s ease;
}

.pageHeader.shrink{
	font-size: 3vw;
	padding: 0;
}

.navItems {
	display: flex;
	justify-content: center;
	margin-bottom: -4.2%;
}

.navItems a {
	font-size: 1.3vw;
	color: white;
	text-decoration-line: none;
	padding: .5%;
	border: 1px solid white;
	border-radius: 0;
	background-color: hsla(0,0%,0%,0.00);
	transition: all 0.3s ease;
}

.navItems a:hover {
	color: black;
	padding: .5%;
	border: 1px solid black;
	transform: scale(1.1);
	background-color: white;
}

.social {
	float: right;
	width: 10%;
	padding-bottom: 2%;
}

.social img {
	width: 2.5vw;
	display: inline-block;
	padding: 2%;
	filter: brightness(0) invert(1);
	transition: all 0.3s ease;
	border: thick hsla(0,0%,0%,0.00);
	border-radius: 15%;
	background-color: hsla(0,0%,0%,0.00);
}
.social img:hover {
	background-color: white;
	border: thick white;
	border-radius: 15%;
	filter: brightness(1) invert(0);
}

body {
	margin: 0;
	padding: 0;
	width: 100%;
	background-color: black;
	display: block;
}

.headGrid {
		padding-top: 10%;
		display: grid;
		grid-template-columns: auto auto auto;
		grid-gap: 20px;
		justify-content: center;
	}

.headGrid p {
		color: white;
		font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	}


.mainImg {
	width: 35vw;
	justify-content: center;
	object-fit: cover;
	margin: 2%;
}

.section-header {
  position: relative;
  margin: 3% 0;
  color: #777; /* subtle gray */
  font-family: Arial, sans-serif;
  letter-spacing: 4px; /* spaced-out text */
  font-size: 12px;
  text-transform: uppercase;
	padding-left: 15%;
	padding-right: 4%;
}

.section-header span {
  background: #000; /* match your background */
  padding-right: 10px;
  position: relative;
  z-index: 1;
}

.section-header::after {
  content: "";
  position: absolute;
	margin: .5%;
	top: 5%;
	left: 15%;
  width: 70%;
  height: 1px;
  background: #333; /* line color */
  transform: translateY(-50%);
  z-index: 0;
	
}

.grid {
      display: grid;
	grid-template-columns: 33% 33% 33%;
      gap: 1vw;
	padding-left: 15%;
	padding-right: 15%;
	position: absolute;
	 z-index: 0;
	padding-bottom: 5vw;
    }

.grid img {
      width: 100%;
      height: 20vw;
      object-fit: cover;
	transition: all 0.3s ease;
   }
.grid img:hover {
    transform: scale(105%);
   }

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

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
