/* ----------------------------------- */
/* FILTER SEARCH BOX STYLES */
/* ----------------------------------- */
.filter-search-box {
    width: 100%;
    padding: 0 15px;
}

.filters-box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.filters {
    position: relative;
    background: #222;
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 150px;
}

.filters i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.filters i.fa-angle-up {
    transform: rotate(180deg);
}

/* DROPDOWN */
.filters .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    background: #111;
    color: #fff;
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
    border-radius: 4px;
    display: none;
    z-index: 999;
    box-shadow: 0 5px 10px rgba(0,0,0,0.4);
    min-width: 150px;
}

.filters .dropdown li {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.filters .dropdown li:hover {
    background: #333;
}

/* SEARCH INPUT */
.search-filters {
    display: flex;
    align-items: center;
    max-width: 300px;
    margin-bottom: 15px;
    background: #222;
    border-radius: 4px;
    padding: 5px 10px;
}

.search-filters input {
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    flex: 1;
    padding: 5px;
    font-size: 14px;
}

.search-filters i {
    color: #fff;
    margin-left: 8px;
}

/* SMALL RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    .filters-box {
        flex-direction: column;
        gap: 10px;
    }
    .filters {
        min-width: 100%;
    }
    .filters .dropdown {
        min-width: 100%;
    }
}

/* --- Membership Portal Refinement --- */

/* Keep the block dark and integrated with the site theme */
.movie-ticket-book {
    background: #111 !important; 
    border: 1px solid #222;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 60px 20px !important; /* Increased padding for a "fuller" look */
}

/* Bigger lettering and wider spacing for a cinematic feel */
.movie-ticket-book .heading {
    color: #666 !important; /* Your "perfect" color choice */
    text-transform: uppercase;
    font-size: 22px !important; /* Larger font */
    letter-spacing: 6px !important; /* Much wider spacing for that premium look */
    line-height: 1.6;
    margin: 0 auto 30px auto !important;
    max-width: 800px; /* Keeps the text from stretching too far on wide screens */
}

/* The Portal Button - Adjusted to match the "wider" aesthetic */
.movie-ticket-book button {
    background: transparent !important;
    border: 1px solid #333 !important;
    color: #666 !important;
    text-transform: uppercase;
    font-size: 13px !important;
    font-weight: 600;
    letter-spacing: 3px !important; /* Wider spacing on button to match text */
    transition: 0.3s ease;
    padding: 15px 45px !important; /* Larger button */
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    transform: none !important;
}

.movie-ticket-book button:hover {
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
}

/* Maintaining structure divs but keeping them clean */
.choose-date, .choose-time {
    width: 100% !important;
    border: none !important;
}

#scoreText {
    transition: opacity 0.3s ease;
    font-family: sans-serif; /* Ensures consistent centering */
}

header{
height: auto !important;
}

/* 1. Add this to the TOP of index.css to ensure the header doesn't cut off the menu */
header {
    overflow: visible !important;
    position: relative;
    z-index: 10; /* Lower than the dropdown, higher than the background */
}

/* 2. Force the dropdown container to stay on top */
#news-dropdown-container {
    position: relative;
    z-index: 99999 !important;
}

/* 3. The most important part: The Dropdown Menu fix */
.dropdown-menu {
    position: absolute !important;
    z-index: 1000000 !important;
    background: #000 !important;
    /* This ensures it stays on top of the next section (#111 section) */
    visibility: visible !important;
    display: none; /* Controlled by your JS/Bootstrap toggle */
}

/* 4. Fix the section below (the "Membership Portal") */
/* We need to ensure this section sits UNDER the header's dropdowns */
.movie-ticket-book {
    position: relative;
    z-index: 1 !important; /* Keep it low so the dropdown overlaps it */
    background: #111 !important;
    border: 1px solid #222;
    /* ... rest of your existing styles ... */
}