:roote {
    --primary-color: #1a3d64;
    --secondary-color: #4c763b;
    --line-height-base: 1.5;
    --spacing-unit: 8px;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: var(--line-height-base);
    color: var(--secondary-color);
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.gallery-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Image */
.gallery-img {
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

