@tailwind base;
@tailwind components;
@tailwind utilities;


html
{
    position: relative;
}


/* body:not(.meeting_result):not(.catering_result) {
    padding-top: 260px;
}


body.meeting_result,
body.catering_result {
    padding-top: 80px;
} */


.site_header
{
    background-color: #f9f9f9;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999; 
}

.site_header *
{
    transition: all .3s ease-in-out;
}

.header_scrolled .site_nav_wrap,
.header_scrolled_inner .site_nav_wrap
{
    margin-top: -180px;
}

/* .header_scrolled .site_header_row,
.header_scrolled_inner .site_header_row
{
    align-items: center !important;
} */


.site_nav li a
{
    border: solid 1px #ccc;
    display: inline-flex;
    padding: 5px 15px;
    border-radius: 25px;
    text-decoration: none;
    gap: 10px;
    color: #000;
    background-color: #fff;

}

.site_nav li a:hover
{
    border-color: #D3ECA2;
    background-color: #ecf3df;
}

.site_nav li a.site_nav_active
{
    border-color: #D3ECA2;
    background-color: #ecf3df;
    color: #95a96e;
}


.site_login_btn
{
    border-radius: 25px;
    padding: 5px 15px;
    border: solid 1px #ccc;
    font-size: 14px;
    display: inline-flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    color: #000;
    gap: 5px;
}

.site_lang_dropdown button
{
    padding: 2px 2px 0px 0px;
    border: solid 1px #ccc !important;
    border-radius: 25px;
}

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

.site_search_title
{
    width: fit-content;
    position: relative;
    font-size: 32px;
}

.site_search_title span
{
    position: relative;
    z-index: 1;
}

.site_search_title::after
{
    content: "";
    position: absolute;
    bottom: 0px;
    display: block;
    width: 100%;
    height: 15px;
    background-color: #D3ECA2;
    z-index: 0;
    left: 2px;
    z-index: 0;
}

.site_search_subtitle
{
    font-size: 18px;
}


.site_search_wrap
{
    background-color: #fff;
    border: solid 2px #e5e5e5;
    border-radius: 100px;
    padding: 5px 5px;
    align-items: center;
    justify-content: space-around;
}

.site_search_wrap small
{
    color: #a0b674;
}

input
{
    box-shadow: none !important;
}

.site_search_wrap .form-control
{
    border-top: none;
    border-left: none;
    border-bottom: none;
    border-right-color: #e5e5e5;
    border-radius: 25px;
    border-width: 0px;
    min-width: 220px;
    padding: 0px 0px 0px 14px;
}



body.overlay:before
{
    content:"";
    width:100%;
    height:100%;
    top:0px;
    left:0px;
    background-color:#0000004d;
    position:absolute;
    z-index:1

}

.site_search_wrap input::placeholder,
.site_quantity_label
{  
  opacity: .5; /* Ensures full opacity, especially in Firefox */
}

.form-check-input:checked {
    background-color: #97bd4c;
    border-color: #97bd4c;
}

.site_search_wrap input#person_from_to
{

    border-right: none !important;
    width: 60px;
    padding: 0px;
}

.site_quantity input::-webkit-outer-spin-button,
.site_quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


.site_quantity .qty-btn
{
    border-color: #e5e5e5;
    padding: 0px 0px 2px 0px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.site_quantity_wrap,
.site_inner_search,
.site_when_wrap
{
    border-right: solid 2px #e5e5e5;
}



/* Hide original select */
#product_category {
    display: none;
}

/* Custom dropdown wrapper */
.custom-select-wrapper {
    position: relative;
}

/* Trigger */
.custom-select-trigger {
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
}

/* Options */
.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 5px;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    z-index: 99;
}

.custom-option {
    padding: 12px 16px;
    cursor: pointer;
}

/* Trigger with arrow */
.custom-select-trigger {
    padding: 6px 16px;
    background: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 200px;
    
}

/* Arrow */
.custom-select-trigger::after {
    content: "▼";
    font-size: 14px;
    margin-left: 10px;
    transition: 0.3s ease;
    transform: rotate(0deg);
    color: #acadaf;
}

