/*1151*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: 'Raleway';
  src: url('fonts/Raleway-Light.woff2') format('woff2');
  url('fonts/Raleway-Light.ttf') format('truetype');
}
@font-face{
  font-family: 'RalewayExtra';
  src: url('fonts/Raleway-ExtraLight.woff2') format('woff2');
  url('fonts/Raleway-ExtraLight.ttf') format('truetype');
}
@font-face{
  font-family: 'RalewayThin';
  src: url('fonts/Raleway-Thin.woff2') format('woff2');
  url('fonts/Raleway-Thin.ttf') format('truetype');
}
body {
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.1rem;
  margin: 0;
  padding: 0;
  background-color: #fff;
}
.fadeit {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}
.fastfade {
  opacity: 0;
  animation: fadeIn 0.2s ease forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  } to {
    opacity:1;
  }
}
.logo h1 {
  font-family: "RalewayExtra", sans-serif;
  font-size: 32px;
  font-weight: 100;
  letter-spacing: 0.3rem;
  margin-bottom: 10px;
  margin-top: 18px;
}
.small-logo h1 {
  font-family: "RalewayExtra", sans-serif;
  font-size: 18px;
  font-weight: 100;
  letter-spacing: 0.1rem;
  color: gray;
  padding: 5px;
  text-align: center;
  text-shadow: white 1px 1px 1px, white -1px -1px 1px, white -1px 1px 1px, white 1px -1px 1px, white 0px 0px 2px;
  position: absolute;
}
.no-style-link {
  text-decoration: none;
  color: inherit;
}
.no-style-link:hover{
  color: inherit;
  text-decoration: none;
}
.navbar-container {
  text-align: center;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 999;
  box-shadow: 0 2px 2px rgba(255, 255, 255, 1);
}
.dropdown-content {
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0s 0.2s;
  position: absolute; 
  background-color: #fff;
  margin-top: 6px;
  min-width: 85px; 
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); 
  z-index: 1000; 
  transform: translatex(-15%);
}
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease, visibility 0s;
}
.dropdown-content a {
  color: #333; 
  padding: 10px; 
  text-decoration: none; 
  display: block; 
}
.dropdown-content a:hover {
  background-color: #f1f1f1; 
}
.navbar ul {
  list-style-type: none;
  color: #919191;
}
.navbar ul li {
  display: inline-block;
  margin: 0 15px;
}
.lightbox ul li a, .navbar ul li a {
  text-decoration: none;
  color: #919191;
  font-size: 12px;
  top: 100%;
  padding: 5px 10px;
  transition: color 0.3s ease;
}
.top-row {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 1000;
  background: white;
  padding-bottom: 32px;
}

.bottom-row {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 1000;
  background: white;
  padding: 16px;
}
a:hover, .prev:hover, .next:hover {
  color: black;
}
 
.navbar ul li a:hover {
  color: black;
}
.image-container img {
  max-width: 100%;
  height: auto;
}
.email-signup{
  display: flex;
  flex-direction: column;
  max-width: 50%;
  justify-content: center;
  position: relative;
  padding-bottom:150px;
}
.image-container{
  display: inline-block;
  position: relative;
}
.gallery {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin-top: 120px;
  align-items: center;
  padding-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}
.overlay-tint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 500;
}
.overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 500;
}

.image-container:hover .overlay-tint {
  opacity: 1;
}

.lightbox {
    z-index: 9999;
    width: 100%;
    opacity: 1;
    outline: none;
    top: 0;
    color:#333333;
    }

.lb-left{
  flex: 1 1 0%;
  align-content: normal;
  padding: 20px;
  justify-content: space-around;
}
.lb-right{
  flex: 1 1 0%;
  align-content: center;
  padding: 20px;
}
.lb-center{
  align-content: center;
}

.lightbox .box {
    padding:20px 20px 10px 20px;
    background-color:#FFF;
    }

.lightbox .title {
    margin:0;
    padding:0 0 10px 0px;
    border-bottom:1px #ccc solid;
    font-size:22px;
}

.lightbox .lb-content {
  display:flex;
  flex-direction:row;
  height:92vh;
  justify-content: center;
  position:relative;
  padding-top: 18px;
  padding-bottom: 20px;
}
.lightbox .description {
    display:flex;
    align-items:center;
    white-space: pre;
    min-width: 75px;
}
.lightbox .next, .lightbox .prev {
  text-decoration: none;
  color: #919191;
  font-size: 24px;
  font-weight: bolder;
  font-family: sans-serif;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 35px;
  padding-top: 12px;
  padding-bottom: 35px;
  max-width: 1440px;
  margin: auto;
}

.grid-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.2s;
}

.grid-container img:hover {
  transform: scale(1.01);
  cursor: pointer;
}

@media (max-width: 960px){
  .image-container img{
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media (max-width:768px){
  .grid-container {
    grid-template-columns: 1fr; 
  }
  .grid-container img {
    pointer-events: none;
  }
  .lightbox .next, .lightbox .prev {
    font-size: 22px;
  }
  .image-container img{
    padding-right: 10px;
    padding-left: 10px;
  }
  .small-logo h1 {
    position: relative
  }
  .close {
    font-size:42px;
  }
  .lb-left, .lb-right{
    align-content: center;
    padding-top: 20px;
  } 
  .lightbox .lb-content {
    display:flex;
    flex-direction:column;
    height:100%;
    justify-content: center;
    position:relative;
  }
  .lightbox .description {
    display:flex;
    justify-content: center;
    text-align: center;
    white-space: pre;
  }
  .location, .aboutme, .headshot, .mailme, .mc_embed_shell {
    display: flex;
    flex-direction: column;
    max-width: 90%;
    padding-top: 10px;
  }
  .email-signup {
    display: flex;
    flex-direction: column;
    max-width: 90%;
    justify-content: center;
    position: relative;
    padding-bottom:150px;
  }
}
.prev{
  position: fixed;
  bottom: 2px;
  left: 10px;
}
.next{
  position: fixed;
  bottom: 2px;
  right: 10px;
}
.lightbox img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
}
.lightbox .close {
  position: fixed;
  top: 4px;
  right: 10px;
  text-decoration:none;
  font-family: Arial, sans-serif;
  font-size:22px;
  font-weight: bolder;
  color:#858585;
}
.aboutme {
  display: flex;
  flex-direction: column;
  max-width: 70%;
  padding-top: 20px;
}
.location, .headshot, .mailme, .mc_embed_shell {
  display: flex;
  flex-direction: column;
  max-width: 50%;
  padding-top: 10px;
}
.signer{
  margin:20px;
}
.footer{
  text-align: center;
  padding-bottom: 40px;
  white-space: pre;
  color: #d5d5d5;
  font-size: 8px;
}

.modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8); /* Dark background */
            justify-content: center;
            align-items: center;
            z-index: 2000;
        }

        .modal img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 5px;
        }

        /* Close Button */
        .close-btn {
            position: absolute;
            top: 15px;
            right: 18px;
            font-size: 42px;
            color: white;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.1);
            padding-top: 5px;
            padding-bottom: 9px;
            padding-right: 21px;
            padding-left: 22px;
            border-radius: 50%;
            transition: background 0.3s;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            font-size: 40px;
            color: white;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            padding-bottom: 36px;
            padding-right: 36px;
            padding-left: 36px;
            border-radius: 50%;
            transform: translateY(-50%);
            transition: background 0.3s;
        }

        .nav-btn:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .prev-btn {
            left: 20px;
        }

        .next-btn {
            right: 20px;
        }
