.hall-specs-section {
    width: 100%;
}

.hall-specs-container {
    display: grid;
    margin: 0 auto;
}

.hall-spec-item {
    transition: all 0.3s;
    cursor: default;
}

.hall-spec-item:hover {
    transform: translateX(10px);
}

.hall-spec-icon {
    display: inline-block;
    line-height: 1;
}

.hall-spec-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hall-spec-value {
    font-size: 1.8rem;
    font-weight: 300;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hall-spec-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hall-spec-item {
        padding: 20px !important;
    }
    
    .hall-spec-value {
        font-size: 1.3rem;
    }
}