
/*----- IMPORTS -----*/

	/* -----CUSTOM FONT STYLES ----- */
	/* @import url("https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@400&family=Ubuntu&display=swap") */
	/* --x--CUSTOM FONT STYLES --x-- */

	/* ----- SYMBOLS / OTHER FONTS ----- */

	/* --x-- SYMBOLS / OTHER FONTS --x-- */
   
	/* ----- CUSTOM COMPONENT STYLES  ----- */
	/* GDT_avatars.css — disabled, file does not exist */
	/* --x-- CUSTOM COMPONENT STYLES  --x-- */

    /* ----- UTILITY STYLES ----- */
    @import url(./Functional/Layout.css);
    @import url(./Functional/Position.css);

    @import url(./Functional/Size.css);
    @import url(./Functional/Spacing.css);
   
    @import url(./Functional/Typography.css);

    @import url(./Functional/Backgrounds.css);
    @import url(./Functional/Borders.css);
    @import url(./Functional/Colours.css);

    @import url(./Functional/Effects.css);

    
    /* --x-- UTILITY STYLES --x-- */


/*--x-- IMPORTS --x--*/
    
/* ----- Variables ----- */
:root   {
    /* 01 Theme Colors */
    --white:rgb(240, 240, 240);
    --grey:rgb(170, 170, 170);
    --darkGrey:rgb(80, 80, 80);
    --dark: rgb(10, 10, 10);
    
    --red:red;
    --geolo: rgb(27, 27, 27); 
    --gold: gold;
    --primary: var(--red);
    --secondry:var(--blue);
    
    --bgColour:var(--geolo);
    --fontsColor:var(--white);

    /* 02 Theme Gradients */
    /* linear-gradient */
    --linear-gradient-1: linear-gradient(90deg, rgb(0, 0, 0), rgb(255, 255, 255));
    --linear-gradient-2: linear-gradient(45deg, rgb(240, 180, 14), rgb(207, 30, 30));

    /* radial-gradient */
    --radial-gradient-1: radial-gradient(circle, rgb(255,255,255) 20%, var(--dark) 60%);
    --radial-gradient-2: radial-gradient(circle, rgb(230, 44, 44) 20%, var(--darkGrey) 60%);
    
    /* 03 Theme Fonts-Family */
    --headingFonts: arial;
    --bodyFonts: Tahoma;

    /* 04 Theme Fonts-Sizes */
    --verySmallFontSize:0.25rem;
    --smallFontSize:0.5rem;
    --baseFontSize: 1rem;
    --largeFontSize:1.5rem;
    --xlargeFontSize: 2rem;
    --xxlargeFontSize:2.5rem;
    --heading-1:var(--xxlargeFontSize);
    --heading-2:var(--xlargeFontSize);
    --heading-3:var(--largeFontSize);
    --heading-4:var(--xlargeFontSize);
    
    
}
/* --x-- Variables --x-- */

/* --xxxxxxxxxx-- DOCUMENT STYLES --xxxxxxxxxx--*/
/* ----- CUSTOM LAYOUT STYLES  ----- */

/*----- Main Headear Styles -----*/

    
/*.mainNav__Logo{
     background: 
    rgb(41, 41, 41) 
    no-repeat center right;
    background-size: cover;
    text-indent: -90rem; 
}*/

/*--x-- Main Headear Styles --x--*/

