/* ============================================
   QAVALLI - Custom Styles (Bootstrap 5 Override)
   ============================================ */

/* ---------- Font Face ---------- */
@font-face {
    font-family: 'Kalieb Luxury Demo';
    src: url('../font/KaliebLuxuryDemo-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* ---------- Root Variables ---------- */
:root {
    --q-primary: #7d0613;
    --q-primary-dark: #5a0410;
    --q-primary-rgb: 125, 6, 19;
    --q-red: #ca0610;
    --q-dark: #1a1a1a;
    --q-body: #555;
    --q-heading: #333;
    --q-light-bg: #fcfcfc;
    --q-font-display: 'Kalieb Luxury Demo', 'Cormorant Garamond', Georgia, serif;
    --q-font-body: 'Raleway', 'Source Sans Pro', Arial, sans-serif;
}

/* ---------- Global ---------- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--q-font-body);
    color: var(--q-body);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--q-font-display);
    color: var(--q-heading);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    transition: all 0.3s ease;
}

/* ---------- Navbar ---------- */
.navbar-qavalli {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-qavalli.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-qavalli .navbar-brand img {
    height: 50px;
    transition: height 0.3s ease;
}

.navbar-qavalli.scrolled .navbar-brand img {
    height: 40px;
}

.navbar-qavalli .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: var(--q-font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 18px !important;
    transition: color 0.3s ease;
}

.navbar-qavalli .nav-link:hover,
.navbar-qavalli .nav-link.active {
    color: #ffffff !important;
}

.navbar-qavalli .nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--q-primary);
    transition: width 0.3s ease;
    margin-top: 4px;
}

.navbar-qavalli .nav-link:hover::after,
.navbar-qavalli .nav-link.active::after {
    width: 100%;
}

.navbar-qavalli .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 10px;
}

.navbar-qavalli .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff !important;
    font-size: 14px;
    margin-left: 6px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
}

.navbar-social a:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.navbar-social a.fb {
    background-color: #3b5998;
}

.navbar-social a.ig {
    background-color: #E1306C;
}

.navbar-social a.yt {
    background-color: #FF0000;
}

/* ---------- Sections ---------- */
.section-padding {
    padding: 120px 0;
}

.section-padding-sm {
    padding: 80px 0;
}

.section-title {
    font-family: var(--q-font-display);
    color: var(--q-primary);
    font-size: 42px;
    margin-bottom: 20px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--q-primary);
    margin-bottom: 30px;
}

.section-divider-center {
    margin-left: auto;
    margin-right: auto;
}

/* ---------- About Section ---------- */
.about-text p {
    line-height: 1.8;
    font-size: 16px;
    color: var(--q-body);
    margin-bottom: 15px;
}