/* Arrow rotate when open */
.custom-select-trigger.active::after {
    transform: rotate(180deg);
}

/* Options */
.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 5px;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    z-index: 99;
}


.custom-option:hover {
    background: #f5f5f5;
}



.site_search_wrap input:focus
{
    border-color: #e5e5e5;
}

.site_search_wrap .btn {
    border-radius: 25px !important;
}


.site_search_wrap .site_search_btn {
    border-radius: 25px !important;
    width: 40px;
    height: 40px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pac-container {
    border-radius: 30px !important;
    border: 1px solid #e5e5e5 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15) !important;
    overscroll-behavior: contain;
    padding: 20px 20px;
    width: 350px !important;
    margin-top: 7px;
}


.pac-container .pac-item:first-child
{
    border-top: none;
    padding-top: 5px;
}
.pac-container .pac-item:last-child
{
    padding-bottom: 5px;
}

.pac-item {
    padding: 8px 10px !important;
    font-size: 14px !important;
    display: flex;
    align-items: center;
    border: none !important;
    margin-bottom: 5px;
    border-radius: 15px;
    cursor: pointer;
}

.pac-item:hover {
    background: #f5f5f5 !important;

}

.pac-item-query {
    font-weight: bold !important;
    color: #000 !important;
}

.pac-logo:after
{
    display: none !important;
}

.pac-container .pac-item .pac-icon
{
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="presentation" focusable="false" style="display: block; fill: none; height: 32px; width: 32px; stroke: currentcolor; stroke-width: 1.5; overflow: visible;"><path d="m16 7.75c1.1736 0 2.2361.4757 3.0052 1.2448s1.2448 1.8316 1.2448 3.0052-.4757 2.2361-1.2448 3.0052-1.8316 1.2448-3.0052 1.2448-2.2361-.4757-3.0052-1.2448-1.2448-1.8316-1.2448-3.0052.4757-2.2361 1.2448-3.0052 1.8316-1.2448 3.0052-1.2448zm0-7c3.1066 0 5.9191 1.2592 7.955 3.29505 2.0358 2.03585 3.295 4.84835 3.295 7.95495 0 6.0485-3.6327 12.1363-10.6652 18.322l-.5848.5068-.5807-.5033c-7.03662-6.1892-10.6693-12.277-10.6693-18.3255 0-3.08608 1.26863-5.90041 3.31064-7.94242 2.03806-2.03803 4.84746-3.30758 7.93936-3.30758z"></path></svg>') !important;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    width: 40px;
    margin: 0px;
    background-color: #F4F4F4;
    height: 40px;
    border-radius: 10px;
    margin-right: 10px;
}

.btn-primary
{   
    background-color: #97bd4c;
    border-color: #97bd4c;
}


.btn-primary:hover,
.btn-primary:focus
{   
    background-color: #557a09 !important;
    border-color: #557a09 !important;
}


.btn-outline-primary
{
    color: #557a09 !important;
    border-color: #557a09 !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus
{
    color: #fff !important;
    background-color: #557a09 !important;
}

.site_search_btn
{
    display: inline-flex;
    align-items: center;
    gap: 5px;    
}




.site_card_box_img_wrap
{
    position: relative;
    margin-bottom: 10px;
}




.site_card_box_img
{
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.site_card_box_like
{
    position: absolute;
    top: 20px;
    right: 20px;
}

.site_card_box_rating
{
    display: flex;
    align-items: center;
    gap: 5px;
        font-size: 12px;
}

.site_rating_total
{
    color:#f39c12;
}

.site_rating_count
{
    color: #ccc;
}

.site_card_box_tags
{
    margin-bottom: 10px;
}


.site_swiper_btn_wrap
{

}

.site_swiper_btn_wrap {
    display: flex;
    justify-content: end;
    gap: 10px;
}

.site_swiper_btn
{
    background-color: #EBEBEB;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease-in-out;
}

.site_swiper_btn:hover
{
opacity: .9;
}

.site_swiper_btn.swiper-button-disabled
{
    opacity: .5;
}

.pagination
{
    gap: 10px;
}
.pagination .page-link
{
width: 35px;
    height: 35px;
    display: flex;
    align-items: center;    
    
    border-radius: 100%  !important;
}

.page-item:first-child .page-link
{
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" aria-hidden="true" role="presentation" focusable="false" style="display: block; fill: none; height: 12px; width: 12px; stroke: currentcolor; stroke-width: 4; overflow: visible;"><path fill="none" d="M20 28 8.7 16.7a1 1 0 0 1 0-1.4L20 4"></path></svg>');
        background-size: 15px;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 0px;
}

.page-item:last-child .page-link
{
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" aria-hidden="true" role="presentation" focusable="false" style="display: block; fill: none; height: 12px; width: 12px; stroke: currentcolor; stroke-width: 4; overflow: visible;"><path fill="none" d="m12 4 11.3 11.3a1 1 0 0 1 0 1.4L12 28"></path></svg>');
        background-size: 15px;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 0px;
}

.page-link
{
    color: #000;
    box-shadow: none !important;
}

.active>.page-link, 
.page-link.active
{
    color: #fff;
    background-color: #000;
    border-color: #000;

}

.page-link:hover,
.page-link:focus
{
    color: #557a09
}

.site_meeting_items_row
{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.site_col
{
    width: 15rem;
}

.site_gallery_style_1 img
{
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}


.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 210px 210px;
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Big image left side */
.gallery-item.big {
    grid-row: span 2;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item.big {
        grid-row: span 1;
        height: 300px;
    }

    .gallery-item {
        height: 200px;
    }
}

.site_offer_list {
    display: flex;
    flex-flow: column;
    row-gap: 15px;
}

.site_offer_list li 
{
    display: flex;
    align-items: center;
    gap:10px
}

.site_rating_sidebar
{
    background-color: #FBF7EC;
    padding: 30px;
    border-radius: 10px;
}

.site_rating_number
{
    display: flex;
    justify-content: center;
}

.site_rating_number::before
{
    content: "";
    background-image: url(../img/icon-left.png);
    background-size: contain;
    width: 54px;
    height: 96px;
    display: inline-block;
}
.site_rating_number::after
{
    content: "";
    background-image: url(../img/icon-right.png);
    background-size: contain;
    width: 54px;
    height: 96px;
    display: inline-block;
}


.site_review-search {
    border: 1px solid #d0d0d0;
    border-radius: 40px;
    padding: 0.45rem 1.2rem;
    font-size: 0.95rem;
    color: #363636;
    background-color: white;
    transition: 0.1s;
    max-width: 100%;
}

.site_review-search input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 0.9rem;
}

.site_review-search svg {
    color: #a0a0a0;
}


.site_avatar-placeholder {
    width: 44px;
    height: 44px;
    background-color: #eaeaea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: #4b4b4b;
    flex-shrink: 0;
}

.site_overall_rating_info_list
{
    margin: 0px;
}

.site_overall_rating_info_list li 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 1px #e9ecef;
    padding: 15px 0;
}

.site_overall_rating_info_list li:last-child
{
    border-bottom: none;
    padding-bottom: 0px;
}

.site_oril
{
    display: flex;
    align-items: center;
        gap: 15px;
}


.site_reserve_card{
    width:350px;
    background:#fff;
    padding:20px;
    border-radius:16px;
    box-shadow:0 0px 15px rgba(0,0,0,0.08);
    margin:50px auto;
}

.site_reserve_price{
    font-size:22px;
    font-weight:bold;
}

.site_reserve_old_price{
    text-decoration:line-through;
    color:#888;
    margin-right:6px;
}

.site_reserve_sub{
    font-size:14px;
    color:#666;
}

.site_reserve_box{
    border:1px solid #ccc;
    border-radius:12px;
    margin-top:15px;
    overflow:hidden;
}

.site_reserve_row{
    display:flex;
    flex-wrap: wrap;
}

.site_reserve_col{
    width: 50%;
    padding:12px;
    border-right:1px solid #ccc;
    cursor:pointer;
}

.site_reserve_col:last-child{
    border-right:none;
}

/* .site_reserve_col .flatpickr-input
{
    width: 100%;
    border: none;
    outline: none;
} */

.site_reserve_label{
    font-size:11px;
    font-weight:bold;
    color:#666;
    display:block;
}

.site_reserve_value{
    font-size:14px;
    margin-top:3px;
    position: relative;
}
 
.site_reserve_value::after
{
    position: absolute;
    top: 50%;
    right: 0;
}

.site_reserve_guest{
    padding:12px;
    border-top:1px solid #ccc;
}

.site_reserve_cancel{
    background:#f1f1f1;
    padding:10px;
    text-align:center;
    border-radius:10px;
    margin-top:15px;
    font-size:13px;
    color:#555;
}

.site_reserve_btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:30px;
    background:linear-gradient(90deg,#ff385c,#d70466);
    color:#fff;
    font-size:16px;
    font-weight:bold;
    margin-top:15px;
    cursor:pointer;
}

.site_reserve_note{
    text-align:center;
    font-size:13px;
    color:#666;
    margin-top:10px;
}

.site_reserve_guest .dropdown-menu
{
    min-width: 285px;
}

 /* flatpickr embedded modern vibe */
.flatpickr-calendar {
    border-radius: 24px !important;
    box-shadow: 0 25px 40px -12px rgba(0,0,0,0.25) !important;
    border: 1px solid rgba(255,255,255,0.5) !important;
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.95) !important;
    margin-top: 6px;
}

.flatpickr-day.selected {
    background: #0d6efd !important;
    border-color: #0d6efd !important;
    font-weight: 500;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover {
    background: #eef3fe !important;
}


.flatpickr-time .numInputWrapper span
{
    width: 35px;
    opacity: 1  ;
}

.flatpickr-time .numInputWrapper span.arrowUp:after,
.flatpickr-time .numInputWrapper span.arrowDown:after
{
    transform: translateX(-50%);
    left: 50%;
}



.site_quantity_dropdown {
    border-radius: 30px;
    border: 1px solid #e5e5e5 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    overscroll-behavior: contain;
    padding: 20px 20px;
    width: 350px;
    margin-top: 4px !important;
}

.site_projector_dropdown {
    border-radius: 30px;
    border: 1px solid #e5e5e5 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    overscroll-behavior: contain;
    padding: 20px 20px;
    margin-top: 4px !important;
}

.site_when_dropdown {
    border-radius: 30px;
    border: 1px solid #e5e5e5 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    overscroll-behavior: contain;
    padding: 20px 20px;
    margin-top: 4px !important;
}

.site_when_dropdown .flatpickr-calendar
{
    margin-top: 0px !important;
    border: none !important;
    box-shadow: none !important;
}

.site_when_wrap
{
    min-width: 290px;

}

.site_quantity_wrap
{
    width: 100px;
}

.site_search_wrap .dropdown-menu
{
    transition: none;
}

.site_summary_box
{
border: solid 1px #ccc;
    padding: 30px;
    border-radius: 20px;
}

.text-primary
{
    color: #97bd4c !important;
}

.site_sb_price
{
    color: #A40303;
}

.site_summary_content
{
    font-size: 18px;
}

.site_bf,
.site_dpst
{
    line-height: normal;
}

.site_when_dropdown .flatpickr-calendar.hasTime .flatpickr-time
{
    border: none;
}
.site_when_dropdown .flatpickr-time .numInputWrapper,
.site_when_dropdown .flatpickr-time .flatpickr-time-separator,
.site_when_dropdown .flatpickr-time .flatpickr-am-pm
{
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}


.site_projector_radio .btn-check:checked+.btn
{
    background-color: #000;
    color: #fff;
}

.site_projector_radio .btn,
.site_projector_radio .btn:focus
{
    padding: 5px 20px;
    border: 1px solid #ddd !important;
}