/* --- Popular Cuisines Carousel Styles --- */
.popular-cuisines-carousel-wrapper {
    width: 100%;
    margin-bottom: 1.5rem;
}
.popular-cuisines-carousel {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 0.5rem 0.5rem 1.5rem 0.5rem;
    overflow: visible;
}
.carousel-arrow {
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.25rem;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: background 0.2s;
}
.carousel-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.carousel-scroll {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 0.75rem;
    flex: 1 1 auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    background: #fff;
    z-index: 10;
    min-height: 160px;
    white-space: nowrap;
    border: none;
    position: relative;
    overflow-y: visible;
}
.carousel-item {
    
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    min-width: 120px;
    max-width: 120px;
    height: 140px;
    margin: 0;
    padding: 0.5rem 0.25rem;
    transition: box-shadow 0.2s, border 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff !important;
    opacity: 1 !important;
    border: 2px solid transparent;
}
.carousel-item:hover,
.carousel-item:focus {
    box-shadow: 0 4px 16px rgba(229,57,53,0.12);
    border: 2px solid #e53935;
    outline: none;
}
.carousel-cuisine-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.carousel-cuisine-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    border: 2px solid #eee;
}
.carousel-cuisine-name {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    text-align: center;
}
.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.5rem;
    z-index: 2;
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    display: inline-block;
    cursor: pointer;
    transition: background 0.2s;
}
.carousel-dot.active {
    background: #e53935;
}
@media (max-width: 767px) {
    .carousel-item {
        min-width: 110px;
        max-width: 110px;
    }
    .carousel-cuisine-img {
        width: 48px;
        height: 48px;
    }
}
/* --- HomePage: Popular Cuisines & Menu Categories mobile layout --- */
.popular-cuisines-section,
.menu-categories-section {
    width: 100%;
    margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
    .popular-cuisines-section,
    .menu-categories-section {
        margin-bottom: 0;
    }
}

/* On mobile, stack Popular Cuisines and Menu Categories vertically */
.gc3s1 {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .gc3s1 {
        display: block;
        gap: 0;
    }
}
/* Sidebar toggle button (mobile only) */
.sidebar-toggle-btn {
    display: flex;
}
@media (min-width: 768px) {
    .sidebar-toggle-btn {
        display: none !important;
    }
}

/* Sidebar desktop visibility */
.sidebar-desktop {
    display: none;
}
@media (min-width: 768px) {
    .sidebar-desktop {
        display: block !important;
    }
}

/* Sidebar mobile overlay */
.sidebar-mobile-overlay {
    animation: sidebarOverlayFadeIn 0.2s;
}
@keyframes sidebarOverlayFadeIn {
    from { background: rgba(0,0,0,0); }
    to { background: rgba(0,0,0,0.4); }
}
.sidebar-mobile {
    animation: sidebarSlideIn 0.25s cubic-bezier(0.4,0,0.2,1);
}
@keyframes sidebarSlideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}
/* HomePage main content grid (gtc3, gc1s3, gc1s2, gc3s1) */
/* .gtc3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.gc1s3, .gc1s2, .gc3s1 {
    grid-column: 1 / -1;
} */

@media (min-width: 768px) {
    .gc1s3 {
        grid-column: 1 / 4;
    }
    .gc1s2 {
        grid-column: 1 / 3;
    }
    .gc3s1 {
        grid-column: 3 / 4;
    }
}

.o__banner
{
	background-repeat:no-repeat} ;
    

.o__banner__homepage
{
    /* background-image: none; */
    background-position: top right;
	
}


.o__banner__homepage--countdown{
    /* background-image: none; */
    background-position: center center;
}
.o__banner__homepage--core_capabilities{
    /* background-image: none; */
    background-position: center center;
}

.o__banner__homepage--operating_models{
    /* background-image: none; */
    background-position: center right;
}

.o__banner__homepage--talent_transformations{
    /* background-image: none; */
    background-position: center right;
}
.o__banner--aboutUs
{
    /* background-image: none; */
    background-position: center right;
	
}
.o__banner--services
{
    /* background-image: none; */
    background-position: center right;
	
}
.o__banner--products
{
    /* background-image: none; */
    background-position: center left;
	
}

.o__banner--projects
{
    /* background-image: none; */
    background-position: center left;
	
}
.o__banner--contactUs
{
    /* background-image: none; */
    background-position: center left;
	
}

.o__banner--careers
{
    /* background-image: none; */
    background-position: center left;
	
}

.o-banner--aboutUs{
    /* background-image: none; */
    background-position: center left;
}
/*.mainFooter .footerNav {
    background-color: var(--dark);
	display: grid;
    grid-template-columns: repeat(2, 1fr);
} 
*/

.gridLayout{
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        height: auto;
}

.gridLayout > div{
        overflow-y: visible;
}