.about-img {
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* ---------- Buttons ---------- */
.btn-qavalli {
    background-color: var(--q-primary);
    color: #ffffff;
    padding: 14px 36px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    border: 2px solid var(--q-primary);
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-qavalli:hover {
    background-color: var(--q-primary-dark);
    border-color: var(--q-primary-dark);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(var(--q-primary-rgb), 0.3);
    transform: translateY(-2px);
}

.btn-qavalli-dark {
    background-color: #000;
    color: #fff;
    padding: 14px 36px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    border: 2px solid #000;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-qavalli-dark:hover {
    background-color: #333;
    border-color: #333;
    color: #fff;
}

/* ---------- Menu Section ---------- */
.menu-section {
    background-color: var(--q-light-bg);
}

.menu-text h2 {
    color: var(--q-primary);
}

.menu-text p {
    line-height: 1.8;
    color: var(--q-body);
    font-size: 16px;
}

.menu-carousel .carousel-inner {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.menu-carousel .carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.menu-nav {
    margin-top: 50px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.menu-nav a {
    display: inline-block;
    padding: 10px 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.menu-nav a:hover {
    opacity: 1;
}

/* ---------- Gallery Section ---------- */
.gallery-section {
    background-color: var(--q-dark);
}

.gallery-section .section-title {
    color: #ffffff;
    font-size: 48px;
}

.gallery-section .section-subtitle {
    color: #aaaaaa;
    font-size: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--q-primary-rgb), 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(var(--q-primary-rgb), 0.6);
}

.gallery-overlay i {
    color: #fff;
    font-size: 28px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-overlay i {
    opacity: 1;
    transform: scale(1);
}

/* ---------- Location Section ---------- */
.location-section {
    background-color: var(--q-light-bg);
}

.location-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.location-img-side {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.location-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 50px;
}

.location-img-overlay h3 {
    color: #fff;
    font-family: var(--q-font-display);
    font-size: 42px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.location-content {
    padding: 60px 50px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.location-label {
    color: var(--q-primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: bold;
    margin-bottom: 5px;
}

.location-heading {
    font-family: var(--q-font-display);
    font-size: 46px;
    color: var(--q-heading);
    line-height: 1.2;
    margin-bottom: 25px;
}

.location-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.location-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f9f0f1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-info-icon i {
    color: var(--q-primary);
    font-size: 22px;
}

.location-info-item strong {
    color: #222;
    font-size: 17px;
    font-weight: 600;
}

.location-info-item p {
    color: #777;
    font-size: 15px;
    line-height: 1.6;
    margin: 5px 0 0;
}

/* ---------- Footer ---------- */
.footer-qavalli {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #ccc;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    padding: 60px 0 30px;
}

.footer-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 25px;
}

.footer-info {
    font-size: 18px;
    color: #888;
    margin-bottom: 8px;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    font-size: 14px;
    color: #666;
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--q-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--q-primary-dark);
    color: #fff;
    transform: translateY(-3px);
}

/* ---------- Revolution Slider Overrides ---------- */
.rev_slider_wrapper {
    /* ensure slider respects navbar */
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 80px 0;
    }

    .section-title {
        font-size: 34px;
    }

    .location-img-side {
        min-height: 350px;
    }

    .location-content {
        padding: 40px 30px;
    }

    .location-heading {
        font-size: 34px;
    }

    .menu-carousel .carousel-item img {
        height: 350px;
    }

    .navbar-qavalli .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        padding: 15px 20px;
        border-radius: 0 0 8px 8px;
        margin-top: 10px;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .gallery-section .section-title {
        font-size: 36px;
    }

    .menu-carousel .carousel-item img {
        height: 280px;
    }

    .location-img-overlay h3 {
        font-size: 28px;
    }
}

/* ---------- Reservation Page Custom Styles ---------- */
.reservation-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.reservation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.reservation-hero .container {
    position: relative;
    z-index: 2;
}

.reservation-hero h1 {
    font-size: 56px;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: var(--q-font-display);
}

.reservation-hero p {
    font-family: var(--q-font-body);
    font-size: 16px;
    color: #cccccc;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.reservation-section {
    background-color: var(--q-light-bg);
    padding: 80px 0;
}

.reservation-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    padding: 50px;
    height: 100%;
}

.reservation-card-title {
    font-size: 28px;
    color: var(--q-primary);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    font-family: var(--q-font-display);
}

.reservation-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--q-primary);
}

/* Premium Form Styling */
.qavalli-form .form-group {
    margin-bottom: 25px;
}

.qavalli-form label {
    font-weight: 600;
    font-size: 14px;
    color: #333333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qavalli-form .form-control,
.qavalli-form .form-select {
    border-radius: 0;
    border: 1px solid #dddddd;
    padding: 14px 18px;
    font-size: 15px;
    background-color: #fafafa;
    color: #333333;
    transition: all 0.3s ease;
}

.qavalli-form .form-control:focus,
.qavalli-form .form-select:focus {
    border-color: var(--q-primary);
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(125, 6, 19, 0.08);
    outline: none;
}

.qavalli-form textarea.form-control {
    min-height: 80px;
    height: 80px;
    resize: none;
}

/* Custom time grid style */
.time-slots-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
    gap: 10px;
    margin-top: 5px;
}

.time-slot-btn {
    border: 1px solid #dddddd;
    background: #ffffff;
    color: #555555;
    padding: 10px 5px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot-btn:hover {
    border-color: var(--q-primary);
    color: var(--q-primary);
}

.time-slot-btn.active {
    background-color: var(--q-primary);
    border-color: var(--q-primary);
    color: #ffffff;
}

/* Sidebar styling */
.policy-sidebar {
    background: #1a1a1a;
    color: #cccccc;
    padding: 50px 40px;
    border-radius: 8px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.policy-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--q-primary);
}

.policy-sidebar h3 {
    color: #ffffff;
    font-size: 26px;
    margin-bottom: 25px;
    font-family: var(--q-font-display);
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.policy-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px;
}

.policy-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--q-red);
    font-size: 14px;
}

