
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif; /* or 'Nunito', sans-serif */
}

/* Engagement photo gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery a {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 8px;
}

.gallery img {
    width: 100%;
    height: 200px; /* keeps all images same height */
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Optional: overlay icon on hover */
.gallery a .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.25);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery a:hover .overlay {
    opacity: 1;
}

.gallery a .overlay i {
    color: #fff;
    font-size: 24px;
}