/* Responsive homepage grid for HomePage.jsx */
.gtc4 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
}
.gc1s1, .gc2s4 {
        grid-column: 1 / -1;
}

@media (min-width: 768px) {
    .popular-carousel-item {
        grid-template-columns: 1fr 3fr;
        gap: 2rem;
    }
    .gc1s1 {
        grid-column: 1 / 2;
    }
    .gc2s4 {
        grid-column: 2 / 3;
    }
}

/* Sidebar responsive tweaks */
.home-aside-scroll {
    position: static;
    top: unset;
    max-height: none;
    overflow: visible;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
    .home-aside-scroll {
        position: sticky;
        top: 2rem;
        max-height: calc(100vh - 2rem);
        overflow-y: auto;
        margin-bottom: 0;
    }
}

/* Restaurant detail page sticky aside uses utility classes in JSX.
   Keep custom overrides out to avoid conflicts with reusable sticky pattern. */

/* Main content responsive tweaks */
.gc2s4 {
    width: 100%;
}

/* Padding and margin for mobile */
/* .container {
    padding-left: 1rem;
    padding-right: 1rem;
} */


#mainBody .aside {
    position: fixed;
    top: 100px;
    color: rgb(129, 116, 136);
}
.mainFooter .copyrights
{
	background-color: var(--gold);

}
/* --x-- Footer --x--*/    
/* ----x--------- mainFooter --------x---- */
/* --x-- CUSTOM LAYOUT STYLES  --x-- */

[data-tab-content]{
    display: none;
}
.active[data-tab-content]{
    display: block;
}

/* ----- Mobo First Media Queries -----*/       

@media(min-width:512px) { 
    body{
        background-color: rgb(255, 255, 255);
    }

    .subNav{
        grid-template-columns: repeat(2,1fr);
    }
    .gridLayout{

        grid-template-columns: 1.5fr 3fr 1fr;
        
    }
}                 
@media(min-width:768px) { 
    body{
        background-color: rgba(59, 27, 27, 0);
    }

    .m__ulist{
    display: flex;
    justify-content: space-around;
    align-items: center;
    }

    .o__banner ul{
        display: flex;
    }
}   
@media(min-width:1024px) { 
  body{
        background-color: rgb(255, 255, 255);
    }
    .subNav{
        grid-template-columns: repeat(4,1fr);
    }  
}
@media(min-width:1280px) { 
    body{
        background-color: rgb(255, 255, 255);
    }  
}

/* --x-- Mobo First Media Queries --x--*/

