/* ===========================
   CSS VARIABLES
   =========================== */
   :root {
    --primary: #081c34;
    --primary-hover: #0a2a55;
    --primary-light: #e8eef5;
}

/* ===========================
   HALL HERO - SAME AS SERVICES
   =========================== */
#hall-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.5) 100%), url('../images/herohall.jpg') center/cover no-repeat;
    height: 85vh;
    position: relative;
    color: white;
    overflow: hidden;
}

#hall-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Animated Shapes */
.animated-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, -50px) scale(1.1);
        opacity: 0.6;
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

.hero-badge i {
    color: #ffd700;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Hero Title */
.hero-title {
    font-size: 4.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-subtitle {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    animation: bounce 2s infinite;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===========================
   HALL INTRO SECTION
   =========================== */
.hall-intro {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #495057;
}

.feature-item i {
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Intro Image */
.intro-image-wrapper {
    position: relative;
    padding: 20px;
}

.intro-main-image {
    position: relative;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 1;
    transform: translate(-20px, 20px);
}

.intro-main-image:hover {
    transform: translateY(-5px);
}

/* ===========================
   SECTION BADGE
   =========================== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid rgba(8, 28, 52, 0.1);
}

/* ===========================
   HALL GALLERY SECTION
   =========================== */
.hall-gallery {
    background: #ffffff;
    position: relative;
}

.hall-card {
    height: 100%;
}

.hall-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hall-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hall-card:hover .hall-image {
    transform: scale(1.1);
}

.hall-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hall-card:hover .hall-overlay {
    opacity: 1;
}

.hall-info h4 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hall-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

/* ===========================
   SEATING CAPACITY SECTION
   =========================== */
.seating-capacity {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.capacity-table-wrapper {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.capacity-image-container {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.capacity-table-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    transition: transform 0.3s ease;
}

.capacity-table-image:hover {
    transform: scale(1.02);
}

.table-note {
    padding: 20px;
    background: var(--primary-light);
    border-radius: 10px;
}

.table-note p {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.95rem;
}

.table-note i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Seating Examples */
.setup-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.setup-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(8, 28, 52, 0.15);
    border-color: var(--primary);
}

.setup-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.setup-card:hover .setup-icon {
    background: var(--primary);
    transform: rotate(360deg);
}

.setup-icon i {
    font-size: 2.5rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.setup-card:hover .setup-icon i {
    color: white;
}

.setup-card h5 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

.setup-card p {
    font-size: 0.95rem;
}

/* ===========================
   HALL FEATURES
   =========================== */
.hall-features {
    background: #ffffff;
}

.feature-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(8, 28, 52, 0.2);
    border-color: var(--primary);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
    box-shadow: 0 15px 40px rgba(8, 28, 52, 0.3);
}

.feature-icon i {
    font-size: 3rem;
    color: white;
}

.feature-card h5 {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 1.3rem;
}

.feature-card p {
    color: #6c757d;
    font-size: 0.95rem;
}

/* ===========================
   CTA SECTION
   =========================== */
.hall-cta {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.cta-card {
    position: relative;
    background: var(--primary);
    border-radius: 30px;
    padding: 60px 50px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(8, 28, 52, 0.3);
}

.cta-card .btn-light {
    background: white;
    color: var(--primary);
    border: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-card .btn-light:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--primary-light);
    color: var(--primary-hover);
}

.cta-card .btn-outline-light {
    border: 2px solid white;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-card .btn-outline-light:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* CTA Decoration */
.cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 15s infinite ease-in-out;
}

.cta-circle-1 {
    width: 250px;
    height: 250px;
    top: -125px;
    right: -100px;
    animation-delay: 0s;
}

.cta-circle-2 {
    width: 180px;
    height: 180px;
    bottom: -90px;
    left: -50px;
    animation-delay: 5s;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hall-image-wrapper {
        height: 300px;
    }

    .intro-main-image {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    #hall-hero {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .intro-main-image {
        max-height: 300px;
    }

    .hall-image-wrapper {
        height: 280px;
        margin-bottom: 20px;
    }
    
    .hall-info h4 {
        font-size: 1.5rem;
    }

    .capacity-table-wrapper {
        padding: 20px;
    }
    
    .capacity-image-container {
        border-radius: 10px;
    }
    
    .cta-card {
        padding: 40px 30px;
    }
    
    .cta-card .btn-lg {
        padding: 12px 25px !important;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    #hall-hero {
        height: 60vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .intro-main-image {
        max-height: 250px;
    }

    .hall-image-wrapper {
        height: 250px;
    }
    
    .hall-info h4 {
        font-size: 1.3rem;
    }

    .hall-info p {
        font-size: 0.9rem;
    }
    
    .capacity-image-container {
        border-radius: 8px;
    }
    
    .feature-item {
        font-size: 0.95rem;
    }
    
    .capacity-table-wrapper {
        padding: 15px;
    }

    .table-note {
        padding: 15px;
    }

    .table-note p {
        font-size: 0.85rem;
    }
}

/* ===========================
   CUSTOM SCROLLBAR
   =========================== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}