/* Global Styles */
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-size: 14px;
    overflow-x: hidden;
    font-family: "Noto Sans", sans-serif;
}

p {
    font-size: 15px;
    line-height: 2;
    font-family: "Roboto", sans-serif;
}


h1 {
    font-size: 40px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 25px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

p {
    margin: 0;
    padding: 0;
}



a {
    text-decoration: none;
}



ul {
    list-style-type: none;
    padding: 0;
}

.btn:focus {
    border: unset;
}

@font-face {
    font-family: "Noto Sans", sans-serif;
    src: url(./fonts/NotoSans-Regular.woff);
}

.navbar_full {
    position: relative;
    background-color: #F8F0E4;
    padding: 20px 0;
}
 
.logo {
    width: 196px;
}
 
.search_box {
    display: flex;
}
 
.Custom_btn {
    border: none;
    background-color: #006BD9;
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.search_input {
    width: 100%;
    height: 40px;
    border: none;
    padding: 10px 14px;
    color: #151435;
}
 
.nav_link_custom {
    font-family: "Noto Sans", sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 100%;
    color: #151435;
    margin-left: 85%;
}
 :focus-visible {
  outline: none;
}
#mobileNav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #F8F0E4;
 
    /* animation base */
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
 
    /* hard override bootstrap */
    height: auto !important;
    overflow: hidden;
    padding: 10px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
 
#mobileNav.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
 
#mobileNav.collapsing {
    height: auto !important;
    transition: none !important;
}
 
.mobile_dropdown {
    padding: 16px 0;
}



.first_section_bg {
    background-image: url("../img/bg_image.png");
    background-size: cover;
    background-position: center;

}

.first_section_content {
    max-width: 1000px;
    margin: auto;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.first_section_content h1 {
    font-family: "Noto Sans", sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 47px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 30px;
}
.view_more_btn {
    text-align: center;
    margin-top: 20px;
}
.view_more_btn a{
    font-family: "Noto Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #151435;
    background-color: #F8F0E4;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 4px 4px 0px #0000001A;
    display: inline-block;
    transition: 0.5s ease-in-out;
}
.view_more_btn a:hover{
    color: #006BD9;
    background-color: #FFFFFF;
}
 .first_section_content_date a{
    font-family: "Noto Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #FFFFFF;
    background-color: #006BD9;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.5s ease-in-out;
}

.first_section_content_date a:hover{
    color: #151435;
    background-color: #FFFFFF;
}
.section_title {
    font-family: "Noto Sans", sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 100%;
    text-align: center;
    color: #F8F0E4;
    margin-bottom: 40px;
}

.second_section_bg {
    background-color: #006BD9;
    padding: 50px 20px;
}

.cards {
    background-color: #F8F0E4;
    height: 100%;
    padding: 20px;
    position: relative;
}



.cards .card_body img {
    width: 100%;
    height: 237px;
    object-fit: cover;
}

.cards .card_title {
    font-family: "Noto Sans", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 29px;
    color: #151435;
    padding: 10px 0;
    border-bottom: 1px solid #E3DADA;
    transition-duration: .5s;
}

.cards:hover .card_title {
    color: #006BD9;
}

.cards .card_text {
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: #151435;
}

.cards .card_text_price {
    font-family: "Noto Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #151435;
}

.cart_hover {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: #FFFFFF;
    padding: 10px;
    border-radius: 50%;
    transition-duration: .5s;
}

.cards:hover .cart_hover {
    background-color: #006BD9;
    transform: rotate(-53.8deg);
}

.cards:hover .cart_hover svg path {
    fill: #FFFFFF;
    transition-duration: .5s;
}

.third_section_bg {
    background-color: #151435;
    padding: 50px 20px;
}

.image_hover {
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
}

.img_hover img,
.image_hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.cards:hover .img_hover img,
.event_card:hover .image_hover img {
    transform: scale(1.02);
}

/* Image container for zoom effect */
.img_hover {
    height: 250px;
    overflow: hidden;
}





/* footer section */
.footer_bg {
    background-color: #F8F0E4;
    padding: 60px 0 20px;
}

.footer_icon {
    width: 44px;
    margin-bottom: 20px;
}

.footer_text {
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #151435;
}

.footer_title {
    font-family: "Noto Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    color: #151435;
    margin-bottom: 10px;
}

.footer_group {
    max-width: 350px;
}

.footer {
    border-bottom: 1px solid #151435;
    padding-bottom: 25px;
}

.footer_text2 {
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    text-align: left;
    color: #151435;
}

.footer_social {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px 0;
}

.footer_social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #151435;
    border-radius: 50%;
}

.visitor_section {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0px;

}

.visitor_section .counting_section h1 {
    font-family: "Noto Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    color: #151435;
    margin-bottom: 0px;
}

.visitor_section .counting_section p {
    font-family: "Noto Sans", sans-serif;
    font-weight: 600;
    font-size: 36px;
    text-align: center;
    color: #006BD9;
}


/* ==========================================================================
   Event Details Page Refined Styles (Matching Image)
   ========================================================================== */

/* Hero Section */
.hero_section {
    width: 100%;
    height: 83vh;
    overflow: hidden;
}

.hero_img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Event Details Layout */
.event_details_section {
    padding: 50px 0;
}

.event_title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 27px;
    color: #006BD9;
    margin-bottom: 20px;
}

