/* ── Global link underline reset (Bootstrap 5 adds underline by default) ── */
a,
a:hover,
a:focus {
    text-decoration: none !important;
}

/* Only keep underlines where explicitly wanted */
.text-decoration-underline,
.ltn__blog-details-wrap .blog-details-content a,
.ltn__comment-area a:hover,
article p a,
.read-more-btn:hover,
.contact-card a:hover,
.committee-table a:hover {
    text-decoration: underline !important;
}

/* ── Desktop Nav: reduce side padding, allow 2-line wrap ── */
.header-bottom-area .container {
    max-width: 100% !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
}

.header-bottom-area .header-menu-column {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Allow nav to wrap into 2 lines */
.header-bottom-area .ltn__main-menu > ul {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
}

/* Tighter item spacing */
.ltn__main-menu > ul > li {
    margin-right: 1px !important;
}

.ltn__main-menu > ul > li > a {
    font-size: 12px !important;
    padding: 5px 5px !important;
    white-space: nowrap;
}

/* ── Restore button colours that the global link reset can affect ── */
.btn,
.btn:hover,
.btn:focus,
.theme-btn-1,
.theme-btn-1:hover,
.theme-btn-2,
.theme-btn-2:hover {
    text-decoration: none !important;
}

.theme-btn-1 {
    background-color: var(--ltn__secondary-color, #009688) !important;
    color: #ffffff !important;
}

.theme-btn-1:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-color: #009688 !important;
}

/* ── Standard button ── */
.brig-btn {
    display: inline-block;
    padding: 9px 22px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    border: 2px solid #009688 !important;
    background-color: #009688 !important;
    color: #ffffff !important;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none !important;
    position: relative;
    z-index: 1;
}

.brig-btn:hover,
.brig-btn:focus,
.brig-btn:active {
    background-color: #ffffff !important;
    color: #009688 !important;
    border: 2px solid #009688 !important;
    text-decoration: none !important;
}

/* ── Large CTA button ── */
.brig-btn-lg {
    display: inline-block !important;
    padding: 16px 40px !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 4px !important;
    border: 2px solid #009688 !important;
    background-color: #009688 !important;
    color: #ffffff !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;
    text-decoration: none !important;
}

.brig-btn-lg:hover,
.brig-btn-lg:focus,
.brig-btn-lg:active {
    background-color: #ffffff !important;
    color: #009688 !important;
    border: 2px solid #009688 !important;
    text-decoration: none !important;
}

/* ── Carousel arrow buttons: force full-height so flex centers the icon ── */
.banner-slider .carousel-control-prev,
.banner-slider .carousel-control-next {
    top: 0 !important;
    bottom: 0 !important;
    height: 100% !important;
    width: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
}

/* Menu Icon */
.menu-icon {
    & > a {
        position: relative;
        &::before {
            content: "\f063" !important;
            font-size: 8px;
            position: absolute;
            top: 50%;
            right: 0;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            font-family: 'Font Awesome\ 5 Free';
            font-weight: 900;
        }
    }
}

/* ── Mega Menu: Add left padding to first column only ── */
.mega-menu > li:first-child {
    padding-left: 20px !important;
}
