/* Hero Section Styles */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(../img/about-us.jpg);
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 1.5rem auto;
    max-width: 1000px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}



/* .masonry-grid {
    column-count: 1;
    column-gap: 1rem;
}

@media (min-width: 576px) {
    .masonry-grid {
        column-count: 2;
    }
}
@media (min-width: 768px) {
    .masonry-grid {
        column-count: 3;
    }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.masonry-item img:hover {
    transform: scale(1.02);
}

.elem {
    display: block;
    cursor: zoom-in;
} */

.gallery-grid-asym {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-box {
    overflow: hidden;
    border-radius: 10px;
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-box img:hover {
    transform: scale(1.03);
}

.gallery-box.tall {
    grid-row: span 2;
}
