﻿/* site.css - add your custom styles here */

/* Example: Limit max width for images */
img.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Example: Custom header style */
header {
    background-color: #0056b3;
}

/* Example: Button overrides */
.btn-link {
    cursor: pointer;
}

/* Responsive spacing tweaks */
@media (max-width: 767.98px) {
    header h1 {
        font-size: 1.25rem;
    }
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    padding: 20px;
    justify-items: center;
}

.image-item img {
    width: 100%;
    max-width: 180px;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

    .image-item img:hover {
        transform: scale(1.05);
    }


.nav-link.active {
    color: #0000ff !important;
    /*   background-color: #007bff !important; */
    font-weight: bold;
    font-size: 1.1rem;
    /* text-decoration: underline;*/
    border-radius: 5px;
}