/* Reset some basic elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none !important;
}

a {
    color: var(--bs-blue);
}

body {
    background: #fff;
}

section {
    position: relative;
}

section[id],
div[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden !important;
    flex-direction: column;
}

.main_content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

:root {
    --primary: #C89E6D;
    /* Luxury Gold */
    --secondary: #000000;
    --cream: #F8F5F0;
    --blush: #E8CFCF;
}

.text-primary {
    color: var(--primary) !important;
}

.custom-tooltip {
    --bs-tooltip-bg: #ffffff;
    --bs-tooltip-color: #000000;
}

.btn {
    padding: 12px 20px;
    font-size: 15px;
}

.form-label {
    color: #212121;
    font-size: 14px;
    font-weight: 400;
}

.btn-primary {
    background: var(--primary);
    border: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(200, 158, 109, 0.3);
}

.btn-blush {
    background: var(--blush) !important;
    border: none;
    color:#000 !important;
    transition: 0.3s;
}

.btn-blush:hover {
    background: var(--blush);
    transform: translateY(-2px);
    box-shadow:0 10px 20px rgb(232 207 207 / 54%);
}

.header_section .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    padding: 0px 12px !important;
}

.header_section .nav-link:hover {
    color: var(--primary);
}

.header_section {
    background: var(--cream);
}

/* ========================= Banner ============================== */

.banner_sec {
    padding: 150px 0px;
}

/* Section spacing */
.facilities_section {
    background: linear-gradient(180deg, #f8f9fa, #ffffff);
}

/* Tile card */
.facility-tile {
    background: var(--cream);
    border-radius: 16px;
    padding: 22px 12px;
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Hover effect (luxury float) */
.facility-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
    border-color: rgba(200, 158, 109, 0.3);
}

/* Name */
.facility-name {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.2px;
}

/* Title polish */
.about_title {
    font-size: 30px;
    letter-spacing: -0.5px;
}

/* Title */
.about_title {
    letter-spacing: -0.5px;
    font-weight: 700;
}

.footer-area {
    background: #000000;
}

/* Opening box */
.opening-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Links */
.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Social icons */
.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Better text hierarchy */
.footer-area h4,
.footer-area h6 {
    letter-spacing: 0.3px;
}

.heading_title {
    font-size: 28px;
}

/* SECTION BACKGROUND FEEL */
.menus-section {
    background: #fafafa;
}

/* MENU BUTTONS */
.menu-btn {
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e7e7e7;
    font-weight: 500;
    font-size: 14px;
    color: #333;
    transition: .25s ease;
}

.menu-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* INFO CARDS */
.info-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

/* INFO BUTTONS */
.info-btn {
    padding: 8px 14px;
    border-radius: 8px;
    background: #f4f4f4;
    font-size: 13px;
    color: #333;
    transition: .2s;
}

.info-btn:hover {
    background: #000;
    color: #fff;
}

.info-btn.success {
    background: var(--primary);
    color: #fff;
}

/* FOOD TIMES */
.food-times {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.time-card {
    flex: 1 1 100px;
    background: #fff;
    border-radius: 14px;
    padding: 20px 5px;
    transition: .25s;
    border: 1px solid #DDD;
}

.time-card:hover {
    transform: translateY(-3px);
}

.time-card h6 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 5px;
}

.time-card div {
    font-weight: 600;
    font-size: 14px;
}

.time-card.today {
    background: var(--blush);
    color: #000000;
}

.time-card.today h6 {
    color: #000000;
}

.booking-offcanvas {
    max-width: 520px !important;
    width: 100% !important;
}


.booking-field label {
    font-weight: 600;
    font-size: 14px;
}

.booking-input {
    border-radius: 10px;
    padding: 10px;
}


.booking-time-item {
    border: 1px solid #e5e5e5;
    padding: 10px 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.booking-time-item:hover {
    border-color: #0d6efd;
    background: #f8f9ff;
}

.booking-time-item input {
    margin: 0;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
    box-shadow: none !important;
    border-radius: 5px !important;
}


span.select2.select2-container.select2-container--bootstrap-5.select2-container--below {
    width: 100% !important;
}

.select2-container--bootstrap-5.select2-container .select2-selection,
.select2-container--bootstrap-5.select2-container .select2-selection {
    box-shadow: none !important;
    border-radius: 6px !important;
    height: 45px !important;
    padding: 10px 10px;
}

.offcanvas-body {
    scrollbar-width: thin;
}

.booking-time-list {
    /* height: 300px; */
    overflow: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
}

select+.select2-container--bootstrap-5 {
    z-index: 1;
    width: 100% !important;
}

.select2-container {
    z-index: 9999;
}

.form-control {
    padding: 10px;
}

.booking-offcanvas {
    height: 100vh;
}

.booking-offcanvas .offcanvas-body {
    overflow-y: auto;
}

.user-sidebar {
    background: #c89e6d0f;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #eee;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.sidebar-menu .nav-link:hover {
    background: #c89e6d14;
    color: #111;
}

.sidebar-menu svg {
    stroke: var(--primary);
}

.user-info {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 25px;
}

.user-info img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #f5f5f5;
    margin-bottom: 15px;
}

.user-info h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #111;
}

.user-info p {
    font-size: 13px;
    color: #777;
    margin: 0;
}

.sidebar-menu .nav-link {
    border-radius: 14px;
    padding: 12px 15px;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;
}

.sidebar-menu .nav-link i {
    width: 20px;
    height: 20px;
}

.sidebar-menu .nav-link:hover {
    background: #c89e6d14;
    color: #111;
}

.sidebar-menu .nav-link.active {
    background: var(--primary) !important;
    color: #fff;
}

.sidebar-menu .nav-link.active svg {
    stroke: #fff;
}

.logout-link:hover {
    background: #fff1f1 !important;
    color: #dc3545 !important;
}

@media(max-width:991px) {
    .user-sidebar {
        margin-bottom: 25px;
    }
}

div#dataTables_filter input {
    font-size: 12px;
    padding: 8px 10px;
    box-shadow: none !important;
    outline: none !important;
}

select.form-select.form-select-sm {
    box-shadow: none !important;
}

div#dataTables_length {
    font-size: 14px;
}

div.dataTables_wrapper div.dataTables_length select {
    font-size: 13px;
}

div.dataTables_wrapper div.dataTables_filter label {
    font-size: 14px;
}

div#dataTables_info {
    font-size: 14px;
}

#dataTables_paginate .page-item .page-link {
    font-size: 14px;
}

#dataTables_paginate .active>.page-link,
#dataTables_paginate .page-link.active {
    background: var(--primary);
    border-color: var(--primary);
}

.user_card {
    background: #ffffff;
    border-radius: 20px;
    padding: 15px;
    border: 1px solid #eee;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.user_card .card-header {
    border: 1px solid #ededed;
    margin-bottom: 20px;
    background: #ffffff;
    padding: 16px;
    border-radius: 5px;
    border-left: 4px solid #c59967;
}

@media screen and (max-width:575px) {
    .user_card {
        padding: 14px;
    }
}

.event_img {
    text-align: center !important;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    /* background-color: #28488917; */
    height: 320px;
    overflow: hidden;
}

.event_img img {
    width: auto !important;
    max-height: 320px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.bg-primary {
    background: var(--primary) !important;
}