.mehman-navazi-box {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    margin-top: 30px;
}

.mehman-navazi-title {
    color: #c5a059;
    /* Gold accent */
    font-family: var(--q-font-display);
    font-size: 22px;
    margin-bottom: 12px;
}

.mehman-navazi-text {
    font-style: italic;
    font-size: 14px;
    line-height: 1.7;
    color: #999999;
}

/* Form success overlay */
.reservation-success-container {
    text-align: center;
    padding: 40px 10px;
}

.success-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(202, 6, 16, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    animation: scaleUp 0.5s ease-out forwards;
}

.success-icon-wrap i {
    color: var(--q-red);
    font-size: 36px;
}

.success-title {
    font-family: var(--q-font-display);
    font-size: 32px;
    color: var(--q-primary);
    margin-bottom: 15px;
}

.success-details {
    background-color: #fafafa;
    border: 1px solid #eeeeee;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
}

.success-details-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
    border-bottom: 1px dashed #e5e5e5;
    padding-bottom: 8px;
}

.success-details-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.success-details-row strong {
    color: #333333;
}

.success-details-row span {
    color: #666666;
}

/* Spinner Styles */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.qavalli-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(125, 6, 19, 0.1);
    border-radius: 50%;
    border-top-color: var(--q-primary);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes scaleUp {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .reservation-card {
        padding: 30px;
    }

    .reservation-hero h1 {
        font-size: 40px;
    }

    .policy-sidebar {
        margin-top: 30px;
        padding: 35px 25px;
    }
}

/* ---------- Table Selection Styles ---------- */
.table-map-legend {
    display: flex;
    gap: 15px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #555;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.legend-dot.available {
    background-color: #c5a059;
}

.legend-dot.reserved {
    background-color: #ccc;
}

