/* Premium palette and typography */
:root {
    --night: #0b0b0d;
    --deep: #111216;
    --ink: #d1d5db;
    --muted: #9aa0a6;
    --gold: #d4af37;
    --gold-700: #b08a1c;
    --white: #ffffff;
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --secondary-color: #8b4513;
    --dark-color: #2c1810;
    --light-gold: #f5e6a3;
    --white-color: #ffffff;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #333333;
    --text-muted: #666666;
    --gold-primary: #D4AF37;
    --gold-secondary: #C5A253;
    --gold-dark: #B8941F;
    --gold-light: #F4E4BC;
    --black-bg: #0B0B0B;
    --black-secondary: #1A1A1A;
    --black-tertiary: #2A2A2A;
    --white-text: #FFFFFF;
    --gray-text: #B8B8B8;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
html,
body {
    background: var(--night);
    color: var(--ink);
    font-family: 'Fauna One', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    font-size: 14px;
}
.btn{
    font-family: 'Fauna One', sans-serif;
    font-size: 14px;
    padding: 12px 25px;
}
.title,
.section-title,
.brand-text,
.brand-mark {
    font-family: "Marcellus", "Cinzel", serif;
    letter-spacing: 0.04em;
}

.bg-night {
    background: var(--night);
}
.bg-deep {
    background: var(--deep);
}

.text-gold {
    color: var(--gold) !important;
}
.text-secondary {
    color: var(--muted) !important;
}
.border-gold {
    border-color: var(--gold) !important;
}
.link-gold {
    color: var(--gold);
    text-decoration: none;
}
.link-gold:hover {
    color: var(--white);
}

.btn-gold {
    background: linear-gradient(180deg, var(--gold), var(--gold-700));
    color: var(--night);
    border: none;
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.3),
        0 8px 24px rgba(212, 175, 55, 0.25);
}
.btn-gold:hover {
    filter: brightness(1.02);
    transform: translateY(-1px);
    color: var(--night);
}

.backdrop-blur {
    backdrop-filter: saturate(140%) blur(8px);
    background: rgba(17, 18, 22, 0.97) !important;
}

.brand-mark {
    display: inline-flex;
    /*align-items: center;
    justify-content: center;*/
    border-radius: 50%;
    /*background: rgba(212, 175, 55, 0.15);Z*/
    color: var(--gold);
    font-weight: 700;
}
.brand-text {
    font-weight: 600;
    color: var(--white);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-color);
    font-size: 18px;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Hero */
.hero {
    min-height: 96vh;
    display: grid;
    place-items: center;
}
.hero-media {
    position: absolute;
    inset: 0;
    /*background-image: url("../images/banner.jpg");*/
    background-image: url("../images/banner2.jpg");
    background-size: cover;
    background-position: center;
    filter: grayscale(30%) contrast(110%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient( 60% 60% at 50% 40%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.75) 100% ), linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(11, 11, 13, 0.61) 100%);
}
.hero .title {
    color: var(--white);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.hero .lead {
    color: var(--primary-color);
    font-family: "El Messiri", sans-serif;
    font-size: 38px;
}
.hero-meta span {
    color: var(--muted);
}

.subtle-glow {
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.25),
        0 12px 40px rgba(0, 0, 0, 0.5);
}

