/* hall-bookings.css — page-specific styles for Hall Bookings */

/* === CSS VARIABLES (Consistent with provided standards) === */
        

        

        

        

        

        /* === HERO SECTION === */
        .page-hero {
            position: relative;
            padding: 230px 0 70px;
            background: linear-gradient(135deg, rgba(44, 62, 80, 0.88) 0%, rgba(42, 39, 36, 0.92) 100%), url('https://stjosephclarkston.com/wp-content/uploads/2026/01/Welcome-View-from-LHS-scal.jpg');
            background-size: cover;
            background-position: center 35%;
            color: var(--white);
            text-align: center;
            overflow: hidden;
            margin-top: -55px;
        }

        .page-hero .hero-container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }

        .page-hero h1 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            color: var(--white);
            margin-bottom: 20px;
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
        }

        .page-hero 

        /* === LEFT SIDEBAR NAVIGATION === */
        

        

        

        .sidebar-nav-list 

        

        

        /* === MAIN CONTENT AREA === */
        

        .section {
            padding: 20px 0 40px;
            border-bottom: 1px solid var(--border-color);
        }

        .section:last-of-type {
            border-bottom: none;
            padding-bottom: 20px;
        }

        

        

        

        /* === INFO CARD (Simple) === */
        .info-card {
            background: var(--white);
            border-radius: 0;
            padding: 28px 24px;
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
            border-top: 4px solid var(--accent);
            text-align: center;
            margin-bottom: 30px;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .info-card i {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .info-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

        .info-card 

        .info-card 

        .info-card a:hover {
            text-decoration: underline;
        }

        /* === SCHEDULER CARD === */
        .scheduler-card {
            background: var(--white);
            border-radius: 0;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
            border-top: 4px solid var(--accent);
            margin-bottom: 30px;
        }

        .card-header {
            padding: 22px 28px 16px;
            background: var(--accent-lighter);
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 18px;
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background: var(--accent-light);
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-icon i {
            font-size: 1.8rem;
            color: var(--accent);
        }

        .card-title h3 {
            font-size: 1.5rem;
            margin-bottom: 4px;
            color: var(--primary);
        }

        .card-badge {
            background: var(--accent);
            color: white;
            padding: 3px 12px;
            border-radius: 0;
            font-size: 0.7rem;
            font-weight: 700;
            display: inline-block;
            letter-spacing: 0.3px;
        }

        .card-

        .iframe-container {
            width: 100%;
            border-radius: 0;
            overflow: hidden;
        }

        iframe {
            width: 100%;
            height: 700px;
            border: none;
            border-radius: 0;
        }

        .note-text {
            margin-top: 18px;
            background: #fff6e5;
            border-radius: 0;
            padding: 14px 20px;
            font-size: 0.9rem;
            color: #7a5c00;
            border-left: 3px solid var(--accent);
        }

        /* === CONTACT SECTION (Simple) === */
        .contact-card {
            background: var(--white);
            border-radius: 0;
            padding: 24px;
            box-shadow: var(--shadow-soft);
            text-align: center;
            border-top: 4px solid var(--accent);
        }

        .contact-card i {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 15px;
        }

        .contact-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

        .contact-card 

        .contact-card 

        .contact-card a:hover {
            text-decoration: underline;
        }

        /* === RESPONSIVE === */
        @media (max-width: 1100px) {
            
            
            
        }

        @media (max-width: 768px) {
            
            .page-hero {
                padding: 180px 0 50px;
            }
            .page-hero h1 {
                font-size: 2rem;
            }
            .page-hero 
            .card-header {
                flex-direction: column;
                text-align: center;
            }
            iframe {
                height: 550px;
            }
        }

        @media (max-width: 576px) {
            .card-
            .card-header {
                padding: 18px 20px;
            }
        }

        .sidebar-nav-list li::before {
            content: none !important;
            display: none !important;
        }