.hall-hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 100vh;
}

.hall-hero-pattern {
    position: absolute;
    width: 200%;
    height: 200%;
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hall-hero-content {
    text-align: center;
    z-index: 2;
    padding: 20px;
}

.hall-hero-title {
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 20px;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hall-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.hall-hero-btn {
    display: inline-block;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.hall-hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(171, 96, 52, 0.5) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hall-hero-title {
        font-size: 2.5rem;
    }
    
    .hall-hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hall-hero-title {
        font-size: 2rem;
    }
    
    .hall-hero-subtitle {
        font-size: 0.9rem;
    }
}