/* ----- Theme Consistency Bridge (Bootstrap class harmonization) ----- */
/* Keep legacy Bootstrap class usage visually aligned with app utilities. */
:root {
    --theme-brown: var(--brown0, #5c3d1e);
    --theme-brown-dark: #4a2f17;
    --theme-gold: var(--gold0, #f2c94c);
    --theme-gold-soft: var(--gold5, #fbf4d8);
    --theme-border: rgba(92, 61, 30, 0.2);
    --theme-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.container {
    max-width: min(1200px, 94vw);
}

.card {
    border: 1px solid var(--theme-border) !important;
    border-radius: 0.75rem !important;
    background: #fff !important;
    box-shadow: var(--theme-shadow);
}

.card .card-header,
.card-header {
    background: var(--theme-brown) !important;
    color: var(--theme-gold) !important;
    border-bottom: 1px solid var(--theme-border) !important;
}

.card .card-body,
.card .card-title,
.card .card-text,
.card .card-subtitle {
    color: var(--theme-brown);
}

.text-muted,
.small.text-muted,
.card .text-muted {
    color: rgba(92, 61, 30, 0.75) !important;
}

.btn,
.btn:focus,
.btn:hover,
.btn:active {
    border-radius: 0.45rem !important;
    box-shadow: none !important;
}

.btn-primary,
.btn-primary:focus,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:disabled {
    border: 1px solid var(--theme-brown) !important;
    background: var(--theme-brown) !important;
    color: var(--theme-gold) !important;
}

.btn-outline-primary,
.btn-outline-primary:focus,
.btn-outline-primary:hover,
.btn-outline-primary:active {
    border: 1px solid var(--theme-brown) !important;
    background: transparent !important;
    color: var(--theme-brown) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:active {
    background: var(--theme-gold-soft) !important;
}

.btn-outline-secondary,
.btn-outline-secondary:focus,
.btn-outline-secondary:hover,
.btn-outline-secondary:active {
    border: 1px solid var(--theme-brown) !important;
    color: var(--theme-brown) !important;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:active {
    background: var(--theme-gold-soft) !important;
}

.btn-link {
    color: var(--theme-brown) !important;
}

.form-control,
.form-select,
.form-check-input,
.input-group-text {
    border-color: var(--theme-border) !important;
    color: var(--theme-brown) !important;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    border-color: var(--theme-brown) !important;
    box-shadow: 0 0 0 0.16rem rgba(92, 61, 30, 0.2) !important;
}

.form-label,
label,
.form-text {
    color: red;
}

.badge {
    border-radius: 999px !important;
    border: 1px solid transparent;
    font-weight: 600;
}

.badge.bg-primary,
.badge.text-bg-primary,
.badge.bg-secondary,
.badge.text-bg-secondary {
    background: var(--theme-brown) !important;
    color: var(--theme-gold) !important;
}

.badge.bg-success,
.badge.text-bg-success {
    background: #2f6f45 !important;
    color: #fff !important;
}

.badge.bg-warning,
.badge.text-bg-warning {
    background: #c7962b !important;
    color: #2f2111 !important;
}

.badge.bg-danger,
.badge.text-bg-danger {
    background: #a63d3d !important;
    color: #fff !important;
}

.alert {
    border-radius: 0.5rem !important;
    border: 1px solid var(--theme-border) !important;
    color: var(--theme-brown) !important;
}

.alert-info {
    background: #f5efe2 !important;
    border-left: 4px solid var(--theme-brown) !important;
}

.alert-warning {
    background: #fbf4d8 !important;
    border-left: 4px solid #c7962b !important;
}

.alert-danger {
    background: #fdeeee !important;
    border-left: 4px solid #a63d3d !important;
}

.alert-success {
    background: #ebf6ee !important;
    border-left: 4px solid #2f6f45 !important;
}

.table {
    --bs-table-bg: transparent;
    color: var(--theme-brown);
}

.table > :not(caption) > * > * {
    border-bottom-color: var(--theme-border);
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    background: rgba(242, 201, 76, 0.08);
    color: var(--theme-brown);
}

.pagination .page-link {
    color: var(--theme-brown) !important;
    border-color: var(--theme-border) !important;
}

.pagination .page-item.active .page-link {
    background: var(--theme-brown) !important;
    border-color: var(--theme-brown) !important;
    color: var(--theme-gold) !important;
}

.dropdown-menu {
    border: 1px solid var(--theme-border) !important;
    border-radius: 0.5rem !important;
}

.dropdown-item {
    color: var(--theme-brown) !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: var(--theme-gold-soft) !important;
}

.modal-content {
    border: 1px solid var(--theme-border) !important;
    border-radius: 0.75rem !important;
}

.modal-header,
.offcanvas-header {
    border-bottom-color: var(--theme-border) !important;
}

.modal-footer,
.offcanvas-footer {
    border-top-color: var(--theme-border) !important;
}

@media (max-width: 576px) {
    .container {
        max-width: 96vw;
    }

    .card {
        border-radius: 0.6rem !important;
    }
}

/* ----- Menu Item Options Modal ----- */
.menu-item-options-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 1rem;
    background:
        radial-gradient(circle at top, rgba(242, 201, 76, 0.12), transparent 35%),
        rgba(30, 20, 10, 0.6);
}

.menu-item-options-modal {
    width: 100%;
    max-width: 36rem;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(92, 61, 30, 0.18);
    border-radius: 1rem !important;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.menu-item-options-modal__header {
    flex-shrink: 0;
    border-radius: 1rem 1rem 0 0;
    background: linear-gradient(135deg, var(--theme-brown-dark), var(--theme-brown)) !important;
}

.menu-item-options-modal__close {
    min-width: 2.25rem;
    min-height: 2.25rem;
}

.menu-item-options-modal__body {
    overflow-y: auto;
    flex-grow: 1;
    background:
        linear-gradient(180deg, rgba(251, 244, 216, 0.45), rgba(255, 255, 255, 0.96) 20%),
        #fff;
}

.menu-item-options-modal__hero {
    padding: 0.85rem;
    border: 1px solid rgba(92, 61, 30, 0.12);
    border-radius: 0.85rem;
    background: rgba(251, 244, 216, 0.48);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.menu-item-options-modal__image {
    width: 6rem;
    height: 4.5rem;
    flex-shrink: 0;
    border: 1px solid rgba(92, 61, 30, 0.1);
}

.menu-item-options-modal__hero-copy {
    flex-grow: 1;
    min-width: 0;
}

.menu-item-options-modal__description {
    line-height: 1.45;
    opacity: 0.92;
}

.menu-item-options-modal__meta {
    row-gap: 0.35rem;
}

.menu-item-options-modal__price {
    font-size: 1rem;
}

.menu-item-options-modal__restaurant {
    padding: 0.15rem 0.55rem;
    border: 1px solid rgba(92, 61, 30, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
}

.menu-item-options-modal__section {
    padding: 0.9rem;
    border: 1px solid rgba(92, 61, 30, 0.12);
    border-radius: 0.85rem;
    background: #fff;
    box-shadow: 0 10px 24px rgba(92, 61, 30, 0.05);
}

.menu-item-options-modal__section-header {
    gap: 0.5rem;
}

.menu-item-options-modal__badges {
    flex-wrap: wrap;
}

.menu-item-options-modal__choice {
    gap: 0.75rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.menu-item-options-modal__choice:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(92, 61, 30, 0.08);
}

.menu-item-options-modal__choice.is-selected {
    box-shadow: 0 10px 24px rgba(92, 61, 30, 0.18);
}

.menu-item-options-modal__choice.is-disabled {
    box-shadow: none;
}

.menu-item-options-modal__inline-stepper,
.menu-item-options-modal__quantity-stepper {
    padding: 0.25rem;
    border: 1px solid rgba(92, 61, 30, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.menu-item-options-modal__quantity-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.menu-item-options-modal__quantity-hint {
    max-width: 16rem;
    opacity: 0.78;
}

.menu-item-options-modal__stepper-btn {
    min-width: 2rem;
    min-height: 2rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.menu-item-options-modal__stepper-input {
    width: 3.25rem;
    padding: 0.35rem;
}

.menu-item-options-modal__notes {
    min-height: 5.25rem;
    resize: vertical;
    background: rgba(251, 244, 216, 0.22);
}

.menu-item-options-modal__notes-meta {
    opacity: 0.78;
}

.menu-item-options-modal__empty-state {
    border-style: solid;
    border-color: rgba(92, 61, 30, 0.14);
    border-left-width: 4px;
    background: linear-gradient(135deg, rgba(251, 244, 216, 0.95), rgba(255, 255, 255, 0.98)) !important;
}

.menu-item-options-modal__footer {
    flex-shrink: 0;
    gap: 1rem;
    border-top-color: rgba(92, 61, 30, 0.12);
    background: rgba(250, 247, 240, 0.96);
}

.menu-item-options-modal__actions {
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 576px) {
    .menu-item-options-modal-overlay {
        padding: 0.5rem;
    }

    .menu-item-options-modal {
        max-height: 96vh;
        border-radius: 0.85rem !important;
    }

    .menu-item-options-modal__header {
        border-radius: 0.85rem 0.85rem 0 0;
    }

    .menu-item-options-modal__hero {
        flex-direction: column;
    }

    .menu-item-options-modal__image {
        width: 100%;
        height: 10rem;
    }

    .menu-item-options-modal__quantity-panel,
    .menu-item-options-modal__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .menu-item-options-modal__actions > * {
        flex: 1 1 auto;
        text-align: center;
    }
}