.hall-gallery-section {
    width: 100%;
}

.hall-gallery-grid {
    display: grid;
    max-width: 1200px;
    margin: 0 auto;
}

.hall-gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    display: block;
    text-decoration: none;
}

.hall-gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s;
}

.hall-gallery-item:hover::before {
    opacity: 1;
}

.hall-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    transition: transform 0.4s;
}

.hall-gallery-item:hover .hall-gallery-overlay {
    transform: translateY(0);
}

.hall-gallery-overlay h3 {
    font-size: 1.5rem;
    margin: 0;
}

.hall-gallery-overlay p {
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hall-gallery-item {
        height: 250px !important;
    }
}

@media (max-width: 480px) {
    .hall-gallery-item {
        height: 200px !important;
    }
}