

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Event list layout tweaks live mostly in the view; no extra vertical offset needed here. */

/* ---------- Header (two-bar layout: top dark + nav light) ---------- */
.header-vk {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Thin red accent bar at very top */
.header-red-bar {
    height: 4px;
    background-color: #a10f2b;
    width: 100%;
}

/* Top bar: dark gray - Logo | Center (text + search) | Sign In */
.header-top {
    background-color: #2a2a2a;
    padding: 12px 0;
}

.header-top-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-logo {
    flex-shrink: 0;
    display: block;
}

.header-logo img {
    height: 40px;
    width: auto;
    max-width: 180px;
    display: block;
}

/* Center block: utility text + search bar, horizontally centered in header */
.header-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
}

.header-center .header-utility-row {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.8rem;
    color: #fff;
}

.header-center .header-utility-item {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.header-center .flag-icon {
    width: 1.2em;
    height: 0.9em;
    vertical-align: middle;
}

.header-center .header-utility-item.header-no-fees {
    font-weight: 700;
}

.header-center .header-search-wrap {
    width: 100%;
    max-width: 480px;
}

.header-search-wrap {
    display: flex;
    align-items: stretch;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    overflow: visible;
    position: relative;
}

.header-search-wrap .header-search-container,
.header-search-wrap .search-container {
    flex: 1;
    min-width: 0;
}

.btn-check:focus + .btn-danger, .btn-danger:focus {
    box-shadow: none;
}

.header-search-wrap .search-container input {
    border: none;
    padding: 10px 14px;
    font-size: 0.95rem;
    width: 100%;
    border-radius: 0;
    outline: 0px;
}

.btn-md {
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: .5rem;
    font-size: .875rem;
}

.header-search-btn {
    background-color: #a10f2b;
    color: #fff;
    border: none;
    padding: 0 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.header-search-btn:hover {
    background-color: #b61332;
}

/* Sign In dropdown wrapper (keeps position in header) */
.header-signin-dropdown {
    flex-shrink: 0;
}

/* Sign In link (when not dropdown) and dropdown trigger */
.header-signin {
    flex-shrink: 0;
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
}

.header-signin:hover {
    color: #fff;
    text-decoration: underline;
}

.header-signin.dropdown-toggle::after {
    margin-left: 0.35em;
}

/* Signed-in state: Hello + Logout */
.header-signin-signedin {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-hello {
    color: #fff;
    font-size: 0.9rem;
}

.header-logout-form {
    margin: 0;
}

.header-signout-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 0.9rem;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
}

.header-signout-btn:hover {
    color: #fff;
    text-decoration: none;
}

/* Hide Sign In in header on mobile for Event list and Home pages */
@media (max-width: 767.98px) {
    body.event-index-page .header-signin-dropdown,
    body.home-page .header-signin-dropdown {
        display: none !important;
    }
}

/* Welcome [Name] dropdown: My Account + Logout */
.header-account-menu .header-account-item {
    display: block;
    width: 100%;
    padding: 8px 0;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.header-account-menu .header-account-item:hover {
    color: #a10f2b;
}

.header-account-menu .header-account-logout {
    width: 100%;
}

.header-account-menu .dropdown-divider {
    border-color: #e0e0e0;
}

/* Sign In dropdown menu (white box, red border, pointer) */
.header-signin-dropdown .dropdown-menu {
    min-width: 280px;
    padding: 0;
    margin-top: 8px;
    border: 1px solid #a10f2b;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-signin-menu {
    position: relative;
    background: #fff;
}

/* Red triangular pointer above the dropdown (towards Sign In button) */
.header-signin-menu-pointer {
    position: absolute;
    top: -8px;
    right: 24px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #a10f2b;
}

.header-signin-menu .form-label {
    color: #333;
    font-weight: 500;
}

.header-signin-menu .form-control {
    border: 1px solid #ccc;
    border-radius: 4px;
}

.header-signin-menu .form-control:focus {
    border-color: #a10f2b;
    box-shadow: 0 0 0 0.2rem rgba(161, 15, 43, 0.25);
}

.header-signin-submit {
    background-color: #a10f2b !important;
    border-color: #a10f2b !important;
    color: #fff !important;
    font-weight: 600;
    padding: 8px 16px;
}

.header-signin-submit:hover {
    background-color: #b61332 !important;
    border-color: #b61332 !important;
    color: #fff !important;
}

.header-signin-link {
    color: #a10f2b;
    font-size: 0.9rem;
    text-decoration: none;
}

.header-signin-link:hover {
    color: #b61332;
    text-decoration: underline;
}

/* Sign In dropdown: error message (invalid credentials) */
.header-signin-error {
    color: #a10f2b;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Nav bar: light gray - centered category links */
.header-nav {
    background-color: #f8f8f8;
    border-top: 1px solid #e0e0e0;
}

.header-nav.navbar {
    padding-top: 0;
    padding-bottom: 0;
}

.header-nav .navbar-nav .nav-link {
    color: #687074 !important;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 12px 14px !important;
    border-top: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}

.header-nav .navbar-nav .nav-link:hover,
.header-nav .navbar-nav .nav-link.show {
    color: #a10f2b !important;
    border-top-color: #a10f2b;
    background-color: transparent !important;
}

.header-nav .navbar-toggler {
    border-color: #ccc;
    padding: 6px 10px;
}

.header-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23687074' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Header responsive: mobile = hamburger + logo + sign in, then full-width search */
@media (max-width: 991px) {
    .header-top-inner {
        flex-wrap: wrap;
        gap: 12px;
    }

    .vk-mobile-nav-toggler {
        order: 1;
        border-color: rgba(255,255,255,0.5);
        padding: 0.35rem 0.5rem;
    }
    .vk-mobile-nav-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .header-logo {
        order: 2;
        flex: 1;
        text-align: center;
        min-width: 0;
    }
    .header-logo img {
        margin: 0 auto;
    }

    .vk-mobile-search-toggle {
        order: 3;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
        border: 1px solid rgba(255,255,255,0.5);
        border-radius: 4px;
        background: transparent;
        color: #fff;
        font-size: 1.1rem;
        cursor: pointer;
    }

    .vk-mobile-search-toggle:hover {
        background: rgba(255,255,255,0.1);
        color: #fff;
    }

    .vk-mobile-search-toggle[aria-expanded="true"] {
        background: rgba(255,255,255,0.15);
    }

    .header-signin-dropdown {
        order: 4;
        margin-left: 0;
    }

    .header-center.vk-mobile-search-area {
        order: 5;
        width: 100%;
        flex: none;
        display: none;
    }

    .header-vk.vk-mobile-search-open .header-center.vk-mobile-search-area {
        display: flex;
        flex-direction: column;
    }

    .header-center .header-search-wrap {
        max-width: none;
    }

    .header-search-wrap .search-container input {
        background-color: #f0f0f0;
    }
}

/* ---------- Mobile lateral menu (offcanvas): SPORTS, CONCERTS, LOGIN only ---------- */
.vk-mobile-offcanvas.offcanvas {
    background: #fff;
    max-width: 85%;
}

.vk-offcanvas-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.vk-offcanvas-logo {
    display: block;
    text-decoration: none;
    flex: 1;
    min-width: 0;
}

.vk-offcanvas-logo-img {
    height: 38px;
    width: auto;
    max-width: 200px;
    min-height: 32px;
    display: block;
    object-fit: contain;
    object-position: left center;
}

.vk-offcanvas-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border: none;
    background: #e0e0e0;
    border-radius: 6px;
    color: #333;
    font-size: 1.25rem;
    cursor: pointer;
    flex-shrink: 0;
}

.vk-offcanvas-close:hover {
    background: #d0d0d0;
    color: #222;
}

.vk-offcanvas-close:focus {
    outline: 2px solid #a10f2b;
    outline-offset: 2px;
}

.vk-offcanvas-body {
    padding: 0 !important;
}

.vk-offcanvas-link {
    display: block;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.vk-offcanvas-link:hover {
    color: #333;
    background: #f8f9fa;
}

/* SPORTS expandable row */
.vk-offcanvas-item {
    border-bottom: 1px solid #eee;
}

.vk-offcanvas-link-toggle {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vk-offcanvas-chevron {
    font-size: 0.75rem;
    color: #999;
    transition: transform 0.2s;
}

.vk-offcanvas-item .collapse.show .vk-offcanvas-chevron {
    transform: rotate(180deg);
}

.vk-offcanvas-dropdown {
    background: #fff;
}

.vk-offcanvas-sublink {
    display: block;
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.vk-offcanvas-sublink:hover {
    color: #333;
    background: #f8f9fa;
}

@media (max-width: 576px) {
    .header-center .header-utility-row {
        font-size: 0.7rem;
        gap: 10px;
    }

    .header-center .flag-icon {
        width: 1em;
        height: 0.75em;
    }
}

/* ---------- Identity (Login/Register) buttons - match header red ---------- */
.btn.vk-login-btn {
    background-color: #800000;
    border-color: #800000;
    color: #fff;
}
.btn.vk-login-btn:hover {
    background-color: #a00000;
    border-color: #a00000;
    color: #fff;
}

.vk-login-card a {
    color: #000;
}
.vk-login-card a:hover {
    color: #333;
}

/* Multi-column dropdown (mega-menu) */
.dropdown-menu.mega-menu {
    width: 480px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
    border-color: #a10f2b;
}

    .dropdown-menu.mega-menu .col {
        min-width: 10px;
    }


/* ---------- Footer (VenueKingsWebSite: #151515 / #191919) ---------- */
footer {
    background-color: #151515;
    color: #bbb;
    padding: 40px 0;
    margin-top: auto;
}

/* Desktop footer: original multi-column layout */
footer .footer-desktop .container {
    padding-left: 15px;
    padding-right: 15px;
}

footer .footer-desktop .row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

/* Mobile footer only: 2-column layout (COMPANY | SERVICES), CONNECT, PARTNERS */
footer .footer-mobile .footer-container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

footer .footer-mobile .footer-branding {
    margin-bottom: 1.5rem;
}

footer .footer-mobile .footer-two-cols {
    margin-bottom: 1.5rem;
    gap: 2rem 0;
}

footer .footer-mobile .footer-col {
    margin-bottom: 0.5rem;
}

footer .footer-mobile .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer .footer-mobile .footer-links li {
    margin-bottom: 0.4rem;
}

footer .footer-mobile .footer-links li a {
    display: inline-block;
}

footer .footer-mobile .footer-connect {
    margin-bottom: 1.5rem;
}

footer .footer-mobile .footer-connect .footer-contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 1rem;
}

footer .footer-mobile .footer-connect .footer-contact-info a {
    display: inline-block;
}

footer .footer-mobile .footer-partners-row {
    margin-bottom: 0;
}


    footer a {
        color: #bbb;
        text-decoration: none;
        font-size: 0.75rem;
    }

        footer a:hover {
            color: #fff;
        }

.footer-title {
    color: #ddd;
    font-weight: 300;
    margin-bottom: 15px;
    font-size: 1rem;
}

footer .footer-mobile .footer-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.footer-bottom {
    border-top: none;
    background: #191919;
    margin-top: 20px;
    padding-top: 15px;
    font-size: 0.85rem;
    color: #bbb;
}

/* Footer Logo Section */
.footer-logo-section {
    margin-bottom: 20px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
}

    .footer-logo img {
        max-width: 200px;
        width: 100%;
        height: auto;
        display: block;
    }

.footer-achievement {
    color: #bbb;
    font-size: 0.75rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

    .footer-achievement p {
        margin: 0;
        padding: 0;
    }

.footer-no-fees {
    color: #a10f2b;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 15px;
}

    .footer-no-fees p {
        margin: 0;
        padding: 0;
    }

/* Footer Social Icons */
.footer-social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

footer .footer-mobile .footer-social-icons {
    justify-content: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

    .social-icon:hover {
        background-color: #a10f2b;
        color: #fff;
    }

    .social-icon i {
        font-size: 0.75rem;
    }

/* Footer Contact Info */
.footer-contact-info {
    margin-top: 10px;
}

    .footer-contact-info a {
        color: #bbb;
        font-size: 0.75rem;
        display: block;
        line-height: 1.4;
    }
    
    .footer-contact-info a:first-child {
        margin-bottom: 0;
    }

        .footer-contact-info a:hover {
            color: #fff;
        }

/* Footer Partners Image */
.footer-partners-img {
    margin-top: 10px;
    width: 120px;
    height: auto;
    display: block;
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
    .dropdown-menu.mega-menu {
        width: 100%;
    }
}

@media (min-width: 992px) {
    #filter-fields {
        margin-top: 1rem; /* align left filters with event table */
    }
    #filter-sticky {
        position: sticky;
        top: 5rem;
        max-height: calc(100vh - 2rem);
        overflow: auto; /* scroll filters if tall */
    }
}

.dropdown-toggle::after {
    display: none;
}

/* Legacy nav-link rules only apply when not inside header-nav (light bar has its own rules above) */
.header-nav .navbar-nav .nav-link {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
}


.vk-menu .dropdown-item,
.vk-menu h6 {
    white-space: normal;
    font-size: .9em;
    color: #333;
    padding: 5px;
    padding-left: 10px;
}

    .vk-menu h6[data-category-id] {
        cursor: pointer;
        background: #fdf2f3;
    }

.vk-menu .dropdown-item:hover,
.vk-menu h6:hover {
    background: #f5e6e8;
}


.vk-menu .dropdown-menu.right-0 {
    right: 0;
    left: auto
}




.badge-soft {
    color: #888;
    font-size: .7em;
    padding: .2em;
    margin-left: .1em;
    /*background: #fdfdfd;*/
    font-weight: 400;
    /*border: 1px solid #fafafa;*/
    border-radius: .3em;
    white-space: nowrap;
}





/*================ Only Desktop View  ======================*/
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }

    .navbar {
        overflow: initial;
    }
}

/*============ end ==================*/

.soft-inset-border {
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06), inset 0 0px 10px rgba(0,0,0,0.04), inset 0 0px 10px rgba(0,0,0,0.04);
}

section.hero h4 {
    text-shadow: 1px 1px 1px black;
}

section.hero p {
    text-shadow: 1px 1px 1px black;
    display: none;
    font-size: 0.9em;
    margin-bottom: 3.8em;
}

.fine-header {
    padding: .5em;
    background-color: #a10f2b;
    color: #fff;
    font-size: 1rem;
    border: 1px solid #b61332;
}

.fine-small-header {
    font-size: .9rem;
    padding: .3em;
    background: #a10f2b;
    color: #fff;
    border: 1px solid #b61332;
}

.navbar-toggler {
    background: #a10f2b;
    border-color: #b61332;
    margin: .4em;
}





/* ---------- Hero (VenueKingsWebSite dark red) ---------- */
.hero {
    background: linear-gradient(344deg, #a10f2b, #b61332);
    color: #fff;
    text-align: center;
}

    .hero h2 {
        font-weight: 700;
        margin-bottom: 20px;
    }

.search-box {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

    .search-box input {
        flex: 1;
        border: none;
        padding: 12px;
        font-size: 1rem;
        outline: none;
    }

    .search-box button {
        background-color: #a10f2b;
        color: white;
        border: none;
        padding: 0 20px;
        font-weight: 600;
        cursor: pointer;
    }

        .search-box button:hover {
            background-color: #b61332;
        }

/* ---------- Event Cards ---------- */
main {
    flex: 1;
}

.event-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 3px 6px rgb(100 10 0 / 10%);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 2em;
    cursor: pointer;
    border: 1px solid #d4a5ab;
}

    .event-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }

    .event-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .event-card .card-body {
        padding: 15px;
        background: linear-gradient(357deg, #a10f2b, #a96d78);
    }

    .event-card .card-body h5 {
        color: #fff;
        font-size: 1rem;
        text-align: center;
        text-shadow: 1px 1px 1px #000;
    }


.accordion {
    max-height: calc(100vh - 10rem);
}

.accordion-sm .accordion-body {
    font-size: 0.85rem;
    padding: 0.5rem;
}

.accordion-sm .accordion-button {
    font-size: 0.9rem;
    padding: 0.4rem 0.75rem;
}

.accordion-sm .btn-group-sm > .btn, .btn-sm {
    padding: .1rem .25rem;
    font-size: .77rem;
    border-radius: .2rem;
}

/* ---------- Privacy Page ---------- */
.privacy-content {
    font-size: 0.8rem; /* smaller body and subtitles; main title remains default */
}

.btn-danger {
    text-shadow: 1px 1px 1px black;
    background-color: #a10f2b;
}

.btn-outline-secondary {
    color: black;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #fdf2f3;
}

.vk-table-1 {
    font-size: .9rem;
    margin-top: 1.5rem;
}

    .vk-table-1.table-striped > tbody > tr:nth-of-type(odd) {
        --bs-table-accent-bg: rgba(0, 0, 0, 0.02);
    }

    .vk-table-1.table-hover > tbody > tr:hover {
        --bs-table-accent-bg: var(--bs-table-hover-bg);
        color: var(--bs-table-hover-color);
    }

    .vk-table-1 thead {
        background-color: #a10f2b;
        color: #fff;
        text-shadow: 1px 1px 1px black;
    }

    .vk-table-1 tr {
        vertical-align: middle;
    }

    .vk-table-1 .btn-danger {
        font-size: .9rem;
    }

/* Event list: mobile – no header, full-width rows, wider date column */
@media (max-width: 767.98px) {
    #events-table thead {
        display: none !important;
    }
    #events-table {
        width: 100%;
        table-layout: fixed;
    }
    #events-table tbody td {
        width: 100%;
        display: block;
        box-sizing: border-box;
    }
    #events-table tbody tr {
        display: block;
        width: 100%;
        border-bottom: 1px solid #dee2e6;
        cursor: pointer;
    }
    #events-table tbody td.event-list-name-cell {
        width: 100%;
        max-width: none;
    }
    /* Wider date column so day, date and time fit comfortably */
    #events-table .event-list-date-col {
        min-width: 90px;
        width: 90px;
        flex-shrink: 0;
    }
}

/* ---------- FAQ Page Subtitle (Tab-like) ---------- */
.faq-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: #6c757d;
    margin-top: 20px;
    margin-bottom: 0;
    padding-left: 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-content {
    padding-left: 40px;
}
