
.gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  max-width: 90%;
  margin: 0 auto;
  padding: 20px 10px;
}
.gallery img {
  width: 100%;
  height: 300px;
  max-width: 500px;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.gallery img:hover{
    width:110%;
    height:310px;
    transition: height 0.3s ease;
}
.heading {
  display: flex;
  flex-direction: column;
  margin: auto;
  width: fit-content;
  padding: 40px;
}
.title {
    font-size: 50px;
    font-family: 'helvetica-bold'; 
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.title-regular {
  font-size: 20px;
  font-family: 'helvetica';
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.subtext {
  font-size: 15px;
  font-family: creatodisplay-regular;
  display: flex;
  flex-direction: row;
  justify-content: start;
}
.image-overlay {
    position: relative;        /* establishes positioning context */
    display: inline-block;     /* keeps container tight around image */
}

.image-overlay img {
    display: block;            /* removes weird inline spacing */
}
.image-overlay p {
  position: absolute;
  bottom: 10px;              
  left: 10px;               
  margin: 0;
  padding: 6px 10px;
  color: white;
  font-size: 18px;
  font-family: 'CreatoDisplay-Regular';
  background: rgba(0,0,0,0.4); /* optional: subtle readability layer */
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

.image-overlay:hover p {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.image-overlay:hover h5 {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.image-overlay h5 {
  position: absolute;
  top: 10px;              
  left: 10px;               
  margin: 0;
  padding: 6px 10px;
  color: white;
  font-size: 12px;
  font-family: 'CreatoDisplay-light';
  background: rgba(0,0,0,0.4); /* optional: subtle readability layer */
  transition: opacity 0.3s ease;
  border-radius: 10px;
}
.bannervid {
  width: 100%;
  height: auto;
  margin: 0;
  padding: none;
}
.img-container {
  position: relative;
  background-color: blue;
}
.titleimg {
  position: absolute;
  width: auto;
  height: auto;
  z-index: 10;
  background-color: red;
}
.stdvid {
  width: 100%;
  height: 50%;
  max-width:400px;
  object-fit: cover;
  border-radius: 10px;
  display: inline;
}

.me-vid {
  margin: 40px;
  width: 100%;
  max-width: 750px;
  height: auto;
  border-radius: 15px;
}
.writeup {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 16px;
  max-width: 90%;
  margin: 0 auto;
  padding: 20px 10px;
}
.writeup-img {
  width: 100%;
  max-width: 300px;
  object-fit: cover;
  border-radius: 10px;
  padding: 40px;
  
}
.writeup-text {
  max-width: 400px;
  padding: 40px;
  font-family: "Helvetica";
}
.photogallery {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 20px;
  padding-bottom: 30px;
  overflow-x: clip;

}
.photogallery img {
  width: 50%;
  max-width: 500px;
  object-fit: cover;
  transition: all 0.3s ease;
  padding: 20px;
}
@font-face {
  font-family: 'Helvetica'; /* Give your font a name */
  src: url('../assets/fonts/Helvetica.ttf') format('truetype'); /* Path to your file */
}