.legend-dot.selected {
    background-color: var(--q-primary);
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.table-card {
    background: #ffffff;
    border: 1px solid #dddddd;
    padding: 15px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.table-card:hover:not(.reserved):not(.disabled-capacity) {
    border-color: #c5a059;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.15);
}

.table-card-icon {
    font-size: 20px;
    color: #c5a059;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.table-card .table-name {
    display: block;
    font-family: var(--q-font-body);
    font-weight: 700;
    font-size: 14px;
    color: #222;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.table-card .table-details {
    display: block;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Available State */
.table-card.available {
    border-color: #e2d2b5;
    background-color: #fffdf9;
}

/* Reserved State */
.table-card.reserved {
    background-color: #f5f5f5;
    border-color: #e0e0e0;
    color: #999;
    cursor: not-allowed;
    opacity: 0.65;
}

.table-card.reserved .table-card-icon {
    color: #aaa;
}

.table-card.reserved .table-name {
    color: #888;
}

.table-card.reserved::after {
    content: 'Reserved';
    position: absolute;
    bottom: 5px;
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--q-red);
    letter-spacing: 0.5px;
}

.table-card.reserved .table-details {
    margin-bottom: 8px;
}

/* Selected State */
.table-card.selected {
    background-color: var(--q-primary);
    border-color: var(--q-primary);
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(125, 6, 19, 0.25);
    transform: translateY(-2px);
}

.table-card.selected .table-name,
.table-card.selected .table-details,
.table-card.selected .table-card-icon {
    color: #ffffff !important;
}

.table-card.selected::before {
    content: '\f00c';
    font-family: FontAwesome;
    position: absolute;
    top: 5px;
    right: 8px;
    font-size: 11px;
    color: #ffffff;
}

/* Disabled State (Capacity mismatch) */
.table-card.disabled-capacity {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
    background-color: #fafafa;
    border-style: dashed;
}

/* Styling highlight for matching Area Preference */
.table-card.highlight-area:not(.reserved):not(.selected):not(.disabled-capacity) {
    border-color: var(--q-red);
    box-shadow: 0 0 8px rgba(202, 6, 16, 0.12);
    animation: pulseBorder 2s infinite;
}

@keyframes pulseBorder {
    0% {
        border-color: rgba(202, 6, 16, 0.4);
    }

    50% {
        border-color: rgba(202, 6, 16, 1);
    }

    100% {
        border-color: rgba(202, 6, 16, 0.4);
    }
}

/* Dynamic step visibility styles */
.booking-step-hidden {
    display: none !important;
    opacity: 0;
}

.booking-step-visible {
    display: block !important;
    animation: fadeInStep 0.5s forwards ease-out;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Footer Social Icons ---------- */
.footer-social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Hide slider navigation dots */
.tp-bullets {
    display: none !important;
}

/* ---- Centered-logo split navigation ---- */
/* Hide the original left-side logo on desktop since it's now inside the nav */
@media (min-width: 768px) {
    #header-logo-mobile {
        display: none !important;
    }
}

/* Make the nav a full-width flex row */
nav#navigation.qavalli-split-nav {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100% !important;
    float: none !important;
    padding: 0 20px;
}

/* Left and right menu groups each take equal space */
nav#navigation.qavalli-split-nav .qavalli-nav-left,
nav#navigation.qavalli-split-nav .qavalli-nav-right {
    flex: 1;
}

/* Left items align right so they sit close to the logo */
nav#navigation.qavalli-split-nav .qavalli-nav-left ul {
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
    float: none !important;
}

/* Right items align left so they sit close to the logo */
nav#navigation.qavalli-split-nav .qavalli-nav-right ul {
    display: flex;
    justify-content: flex-start;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
    float: none !important;
}

/* Center logo column */
nav#navigation.qavalli-split-nav .qavalli-nav-logo {
    flex: 0 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
}

nav#navigation.qavalli-split-nav .qavalli-nav-logo img {
    display: block;
    max-height: 70px;
    width: auto;
    transition: opacity 0.3s;
}

nav#navigation.qavalli-split-nav .qavalli-nav-logo img:hover {
    opacity: 0.85;
}

/* Fix nav item text wrapping - keep all items on single line */
nav#navigation.qavalli-split-nav .qavalli-nav-left ul li,
nav#navigation.qavalli-split-nav .qavalli-nav-right ul li {
    white-space: nowrap;
    list-style: none;
}

nav#navigation.qavalli-split-nav .qavalli-nav-left ul li a,
nav#navigation.qavalli-split-nav .qavalli-nav-right ul li a {
    white-space: nowrap;
    font-size: 16px !important;
    letter-spacing: 0.5px;
    padding: 6px 8px !important;
    display: inline-block;
}

/* Keep BOOK A TABLE button single-line */
nav#navigation.qavalli-split-nav .menu-item-btn a {
    white-space: nowrap !important;
    font-size: 11px !important;
    padding: 8px 14px !important;
    line-height: 1.2 !important;
}

.footer-social-icons a:hover {
    background: var(--q-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(125, 6, 19, 0.3);
}