.event_meta {
    margin-bottom: 40px;
}
.event_meta p{
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #151435;

}
.meta_item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #151435;
}

.meta_icon {
    width: 20px;
    height: 20px;
}
.event_overview{
        padding: 0px 20px 0px 0px;
}
.event_overview h2 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 27px;
    color: #151435;
}

.event_overview p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #151435;
    margin-bottom: 20px;
    text-align: justify;
}

/* Location Box */
.location_box {
    margin-top: 60px;
    background: #F8F0E4;
}

.location_info {
    padding: 35px;
}

.location_info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.location_info p {
    font-size: 16px;
    line-height: 1.6;
}



.map_wrapper iframe {
    height: 300px;
    width: 100%;
}

.map_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sidebar Sticky Card */
.event_sidebar {
    position: sticky;
    top: 40px;
}

.reserve_card {
    background: #F8F0E4;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reserve_info .price {
    font-size: 18px;
    font-weight: 500;
    color: #151435;
}

.reserve_info .date {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: #151435;
    margin-bottom: 20px;
}

.reserve_btn {
    background: #fff;
    color: #006BD9;
    height: 48px;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 500;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 29px;
    box-shadow: 0px 0px 8px 0px #0000001F;
    transition-duration: .5s;
}

.reserve_btn:hover {
    background: #006BD9;
    color: #fff;
}

.reserve_btn:hover svg path {
    stroke: #fff;
    transition-duration: .5s;
}


/* Other Events Section (Blue) */
.other_events_section {
    background-color: #006BD9;
    padding: 100px 0;
    color: #fff;
}

.section_title_blue {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

.section_header {
    margin-bottom: 50px;
}

.nav_arrows {
    display: flex;
    gap: 15px;
}

.arrow_btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}



.arrow_btn:hover {
    background: #fff;
}

.arrow_btn:hover img {
    filter: invert(1);
}

/* Event Cards in Blue Section */
.event_card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    color: #151435;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.event_card .card_content {
    padding: 25px 0;
}

.event_card .cart_hover {
    top: 10px;
    right: 10px;
}

.event_card:hover .cart_hover {
    background-color: #006BD9;
    transform: rotate(-53.8deg);
}

.event_card:hover svg path {
    fill: white;
    transition-duration: .5s;
}

.card_img_wrapper {
    position: relative;
    height: 220px;
}

.card_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.fav_btn,
.share_btn {
    position: absolute;
    top: 15px;
    background: #fff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.fav_btn {
    right: 65px;
}

.share_btn {
    right: 15px;
}

.card_content {
    padding: 25px;
}

.card_title_inner {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #151435;
    padding-bottom: 10px;
    border-bottom: 1px solid #E3DADA;
}

.card_date_inner,
.card_loc_inner {
    font-size: 14px;
    color: #151435;
    display: block;
}

.card_price_inner {
    font-size: 20px;
    font-weight: 500;
    margin-top: 10px;
    color: #151435;
}

