﻿/* Environment Gallery */
.env-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px; 
}

.env-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* Overlay */
.env-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.75);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: 0.5s ease;
}

/* Hover */
.env-card:hover img {
    opacity: 0.3;
    transform: scale(1.05);
}

.env-card:hover .env-overlay {
    opacity: 1;
}

.env-overlay h5 {
    font-weight: 600;
}

.env-overlay p {
    font-size: 14px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .env-card {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        margin-right: 0;
    }

        .navbar-brand img {
            height: 60px !important;
        }

        .navbar-brand span {
            font-size: 22px !important;
        }

        .navbar-brand img {
            margin-right: 5px;
        }
}