.grizzy--grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px -8px 0;
    padding: 0;
}
.grizzy--grid li {
    height: 200px;
    flex-grow: 1;
    margin: 0 8px 8px 0;
    list-style: none;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
}
.grizzy--grid li:last-child {
    /*flex-grow: 10;*/
}
.grizzy--grid img {
    max-height: 100%;
    min-width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.grizzy--grid img:hover {
    transform: scale(1.1);
}
#top-info {
    transition: all 0.3s ease;
    overflow: hidden;
}
.navbar {
    transition: all 0.3s ease;
    background: white;
}
body {
    padding-top: 70px; /* adjust to your navbar height */
    overflow-x: hidden;
}
@media (min-width: 992px) {
    body {
        padding-top: 120px; /* adjust to your navbar height */
    }
    .navbar {
        height: 120px;
    }

    .navbar .navbar-brand img {
        transition: all 0.3s ease;
        height: 100px;
    }
    .navbar.shrink {
        height: 60px;
        padding:0;
        margin:0;
    }

    .navbar.shrink .navbar-brand img {
        height: 50px;
    }

    .navbar.shrink #top-info {
        padding: 0 !important;
        height: 0;
        opacity: 0;
    }
}
@media (max-width: 992px) {
    .aos-wrapper {
        overflow-x: hidden;
    }
}

.img-hover {
    display: inline-block;
    overflow: hidden;        /* hides zoomed image edges */
    border-radius: 8px;      /* optional: rounded corners */
}

.img-hover img {
    display: block;          /* remove inline spacing gaps */
    transition: transform 0.4s ease; /* smooth zoom animation */
}

.img-hover:hover img {
    transform: scale(1.1);   /* zoom in slightly */
}
a[id] {
    scroll-margin-top: 30px; /* adjust to your header height */
}
