.gallery-hero {
    text-align: center;
    padding-top: 20px;
    background-color: #598896;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.gallery-hero h2 {
    font-size: 32px;
    color: #ffffff;
}

.galleryContainer {
    margin-bottom: 32px;
}

.galleryImage-listContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1700px;
}

.galleryImage-card {
    border: solid 2px #f1f1f1;
    border-radius: 20px;
    padding: 10px;
    width: 330px;
    margin: 10px;
    transition: all 0.3s ease;
    text-align: left;
    text-decoration: none;
    color: #111111;
    cursor: pointer;
    position: relative;
}

.galleryImage-card p {
    margin: 12px 0px 0px 0px;
    padding: 0px;
}

.galleryImage-container {
    width: 100%;
    overflow: hidden;
    height: 200px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111111;
}

.galleryImage {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.galleryImage-card:hover .galleryImage{
    scale: 105%;
    opacity: 0.6;
}

.galleryImage-card .material-symbols-outlined {
    opacity: 0;
    position: absolute;
    color: #ffffff;
    z-index: 1;
    font-size: 68px;
    font-weight: bold;
}

.galleryImage-card:hover .material-symbols-outlined {
    opacity: 100%;
}


.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  
  .fullscreen-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  
 
  .fullscreen-overlay img {
    max-width: 85vw;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
  }