/* Custom Header Styles */
.custom-header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
}

/* Ensure sticky header handles positioning correctly if a sticky class is applied dynamically */
.custom-header.sticky {
    position: fixed;
    top: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
}

.custom-header.sticky .header-top-bar {
    display: none;
}

.header-top-bar {
    background: linear-gradient(90deg, #84C341 0%, #3FAE7A 100%);
    padding: 12px 30px;
}

.custom-hamburger {
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Make hamburger icon look more like the screenshot if needed, but fas fa-bars is close */
.custom-hamburger i {
    font-size: 28px;
}

.custom-search .search-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    color: #555;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.3s;
}

.custom-search .search-toggler:hover {
    transform: scale(1.1);
    color: #3FAE7A;
}

.header-bottom-bar {
    background-color: #fff;
    padding: 10px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.custom-logo {
    max-height: 80px; /* Adjust based on original logo size, looks prominent in screenshot */
}

/* Flexbox to push nav to center and btn to right */
.header-bottom-bar > .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mean__menu-wrapper {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.custom-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-nav ul li {
    position: relative;
    padding: 0 18px;
}

.custom-nav ul li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #222; /* Text color for separator */
    font-size: 16px;
    font-weight: 300;
}

.custom-nav ul li a {
    color: #222;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s;
    font-family: inherit; /* use default site font */
}

.custom-nav ul li a:hover,
.custom-nav ul li.active a {
    color: #222; /* In screenshot, active text color isn't green, just underlined */
}

.custom-nav ul li.active a::after {
    content: '';
    position: absolute;
    bottom: -6px; /* distance from text */
    left: 50%;
    transform: translateX(-50%);
    width: 30px; /* Short green underline */
    height: 2px;
    background-color: #3FAE7A;
}

.custom-ticket-btn {
    background: linear-gradient(90deg, #84C341 0%, #3FAE7A 100%);
    color: #fff !important;
    padding: 12px 35px;
    border-radius: 40px; /* pill shaped */
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    white-space: nowrap;
}

.custom-ticket-btn i {
    margin-left: 10px;
    font-size: 18px;
}

.custom-ticket-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(63, 174, 122, 0.4);
}

@media (max-width: 991px) {
    .custom-nav {
        display: none !important;
    }
    .header-bottom-bar {
        padding: 12px 15px;
    }
    .custom-ticket-btn {
        padding: 6px 15px;
        font-size: 13px;
    }
    .custom-logo {
        max-height: 40px;
        max-width: 45vw;
    }
}

/* Offcanvas Mobile Menu Logo Fix */
.offcanvas__logo img {
    max-height: 55px;
    max-width: 200px;
    width: auto;
}