.left_content {
    border-right: 1px solid #151435;
}
/* EVENT-PAGE-SHOW ======================================*/
.event_lists_all_sec{
    background: #F8F0E4;
    padding: 50px 0px 20px;
    border-bottom: 1px solid #FFFFFF
}
.event_hero_section{
    position: relative;
}
.custom_pagination{
    justify-content: center;
}
.page-link:focus {
    z-index: 3;
    color: #0a58ca;
    background-color: #e9ecef;
    outline: 0;
    box-shadow: unset;
}
.custom_pagination .page-link {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    color: #151435;
    font-size: 16px;
}
.event_banner_text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 36px;
    color: #F8F0E4;

}
.event_table_lists{
    display: grid;
    grid-template-columns: 45% 38% 15%;;
    gap: 10px;
    background-color: #FFFFFF;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}
.event_table_title{
    display: flex;
    gap: 15px; 
    align-items: center;
    padding: 20px;
    border-right: 1px solid #E3DADA;
}
.event_table_title img{
    width: 90px;
    height: 60px;
    object-fit: cover;
}
.event_table_title h5 a{
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    color: #151435;
    transition: 0.5s ease-in-out;
}
.event_table_title h5 a:hover{
    color: #006BD9;
}
.event_table_address{
    padding: 36px 0px;
    border-right: 1px solid #E3DADA;
}
.event_table_address p{
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #151435;
    text-align: center;
}
.event_table_btn{
    text-align: center;
}
.event_read_btn {
    background: #fff;
    color: #006BD9;
    padding: 12px 21px;
    border-radius: 0px;
    font-weight: 500;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 29px;
    box-shadow: 0px 0px 8px 0px #0000001F;
    transition-duration: .5s;
    text-align: center;
}
/* owl carasol  */

/* Nav wrapper */
.owl-nav {
    position: absolute;
    top: -90px;
    right: 0;
    display: flex;
    gap: 12px;
}

/* Nav buttons */
.owl-nav button {
    width: 44px;
    height: 44px;
    border: 2px solid #F8F0E4 !important;
    color: #F8F0E4 !important;
    border-radius: 50%;
    font-size: 36px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.owl-nav button span {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-top: -6px;
    /* optional fine-tune */
}

@media (max-width: 1280px) {
    .left_content {
        border: none !important;
    }

}
@media (max-width: 1024px) {
   .cards .card_title {
    font-size: 16px;
    line-height: 24px;
}
.visitor_section {
    display: inline-block;
    align-items: center;
    gap: 14px;
    padding: 0px;
}
.event_read_btn {
    padding: 10px 10px;
    font-size: 12px;
}
.event_table_title h5 a {
    font-size: 14px;
    line-height: 18px;
}
.event_table_address p {
    font-size: 13px;
}
.event_details_section {
    padding: 40px 0;
}
.hero_section {
    height: 70vh;
}
}
@media (max-width: 768px) {
    .footer_text2 {
        text-align: center;
    }

    .footer_social {
        justify-content: center !important;
    }

    .hero_section {
        height: 50vh;
    }

    .event_sidebar {
        margin-top: 40px;
        position: static;
    }

    .reserve_card {
        flex-direction: column;
    }

    .section_title_blue,
    .location_info h3,
    .event_overview h2,
    .event_title,
    .section_title,
    .first_section_content h1 {
        font-size: 25px;
        line-height: 30px;
    }

    .cards .card_text_price,
    .card_title {
        font-size: 18px !important;
    }

    .event_card {
        padding: 15px;
    }
    .first_section_content {
        height: 320px;

    }
    .event_table_title img {
        width: 60px;
        height: 50px;
        object-fit: cover;
    }
    .event_table_title {
        padding: 10px;
    }
    .event_table_lists {
        grid-template-columns: 42% 36% 17%;
    }
    .event_table_btn {
        text-align: start;
    }
    .hero_img_eventlist {
        width: 100%;
        height: 170px;
        object-fit: cover;
    }
    .nav_link_custom {
        margin-left: 72%;
    }
}

@media (max-width: 600px) {
       .hero_section {
        height: 29vh;
    }
    .logo {
        width: 165px;
    }
    .event_details_section {
        padding: 10px 0;
    }
    .section_title_blue {
        margin-bottom: 30px;
    }
    .section_title_blue, .location_info h3, .event_overview h2, .event_title, .section_title, .first_section_content h1 {
        font-size: 20px;
        line-height: 25px;
    }
    .first_section_content {
        height: 280px;
    }
    .second_section_bg {
        background-color: #006BD9;
        padding: 30px 20px;
    }
    .owl-nav {
        top: -60px;
    }
    .first_section_content_date a {
        font-size: 15px;
        padding: 5px 18px;
    }
    .footer_bg {
        background-color: #F8F0E4;
        padding: 30px 20px 10px;
    }
    .footer_content{
        margin-bottom: 25px;
    }
    .footer_text2 {
        margin-top: 20px;
    }
    input{
        width: 100%;
        padding: 0px 10px;
    }
    .nav_link_custom {
        margin-left: 0%;
    }
    ::placeholder{
        margin-left: 50px;
    }
    .event_table_lists {
        grid-template-columns: auto;
        padding: 15px 0px 25px;
    }
    .event_table_address {
        padding: 5px 10px;
        border-right: none;
    }
    .event_table_btn {
        text-align: center;
    }
    .event_banner_text {
        font-size: 24px;
    }

}

/* Frontend Global Search result design */
.search-dropdown{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    z-index:9999;
    background:#fff;
    margin-top:10px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    max-height:420px;
    overflow-y:auto;
}

.search-item{
    display:flex;
    gap:12px;
    padding:10px;
    align-items:center;
    text-decoration:none;
    border-bottom:1px solid #f1f1f1;
    transition:.2s;
}

.search-item:hover{
    background:#f7f7f7;
}

.search-item img{
    width:70px;
    height:55px;
    object-fit:cover;
    border-radius:8px;
}

.search-item-title{
    font-weight:600;
    color:#222;
    line-height:1.3;
}

.search-item-date{
    font-size:13px;
    color:#777;
}

.search-content{
    flex:1;
}

.search-btn{
    font-size:13px;
    font-weight:600;
    color:#3461ff;
    white-space:nowrap;
}

.search_box{
    position: relative;
}

.input-loader{
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    border: 2px solid #ddd;
    border-top: 2px solid #333;
    border-radius: 50%;
    animation: spin .8s linear infinite;
    pointer-events: none;
}

@keyframes spin{
    from{ transform: translateY(-50%) rotate(0deg); }
    to{ transform: translateY(-50%) rotate(360deg); }
}