/* Menu grid */
.menu-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 1rem;
    overflow: hidden;
    transition:
        transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 0.45s ease;
}
.menu-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    border-color: rgba(212, 175, 55, 0.35);
}
.menu-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    filter: saturate(105%);
}
.menu-body {
    padding: 1.25rem 1.25rem 1.5rem;
}
.menu-title {
    color: var(--gold);
    font-family: "Cinzel", serif;
    letter-spacing: 0.15em;
    font-size: 1.4rem;
}
.list-unstyled li{
    padding-bottom: 10px;
}
/* Pricing */
.pricing-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    transition:
        transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 0.45s ease;
}
.pricing-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 22px 64px rgba(0, 0, 0, 0.45);
}
.pricing-card.featured {
    border-color: var(--gold);
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.45);
}
.pricing-header {
    text-align: center;
    margin-bottom: 1rem;
}
.pricing-header .plan {
    font-family: "Marcellus", serif;
    color: var(--gold);
    letter-spacing: 0.12em;
}
.pricing-header .price {
    font-size: 2.4rem;
    color: var(--white);
    font-family: "Marcellus", serif;
}
.pricing-header .currency {
    font-size: 2.2rem;
    opacity: 0.8;
    margin-right: 0.15rem;
}
.pricing-features {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 1.25rem;
}
.pricing-features li {
    margin: 0.4rem 0;
    color: var(--ink);
}
.pricing-cta {
    margin-top: auto;
}

/* Reveal transitions */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
    filter: blur(6px);
    transition:
        opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
        filter 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform, opacity, filter;
}
.reveal-visible {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    filter: blur(0) !important;
}

/* Element-level stagger defaults */
[data-reveal] [data-stagger] {
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.reveal-visible [data-stagger] {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll behavior for anchor links */
html {
    scroll-behavior: smooth;
}
.menu-items {
    margin: 0.5rem 0 0;
    padding-left: 1.1rem;
}
.menu-items li {
    margin: 0.35rem 0;
    color: var(--ink);
}

/* Gallery */
.gallery-tile {
    padding-top: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.18);
    transition:
        transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}

/* Forms */
.form-control,
.form-select {
    background: #14161b;
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--ink);
}
.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.15);
}

/* Utilities */
.z-1 {
    z-index: 1;
}
.object-fit-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner_heading{
    font-family: 'Marcellus', sans-serif;
    color: #F6EE72;
}
.navbar {
  display: none;                /* hidden on load */
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.navbar.fixed-top {
  display: block;               /* show when fixed */
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.95); /* example background */
}
.nav-link i{
    color: var(--primary-color);    
}
.department-section.style-2 .section-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
@media (min-width: 1199px) {
    .department-section.style-2 .section-wrapper .lab-item {
        width: calc(100% / 4);
    }
}
@media(max-width: 767px){    
    .department-section.style-2 .section-wrapper .lab-item {
      width: calc(100% / 1);
    }
}
.department-section.style-2 .section-wrapper .lab-item .lab-item-inner {
  text-align: center;
  margin: 8.5px;
  background: #fff;
  padding: 30px 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
    background-color: rgba(241, 134, 53, 0.03);
    visibility: visible;
    animation-name: fadeInUp;
}
.department-section.style-2 .section-wrapper .lab-item .lab-item-inner:hover {
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.3), 0 8px 24px rgba(212, 175, 55, 0.25);
}

.department-section.style-2 .section-wrapper .lab-item .lab-item-inner h4 {
  margin-bottom: 0;
    font-size: 18px;
    line-height: 28px;
}
.department-section.style-2 .section-wrapper .lab-item .lab-item-inner img {
  padding: 20px 0;
}
.food-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #d2d2d2;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.food-menu:last-child {
    border-bottom: none;
}
.food-menu-wrap {
    border: 1px dashed #d2d2d2;
    padding: 0 30px;
    border-radius: 10px;
    background-color: var(--white-color);
}
.food-menu_content {
    width: calc(100% - 100px);
    position: relative;
}
.food-menu_img {
    min-width: 92px;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    position: relative;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background: var(--white-color);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.12);
    padding: 5px;
    z-index: 2;
    margin-right: 10px;
}
.food-menu_img:before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid var(--primary-color);
    border-radius: inherit;
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    z-index: -1;
}
.food-menu_img img {
    width: 82px;
    height: 82px;
    border-radius: 100%;
}
.food-menu .product-rating {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    margin-top: 10px;
}
.food-menu .star-rating {
    width: 90px;
}
.product-rating i{
    margin-right: 4px;
    color: var(--primary-color);
}
.food-menu .star-rating:before {
    color: var(--primary-color);
}
.food-menu .star-rating span:before {
    color: var(--primary-color);
}
.primary-color{
    color: var(--primary-color);
}
.food-menu_title {
    font-weight: 500;
    font-size: 22px;
    line-height: 29px;
    margin-bottom: 4px;
    margin-top: -0.24em;
    color: var(--secondary-color);
    text-transform: capitalize;
    position: relative;
    z-index: 2;
}
/*.food-menu_title:before {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 0;
    border-bottom: 3px dotted;
    width: 100%;
    z-index: -1;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}*/
