﻿/* site.css */

.d-flex {
    position: relative;
    cursor: pointer;
}

.hover-image {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    max-width: 90%;
    border: 3px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.d-flex:hover .hover-image {
    display: block;
}

@media (max-width: 768px) {
    .hover-image {
        max-width: 80%;
        top: 40%;
    }
}
.overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 50;
}

.close-btn {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 101;
    cursor: pointer;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 30px;
}