.food-menu_title:hover {
    color: var(--primary-color);
}
.food-menu_title a {
    color: inherit;
    background-color: var(--white-color);
}
.food-menu_price {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    background-color: rgba(255, 6, 0, 0.1);
    border-radius: 4px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    padding: 3px 12px;
    margin-top: 6px;
}
.food-menu_desc {
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    margin-bottom: 0;
}
.food-menu:hover {
    border-color: var(--primary-color) !important;
}
.food-menu:hover .food-menu_img:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.menu-tabs {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border-bottom: none;
    margin: 0 -30px 60px -30px;
}
.menu-tabs .nav-link {
    background-color: transparent;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    display: block;
    border: none;
    border-right: 1px dashed #a5a5a5;
    padding: 0px 30px;
    border-radius: 0;
}
.menu-tabs .nav-link.active,
.menu-tabs .nav-link:hover {
    color: var(--primary-color);
    background-color: transparent;
    border: none;
    border-right: 1px dashed #a5a5a5;
}
.menu-tabs .nav-link img {
    display: block;
    margin: auto;
    margin-bottom: 12px;
}
.menu-tabs .nav-link:last-child {
    border-right: none !important;
}
@media (max-width: 767px) {
    .menu-tabs {
        margin: 0 -12px 40px -12px;
    }
    .menu-tabs .nav-link {
        font-size: 0;
        padding: 0 12px;
        height: 40px;
    }
    .menu-tabs .nav-link img {
        margin-bottom: 0;
    }
}
@media (max-width: 575px) {
    .food-menu {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }
    .food-menu_price {
        -webkit-align-self: center;
        -ms-flex-item-align: center;
        align-self: center;
    }
    .food-menu_content {
        width: 100%;
    }
    .food-menu_title a {
        padding: 0 5px;
    }
    .food-menu-wrap {
        padding: 0 15px;
    }
    .food-menu .product-rating {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.food-menu-list .food-menu:first-child {
    margin-top: 0;
}
.food-menu-list .food-menu:last-child {
    padding-bottom: 0;
}
.food-menu-list .food-menu_title a {
    background-color: var(--smoke-color2);
}
@media (max-width: 1299px) {
    .food-menu-list .food-menu {
        gap: 4px;
    }
}
@media (max-width: 1199px) {
    .food-menu-list .food-menu {
        gap: 16px;
    }
    .menu-image-box {
        margin: 30px auto;
        max-width: 400px;
    }
}
@media (max-width: 575px) {
    .food-menu-list .food-menu_title:before {
        left: 10%;
        width: 80%;
    }
}
.food-menu-area {
    max-width: 1380px;
    margin: 0 auto;
    background-color: var(--smoke-color2);
    border-radius: 20px;
    padding: 80px 0;
}
@media (max-width: 1299px) {
    .food-menu-area {
        border-radius: 0;
    }
}
.background-image, [data-bg-src] {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
@media (min-width: 992px) {
    .display-1 {
        font-size: 5.2rem;
    }
    .nav-link{
        font-size: 18px;
    }    
}
@media(min-width: 1199px){
    .food-menu{
        height: 140px;
    }
    .banner_heading{
        font-size: 78px;
        font-weight: 600;
    }
    .w-80{
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .w-90{
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}