@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Jost:wght@300;400;500;600&family=Great+Vibes&display=swap');

:root {
    --bg-color: #070e10;
    --text-primary: #eaaa15;
    --text-secondary: #9a9c9b;
    --gold: #d4ab6a;
    --gold-hover: #ebd5a3;
    --border-color: rgba(212, 171, 106, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Jost', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    letter-spacing: 2px;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold);
}

.script-text {
    font-family: 'Great Vibes', cursive;
    color: var(--gold);
    font-size: 2.5rem;
    text-transform: none;
    letter-spacing: 1px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 14, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-container {
    text-align: center;
}

.logo-main {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 4px;
}

.logo-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-secondary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.nav-active {
    color: var(--gold);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #070e10;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    list-style: none;
    padding: 0.5rem 0;
    top: 100%;
    left: 0;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.dropdown-content li {
    padding: 0;
}

.dropdown-content a {
    color: var(--text-primary);
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
}

.dropdown-content a:hover {
    background-color: rgba(212, 171, 106, 0.1);
    color: var(--gold);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.btn-order {
    border: 1px solid var(--gold);
    padding: 0.6rem 1.5rem;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
}

.btn-order:hover {
    background: var(--gold);
    color: var(--bg-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 5%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(7, 14, 16, 0.7) 0%, rgba(7, 14, 16, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 5rem;
}

.hero h1 {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero .location {
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    border: 1px solid var(--border-color);
    padding: 0.8rem 2rem;
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Section Title */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .script-text {
    margin-bottom: -10px;
    display: block;
}

.section-title {
    font-size: 3.5rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.section-title::before,
.section-title::after {
    content: '';
    height: 1px;
    width: 60px;
    background: var(--gold);
}

/* Page Layout */
.page-section {
    padding: 10rem 5% 5rem;
    min-height: 20vh;
}

/* Content blocks */
.text-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 2;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    gap: 1.5rem;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    padding: 0.5rem;
    border-radius: 4px;
}

.menu-item:hover {
    background-color: rgba(212, 171, 106, 0.05);
    transform: translateY(-2px);
}

.menu-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.menu-details {
    flex: 1;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 0.3rem;
}

.menu-name {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--gold);
}

.menu-price {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.menu-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Detailed Menu List View */
.menu-category-section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-category-title {
    font-size: 2rem;
    color: var(--gold);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
}

.menu-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 4rem;
}

.menu-list-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    border-radius: 4px;
}

.menu-list-item:hover {
    background-color: rgba(212, 171, 106, 0.05);
    transform: translateY(-2px);
}

.menu-list-name {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.menu-list-price {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 500;
}

.category-link {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: 0.3s;
    text-decoration: none;
}

.category-link:hover {
    background: var(--gold);
    color: var(--bg-color);
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto;
}

.image-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid var(--border-color);
}

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

.image-card:hover img {
    transform: scale(1.05);
}

.image-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    text-align: center;
}

/* Footer */
footer {
    padding: 5rem 5% 2rem;
    background: #040809;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-col h4 {
    font-family: 'Script-text';
    /* using great vibes */
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.adv-footer-grid h5 {
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* 4-Column Footer */
.footer-4col {
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
    padding-top: 5rem;
}

.footer-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    width: 100%;
    padding: 0 5% 4rem;
}

.footer-grid-4 h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-grid-4 p,
.footer-grid-4 a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    text-decoration: none;
}

.footer-grid-4 a:hover {
    color: var(--gold);
}

.footer-grid-4 ul {
    list-style: none;
}

.footer-grid-4 ul li {
    margin-bottom: 0.8rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--gold);
    transition: 0.3s;
}

.footer-socials a:hover {
    background: var(--gold);
    color: var(--bg-color);
}

.footer-bottom-4 {
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding: 1.5rem 5%;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    background-color: rgba(0, 0, 0, 0.2);
}

.adv-socials {
    display: flex;
    gap: 1rem;
}

.adv-socials span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px dashed var(--border-color);
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* Order Section Split */
.order-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    min-height: 500px;
}

.order-image {
    flex: 1;
    background: url('../images/hero_background_1780898198388.png') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-image .script-text {
    font-size: 4rem;
    transform: rotate(-10deg);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.order-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.order-details {
    flex: 1;
    background: var(--bg-color);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.location-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    background: var(--gold);
    color: #000;
    padding: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: 0.3s;
}

.location-btn:hover {
    background: var(--gold-hover);
    color: #000;
}

/* New Design Classes */
.light-section {
    background: #fdfaf4;
    /* Off-white / light cream */
    color: #1a1a1a;
    padding: 5rem 5%;
}

.light-section .section-title {
    color: #1a1a1a;
}

.light-section p {
    color: #4a4a4a;
}

.dark-section {
    background: #1e1e1e;
    color: #e0ddd6;
    padding: 5rem 5%;
}

.action-buttons-container {
    background: #fdfaf4;
    padding: 2rem 5% 4rem;
    display: flex;
    justify-content: center;
}

.action-buttons {
    display: flex;
    gap: 2rem;
    max-width: 1000px;
    width: 100%;
}

.action-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #fff;
    color: #1a1a1a;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.action-btn.active,
.action-btn:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    height: auto;
}

.dark-box {
    background: #0f1618;
    color: #e0ddd6;
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.dark-box h2 {
    color: var(--gold);
    font-size: 2.5rem;
    letter-spacing: 6px;
    margin-bottom: 2rem;
}

.dark-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}



.hiring-section {
    background: #e6ebe6;
    /* light greenish-grey */
    padding: 5rem 5%;
}

.hiring-section .section-title {
    color: #e34125;
    /* Orange-red */
    font-family: 'Jost', sans-serif;
    letter-spacing: 4px;
}

.hiring-section p {
    color: #e34125;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.hiring-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.hiring-card {
    background: url('../images/hero_background_1780898198388.png') center/cover;
    position: relative;
    padding: 2.5rem 1rem;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    border: 3px solid #e34125;
}

.hiring-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hiring-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hiring-content .open-pos {
    font-size: 0.55rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hiring-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
}

.hiring-content p {
    font-size: 0.55rem;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.btn-solid-orange {
    background: #e34125;
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-solid-orange:hover {
    background: #c32e18;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #3a3a3a;
}

.info-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Jost', sans-serif;
    letter-spacing: 1px;
}

.info-card p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
}


.reviews-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    padding-bottom: 2rem;
    /* space for shadow */
}

.reviews-grid::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 calc(33.333% - 1.5rem);
    scroll-snap-align: start;
    min-width: 300px;
}

@media (max-width: 900px) {
    .review-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 600px) {
    .review-card {
        flex: 0 0 100%;
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #333;
    border: 1px solid #eee;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.slider-btn:hover {
    background: #f8f8f8;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.review-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-width: 250px;
}

.review-stars {
    color: #fbbc04;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.9rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
}

.author-info h5 {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0;
    color: #1a1a1a;
    margin-bottom: 0;
}

.author-info p {
    font-size: 0.7rem;
    color: #888;
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.map-box {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 450px;
    background: #eaeaea;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail-box {
    background: #fff;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.contact-detail-box h5 {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: 0;
}

.contact-detail-box p {
    color: #4a4a4a;
    font-size: 0.9rem;
}

.advanced-footer {
    background: #1a1a1a;
    padding: 4rem 5% 2rem;
    color: #aaa;
    font-size: 0.9rem;
}

.adv-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.adv-logo-col .script-text {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 2rem;
    display: block;
}

.adv-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.adv-socials span {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.adv-footer-grid h5 {
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.adv-footer-grid ul {
    list-style: none;
}

.adv-footer-grid li {
    margin-bottom: 0.8rem;
}

.adv-footer-grid a {
    color: #aaa;
}

.adv-footer-grid a:hover {
    color: #fff;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff !important;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.adv-contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.adv-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.8rem;
}

.adv-bottom-links a {
    color: #aaa;
    margin-right: 1.5rem;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .order-split {
        flex-direction: column;
    }

    .order-image {
        min-height: 300px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .split-container {
        grid-template-columns: 1fr;
        height: auto !important;
    }

    .hiring-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        overflow: visible;
    }

    .location-container {
        grid-template-columns: 1fr;
    }

    .adv-footer-grid {
        grid-template-columns: 1fr;
    }

    .adv-bottom {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .menu-list {
        grid-template-columns: 1fr;
    }
}

/* Catering Menu Zigzag Layout */
.catering-menu-section {
    padding: 10rem 5% 5rem;
    background-color: var(--bg-color);
}

.catering-header {
    text-align: center;
    margin-bottom: 5rem;
}

.cat-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
}

.cat-subtitle {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cat-min {
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.catering-container {
    max-width: 800px;
    margin: 0 auto;
}

.cat-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
}

.cat-center {
    text-align: center;
}

.cat-left {
    text-align: right;
    flex-direction: row;
}

.cat-right {
    text-align: left;
    flex-direction: row;
}

.cat-img-col {
    flex: 1;
    max-width: 250px;
}

.cat-img-col img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.cat-text-col {
    flex: 2;
}

.cat-category-name {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.cat-items-list {
    list-style: none;
    padding: 0;
}

.cat-items-list li {
    font-family: 'Jost', sans-serif;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.cat-divider {
    border: none;
    border-top: 1px solid rgba(212, 171, 106, 0.3);
    /* subtle gold line */
    margin: 3rem auto;
    width: 80%;
}

@media (max-width: 768px) {
    .cat-row {
        flex-direction: column !important;
        text-align: center;
        gap: 2rem;
    }

    .cat-title {
        font-size: 2.2rem;
    }
}

/* Tabbed Catering Menu Layout */
.catering-tab-section {
    padding: 12rem 5% 5rem;
    background-color: var(--bg-color);
}

.catering-tab-header {
    text-align: center;
    margin-bottom: 4rem;
}

.catering-tab-header .script-text {
    color: var(--gold);
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.catering-tabs-container {
    max-width: 900px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: -1px;
    /* Overlap border */
    position: relative;
    z-index: 2;
    overflow-x: auto;
}

.tab-btn {
    flex: 1;
    background: transparent;
    color: var(--gold);
    border: none;
    border-bottom: 1px solid rgba(212, 171, 106, 0.3);
    padding: 1.5rem 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    transition: 0.3s;
}

.tab-btn:hover {
    color: #fff;
}

.tab-btn.active {
    border: 1px solid rgba(212, 171, 106, 0.5);
    border-bottom: 1px solid var(--bg-color);
    border-radius: 4px 4px 0 0;
    color: var(--gold);
}

.tab-content-box {
    border: 1px solid rgba(212, 171, 106, 0.5);
    border-radius: 0 4px 4px 4px;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.tab-content {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.tab-category {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    font-size: 0.95rem;
    padding: 0.8rem 0;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-items {
    font-family: 'Jost', sans-serif;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.8rem 0;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

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

@media (max-width: 768px) {
    .catering-tab-section {
        padding-top: 8rem;
    }

    .tab-btn {
        font-size: 0.9rem;
        padding: 1rem 0.5rem;
    }

    .catering-tab-header .script-text {
        font-size: 2rem;
    }
}

/* Light Mode overrides for Catering Tabs on Home Page */
.catering-tab-section.light-mode {
    background-color: #e6ebe6;
}

.catering-tab-section.light-mode .script-text {
    color: #c94f34;
    /* subtle red/orange to match the original hiring grid feel */
}

.catering-tab-section.light-mode .cat-title {
    color: #222;
}

.catering-tab-section.light-mode p {
    color: #444 !important;
}

.catering-tab-section.light-mode .tab-btn {
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.catering-tab-section.light-mode .tab-btn:hover {
    color: #111;
}

.catering-tab-section.light-mode .tab-btn.active {
    color: #c94f34;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #fff;
}

.catering-tab-section.light-mode .tab-content-box {
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: #fff;
    /* white box on the light bg to make it pop */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.catering-tab-section.light-mode .tab-category {
    color: #c94f34;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.catering-tab-section.light-mode .tab-items {
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.catering-tab-section.light-mode .tab-items strong {
    color: #c94f34 !important;
}

/* Light Mode Menu Sections */
.light-section-1 {
    background-color: #fdfaf4 !important;
}

.light-section-2 {
    background-color: #f6eddf !important;
}

/* Override text colors for light sections */
.light-section-1 .menu-category-title,
.light-section-2 .menu-category-title {
    color: #c94f34;
    /* Darker orange/red for contrast */
}

.light-section-1 .menu-list-name,
.light-section-2 .menu-list-name {
    color: #222;
    /* Dark text for item names */
    font-weight: 500;
}

.light-section-1 .menu-list-price,
.light-section-2 .menu-list-price {
    color: #c94f34;
    /* Accent color for prices */
    font-weight: 600;
}

.light-section-1 .menu-list-item,
.light-section-2 .menu-list-item {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
    /* Darker dashed line */
}

.light-section-1 .menu-list-item:hover,
.light-section-2 .menu-list-item:hover {
    background-color: rgba(201, 79, 52, 0.05);
    /* Subtle hover for light mode */
}

/* Hero Slider Styles */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 96vh;
    min-height: 450px;
    background-color: #000;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-slide.slide-active {
    opacity: 1;
    visibility: visible;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.slide-title {
    color: var(--gold);
    font-size: 3.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.8s ease forwards;
}

.slide-subtitle {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.slide-overlay .btn-order {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    background-color: var(--gold);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 171, 106, 0.4);
}

.slide-overlay .btn-order:hover {
    background-color: #fff;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 171, 106, 0.6);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 16px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.prev-slide {
    left: 20px;
}

.next-slide {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.dot-active,
.dot:hover {
    background-color: var(--gold);
    transform: scale(1.3);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@media (max-width: 768px) {
    .slide-title {
        font-size: 2rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
        padding: 10px;
    }

    .hero-slider-section {
        height: 42vh;
    }
}

/* Logo Image Styles */
.site-logo {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s;
}

.site-logo:hover {
    transform: scale(1.05);
}

/* Ensure equal heights for Specialties section */
.split-container {
    align-items: stretch;
}

.dark-box {
    height: 100%;
}

.dining-image {
    height: 100%;
    display: flex;
    background: #0f1618;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.dining-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* Specials Section Redesign */
.specials-section {
    position: relative;
    padding: 6rem 5% 6rem 100px;
    background-color: #0d1314;
    /* very dark, slightly green/blue tint */
    color: #e0ddd6;
    overflow: hidden;
}

.specials-deco-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 100%;
    /* Creating an art deco inspired geometric pattern */
    background:
        linear-gradient(45deg, transparent 49%, var(--gold) 49%, var(--gold) 51%, transparent 51%) 0 0 / 30px 30px,
        linear-gradient(-45deg, transparent 49%, var(--gold) 49%, var(--gold) 51%, transparent 51%) 0 0 / 30px 30px,
        linear-gradient(90deg, #0d1314 0%, transparent 100%);
    background-color: #0a0e0f;
    opacity: 0.4;
    border-right: 1px solid rgba(201, 151, 84, 0.3);
}

.specials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.specials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.title-with-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.title-deco {
    color: rgba(201, 151, 84, 0.6);
    font-family: monospace;
    letter-spacing: -2px;
    font-size: 1.2rem;
}

.title-with-deco .section-title {
    margin-bottom: 0;
    font-size: 1.8rem;
    letter-spacing: 5px;
}

.specials-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.specials-item:hover {
    transform: translateX(10px);
}

.specials-img {
    width: 65px;
    height: 65px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.specials-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.specials-header-row {
    display: flex;
    align-items: baseline;
    width: 100%;
}

.specials-name {
    color: var(--gold);
    font-size: 0.95rem;
    letter-spacing: 2px;
    font-weight: 500;
}

.specials-line {
    flex-grow: 1;
    border-bottom: 1px solid rgba(201, 151, 84, 0.3);
    margin: 0 15px;
    position: relative;
    top: -4px;
}

.specials-price {
    color: #e0ddd6;
    font-weight: 600;
    font-size: 1rem;
}

.specials-desc {
    color: #8c8f8d;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 0.6rem;
    max-width: 90%;
}

.back-to-top {
    position: absolute;
    bottom: 2rem;
    right: 5%;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(201, 151, 84, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
    z-index: 10;
}

.back-to-top:hover {
    background: var(--gold);
    color: #0d1314;
    transform: translateY(-5px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .specials-section {
        padding: 4rem 5% 4rem 5%;
    }

    .specials-deco-left {
        display: none;
    }

    .title-with-deco {
        flex-direction: column;
        gap: 0.5rem;
    }

    .title-deco {
        display: none;
    }

    .specials-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .specials-header-row {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .specials-line {
        display: none;
    }

    .specials-desc {
        max-width: 100%;
    }
}

html {
    scroll-behavior: smooth;
}


/* Vegas Banner Section */
.vegas-banner-section {
    background-color: transparent;
    padding-top: 5rem;
    text-align: center;
}

.vegas-banner-container {
    max-width: 100%;
    margin: 0;
}

.vegas-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.vegas-banner-text {
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.8;
    font-size: 0.95rem;
    padding: 3rem 5%;
}

/* Google Reviews Section */
.google-reviews-section {
    background-color: #fbf9f4;
    padding: 6rem 5%;
    text-align: center;
}

.reviews-header {
    margin-bottom: 4rem;
}

.google-rating {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.google-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.google-rating .stars {
    color: #FBBC05;
    letter-spacing: 2px;
}

.rating-number {
    color: #333;
}

.reviews-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.title-line {
    width: 60px;
    height: 1px;
    background-color: #d4af37;
    border: none;
}

.reviews-title {
    font-family: 'Marcellus', serif;
    font-size: 2.2rem;
    letter-spacing: 4px;
    color: #222;
    margin: 0;
}

.reviews-subtitle {
    font-size: 0.9rem;
    color: #555;
}


.reviews-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    padding-bottom: 2rem;
    /* space for shadow */
}

.reviews-grid::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 calc(33.333% - 1.5rem);
    scroll-snap-align: start;
    min-width: 300px;
}

@media (max-width: 900px) {
    .review-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 600px) {
    .review-card {
        flex: 0 0 100%;
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #333;
    border: 1px solid #eee;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.slider-btn:hover {
    background: #f8f8f8;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}


.review-card {
    background-color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.card-stars {
    color: #FBBC05;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #222;
}

.reviewer-location {
    font-size: 0.8rem;
    color: #888;
}

@media (max-width: 768px) {
    .reviews-title-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .reviews-title {
        font-size: 1.8rem;
    }
}

/* Menu Categories */
.categories-section {
    padding: 5rem 5%;
    background-color: #0f1618;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    background: #1a2225;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    color: #e0ddd6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #2a353a;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
    border-color: var(--gold);
}

.category-icon {
    margin-bottom: 1.2rem;
    color: var(--gold);
}

.category-name {
    font-weight: 600;
    font-size: 1.1rem;
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* Stats Banner Section */
.stats-banner-section {
    background-color: #e6ebe6;
    padding: 3.5rem 5%;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 35px;
    height: 35px;
    margin-bottom: 1rem;
    color: #111;
}

.stat-number {
    font-size: 2.0rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.5rem;
    font-family: Arial, sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #222;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: Arial, sans-serif;
    text-transform: capitalize;
}

@media (max-width: 900px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 500px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}

/* Our Best Services Section */
.best-services-section {
    padding: 5rem 5%;
    background-color: #fcfcfc;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-label {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    color: #111;
    font-size: 1.1rem;
    font-family: var(--font-primary);
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
}

@media (max-width: 900px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .services-container {
        grid-template-columns: 1fr;
    }
}

/* FAQ & Video Section */
.faq-video-section {
    padding: 6rem 5%;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    outline: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-header:hover {
    background-color: #fbfbfb;
}

.accordion-header.active {
    color: var(--gold);
}

.accordion-header .icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #ffffff;
}

.accordion-content p {
    padding: 0 1.5rem 1.2rem 1.5rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .faq-video-section .container {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
}

.accordion-flat {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.flat-item {
    background: transparent !important;
    border: 1px solid #dcd5cc !important;
    border-radius: 4px !important;
    box-shadow: none !important;
}

.flat-header {
    background: transparent !important;
    color: #111 !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    font-family: Arial, sans-serif !important;
}

.flat-header:hover {
    background-color: transparent !important;
}

.flat-header.active {
    color: #111 !important;
}

.flat-header .caret-icon {
    transition: transform 0.3s ease;
    color: #555 !important;
}

.flat-header.active .caret-icon {
    transform: rotate(180deg);
}

.flat-content {
    background: transparent !important;
    border-top: none !important;
}

.flat-content p {
    color: #666 !important;
    font-size: 0.95rem !important;
    padding-top: 0 !important;
    font-family: Arial, sans-serif;
}

@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.float-whatsapp {
    background-color: #25D366;
}

.float-call {
    background-color: #007bff;
}

.float-btn svg {
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
    }

    .float-btn svg {
        width: 24px;
        height: 24px;
    }
}



/* Catering Carousel Section */
.special-catering-section {
    background: linear-gradient(rgba(230, 81, 0, 0.85), rgba(230, 81, 0, 0.85)), url('../images/home_slide.jpg') center/cover;
    padding: 4rem 5% 6rem;
    text-align: center;
}

.catering-intro-text {
    color: white;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.special-cards-slider {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
}

.sp-card {
    background-color: #fffaf5;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.sp-tag {
    background-color: #f37b2d;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 1.5rem;
}

.sp-title {
    color: #4a3424;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: Arial, sans-serif;
}

.sp-price {
    color: #e85d22;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sp-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.sp-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.sp-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.8rem;
    color: #333;
    font-size: 0.95rem;
}

.sp-list li::before {
    content: "•";
    color: #333;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.sp-buttons {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.sp-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.sp-btn:hover {
    opacity: 0.9;
}

.sp-btn-orange {
    background-color: #f37b2d;
    color: white;
}

.sp-btn-dark {
    background-color: #4a3424;
    color: white;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 2.5rem;
}

.carousel-btn {
    background-color: #f37b2d;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.carousel-more {
    margin-top: 1.5rem;
}

.btn-readmore-white {
    background-color: white;
    color: #333;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .special-cards-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .special-cards-slider {
        grid-template-columns: 1fr;
    }
}


/* Dark Catering Menu Design */
.dark-catering-menu {
    background-color: #0a0e10;
    color: #fff;
    padding: 10rem 5% 5rem 5%;
    font-family: 'Jost', sans-serif;
}

.catering-header-dark {
    text-align: center;
    margin-bottom: 4rem;
}

.cat-small-logo {
    width: 60px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.cat-main-title {
    font-size: 3rem;
    color: #d4ab6a;
    font-weight: 400;
    letter-spacing: 5px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cat-subtitle {
    font-size: 0.9rem;
    color: #aaa;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.catering-packages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    border-top: 1px solid rgba(212, 171, 106, 0.3);
    border-bottom: 1px solid rgba(212, 171, 106, 0.3);
    padding: 3rem 0;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.package-col {
    text-align: center;
}

.pkg-title {
    color: #d4ab6a;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.pkg-price {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.pkg-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkg-list li {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.catering-menu-items {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.cat-menu-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.cat-menu-row.reverse {
    flex-direction: row-reverse;
}

.cat-menu-text {
    flex: 1;
}

.cat-menu-img {
    flex: 1;
}

.cat-menu-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 171, 106, 0.1);
}

.cat-section-title {
    color: #d4ab6a;
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 1rem;
}

.cat-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #d4ab6a;
}

.cat-menu-row.reverse .cat-section-title::after {
    left: auto;
    right: 0;
}

.cat-menu-row.reverse .cat-menu-text {
    text-align: right;
}

.cat-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cat-item-list li {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .catering-packages {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cat-menu-row,
    .cat-menu-row.reverse {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .cat-section-title::after,
    .cat-menu-row.reverse .cat-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .cat-menu-row.reverse .cat-menu-text {
        text-align: center;
    }
}


/* Top Catering Header & Tabs */
.top-catering-header {
    background-color: var(--bg-color);
    padding: 12rem 5% 5rem 5%;
    font-family: 'Jost', sans-serif;
    text-align: center;
}

.top-cat-intro {
    margin-bottom: 4rem;
}

.catering-tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.catering-tabs {
    display: flex;
    justify-content: center;
    border-bottom: none;
    margin-bottom: 0;
}

.cat-tab {
    background-color: transparent;
    border: 1px solid rgba(212, 171, 106, 0.25);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    outline: none;
    cursor: pointer;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: 0.3s;
    font-family: 'Jost', sans-serif;
    margin-right: 5px;
}

.cat-tab:hover {
    color: var(--gold);
}

.cat-tab.active {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--gold);
    border: 1.5px solid rgba(212, 171, 106, 0.55);
    border-bottom: none;
    border-top: 2.5px solid var(--gold);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.cat-tab-content {
    display: none;
    background-color: rgba(255, 255, 255, 0.02);
    padding: 3rem 2rem;
    border-radius: 0 0 12px 12px;
    border: 1px solid rgba(212, 171, 106, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.cat-tab-content.active {
    display: block;
    animation: fadeEffect 0.5s;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.menu-list-block {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 171, 106, 0.15);
}

.menu-list-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.menu-list-title {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.menu-list-items {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.8;
}


/* Comprehensive Mobile Responsiveness Fixes */
@media (max-width: 900px) {
    header {
        padding: 1rem 5%;
    }

    nav ul {
        gap: 15px;
    }

    .top-section {
        flex-direction: column;
        padding-top: 120px;
    }

    .storefront-img {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .storefront-img img {
        max-height: 400px;
    }

    .top-text {
        text-align: center;
        padding: 0;
    }

    .top-text h1 {
        font-size: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {

    /* Header & Nav */
    header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    nav {
        width: 100%;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .btn-order {
        width: 100%;
        max-width: 300px;
    }

    /* General Typography & Sections */
    .section-title {
        font-size: 2rem !important;
    }

    section,
    .dark-catering-menu,
    .top-catering-header,
    .stats-banner-section {
        padding-left: 5% !important;
        padding-right: 5% !important;
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    /* Stats & Grids */
    .stats-grid,
    .about-stats,
    .about-features,
    .catering-packages,
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .stat-box {
        padding: 1.5rem !important;
    }

    .stat-icon {
        width: 40px !important;
        height: 40px !important;
    }

    .stat-number {
        font-size: 2.2rem !important;
    }

    /* Catering Pages */
    .catering-tabs {
        flex-wrap: wrap;
    }

    .cat-tab {
        flex: 1 1 calc(50% - 1rem);
        text-align: center;
        padding: 0.8rem;
    }

    .cat-menu-row,
    .cat-menu-row.reverse {
        flex-direction: column !important;
        gap: 2rem;
        text-align: center;
    }

    .cat-menu-row.reverse .cat-menu-text {
        text-align: center !important;
    }

    .cat-menu-img img {
        height: 250px !important;
        width: 100%;
    }

    .cat-main-title {
        font-size: 2.2rem !important;
    }

    .top-catering-header {
        padding-top: 14rem !important;
    }

    /* Footer */
    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .footer-col {
        margin: 0 auto;
    }

    /* Floating Buttons - Move slightly up so they don't cover text as much */
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
    }

    .float-btn svg {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {

    /* Super small screens */
    .cat-tab {
        flex: 1 1 100%;
    }

    .top-text h1 {
        font-size: 2.2rem;
    }
}


/* --- COMPREHENSIVE MOBILE LAYOUT FIXES --- */
@media (max-width: 768px) {

    /* Header and Navigation */
    header {
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
    }

    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .btn-order {
        margin-top: 0.5rem;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    /* Catering Light Header */
    .top-catering-header {
        padding-top: 12rem;
        /* Taller header requires more top padding */
        padding-bottom: 3rem;
    }

    .catering-tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .cat-tab {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
        flex: 1 1 calc(50% - 1rem);
        text-align: center;
        border: 1px solid rgba(212, 171, 106, 0.25) !important;
        background-color: rgba(255, 255, 255, 0.02) !important;
        color: var(--text-secondary) !important;
        border-radius: 6px;
    }

    .cat-tab.active {
        border: 1.5px solid var(--gold) !important;
        background-color: rgba(212, 171, 106, 0.1) !important;
        color: var(--gold) !important;
    }

    .cat-tab-content {
        padding: 2rem 1rem;
    }

    /* Stats Section */
    .stats-banner-section {
        padding: 4rem 5%;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem !important;
    }

    .stat-label {
        font-size: 0.85rem !important;
    }

    /* Reviews Slider */
    .reviews-slider-container {
        padding: 0 30px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    /* Dark Catering Menu */
    .dark-catering-menu {
        padding-top: 4rem;
    }

    .cat-main-title {
        font-size: 2.2rem;
    }

    .cat-menu-row {
        gap: 2rem;
    }

    .cat-menu-img img {
        height: 250px;
    }

    /* Contact Map and Details */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-details {
        padding-right: 0;
    }

    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {

    /* Even smaller screens */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cat-tab {
        flex: 1 1 100%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}


/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 3px;
    transition: 0.3s;
}

/* Mobile Quick Actions (2x2 Grid) */
.mobile-quick-actions {
    display: none;
    /* hidden on desktop */
    padding: 1rem 5%;
    margin-top: 5rem;
    /* spacing for header */
}

.mqa-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: 1px solid #eaeaea;
}

.mqa-btn svg {
    width: 24px;
    height: 24px;
    margin-bottom: 0.8rem;
}

.mqa-dark {
    background-color: #1a1a1a;
    color: #fff !important;
    border-color: #1a1a1a;
}

.mqa-light {
    background-color: #fff;
    color: #1a1a1a !important;
}

@media (max-width: 768px) {

    /* Enable Hamburger Menu */
    header {
        flex-direction: row !important;
        /* Overriding previous mobile fix to keep logo and toggle inline */
        justify-content: space-between;
        align-items: center;
        padding: 1rem 5% !important;
    }

    .menu-toggle {
        display: flex;
    }

    nav ul {
        display: none !important;
        /* Hide by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(7, 14, 16, 0.98);
        flex-direction: column;
        padding: 2rem 0;
        border-bottom: 2px solid var(--gold);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    nav ul.mobile-active {
        display: flex !important;
        /* Show when toggled */
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    .btn-order {
        /* Keep header button visible using header .btn-order styles */
    }

    /* Enable Mobile Quick Actions */
    .mobile-quick-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 80px;
        /* Space under fixed header */
    }

    /* Fix Hero spacing since we added quick actions */
    .hero {
        height: auto;
        padding-top: 2rem;
        padding-bottom: 4rem;
        min-height: 80vh;
    }

    .top-catering-header {
        padding-top: 4rem;
    }
}


/* Mobile Quick Actions (Bottom) */
.mobile-quick-actions-bottom {
    display: none;
}

@media (max-width: 768px) {
    .mobile-quick-actions-bottom {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 3rem 5%;
        background-color: #f9f6f0;
    }

    .mqa-btn-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem 1rem;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        letter-spacing: 1px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: 0.3s;
    }

    .mqa-btn-bottom svg {
        width: 32px;
        height: 32px;
        margin-bottom: 1rem;
    }

    .mqa-dark {
        background-color: #1a1a1a;
        color: #fff;
    }

    .mqa-light {
        background-color: #fff;
        color: #1a1a1a;
        border: 1px solid #eaeaea;
    }
}

/* ==========================================================================
   FOOD-APP MOBILE BOTTOM NAVIGATION & BLOG/RESPONSIVE OVERRIDES
   ========================================================================== */

/* Mobile Bottom Sticky Bar */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 62px;
        background: rgba(7, 14, 16, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(212, 171, 106, 0.35);
        justify-content: space-around;
        align-items: center;
        z-index: 99999;
        box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.75);
        padding-bottom: env(safe-area-inset-bottom);
    }

    .mobile-bottom-nav .nav-tab {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #8c8f8d;
        text-decoration: none;
        font-size: 0.65rem;
        font-family: 'Jost', sans-serif;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        flex: 1;
        height: 100%;
        transition: all 0.3s ease;
    }

    .mobile-bottom-nav .nav-tab svg {
        width: 20px;
        height: 20px;
        margin-bottom: 2px;
        stroke: currentColor;
        fill: none;
        transition: stroke 0.3s ease, transform 0.2s ease;
    }

    .mobile-bottom-nav .nav-tab.active-tab {
        color: var(--gold);
    }

    .mobile-bottom-nav .nav-tab.active-tab svg {
        stroke: var(--gold);
    }

    .mobile-bottom-nav .nav-tab:active svg {
        transform: scale(0.85);
    }

    /* Adjust page container bottom space so bottom nav never overlaps footer/content */
    body {
        padding-bottom: 72px !important;
    }

    /* Adjust float button positions above the tab bar */
    .floating-actions {
        bottom: 82px !important;
        right: 15px !important;
    }

    /* Completely hide redundant grids & call/maps bottom containers on mobile */
    .mobile-quick-actions,
    .mobile-quick-actions-bottom,
    .mobile-quick-actions-bottom-container {
        display: none !important;
    }

    /* Grids & lists response tweaks */
    .menu-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .menu-list {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
    }

    /* 3-Column Grid Menu category tabs on Mobile */
    .menu-categories-nav {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.6rem !important;
        padding: 0 1rem !important;
        margin-top: 1.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: visible !important;
    }

    .menu-categories-nav::-webkit-scrollbar {
        display: none !important;
    }

    .menu-categories-nav .category-link {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        flex: none !important;
        font-size: 0.72rem !important;
        padding: 0.6rem 0.3rem !important;
        border-radius: 8px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(212, 171, 106, 0.3) !important;
        color: var(--text-primary) !important;
        line-height: 1.2 !important;
        min-height: 42px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .menu-categories-nav .category-link:hover,
    .menu-categories-nav .category-link:active {
        background: var(--gold) !important;
        color: var(--bg-color) !important;
    }
}

/* Blog Page Grid Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 5%;
}

.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(212, 171, 106, 0.15);
    border-color: var(--gold);
}

.blog-img-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

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

.blog-card:hover .blog-img-container img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.blog-card-content h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-readmore-btn {
    align-self: flex-start;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    background: transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.blog-readmore-btn:hover {
    color: #fff;
}

.blog-readmore-btn svg {
    transition: transform 0.3s ease;
}

.blog-readmore-btn:hover svg {
    transform: translateX(5px);
}

/* Interactive Overlay Modal for Blogs */
.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    z-index: 999999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-modal.modal-active {
    display: flex;
    opacity: 1;
}

.blog-modal-content {
    background: #070e10;
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 750px;
    max-height: 80vh;
    border-radius: 16px;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.9);
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-modal.modal-active .blog-modal-content {
    transform: scale(1);
}

.blog-modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(7, 14, 16, 0.85);
    border: 1px solid var(--border-color);
    color: var(--gold);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.blog-modal-close:hover {
    background: var(--gold);
    color: #070e10;
}

.blog-modal-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.blog-modal-body {
    padding: 2rem;
}

.blog-modal-body h2 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    line-height: 1.3;
}

.blog-modal-date {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: block;
    letter-spacing: 1px;
}

.blog-modal-text {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.blog-modal-text p {
    margin-bottom: 1.2rem;
}

@media (max-width: 480px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-modal-body {
        padding: 1.5rem;
    }

    .blog-modal-body h2 {
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   USER-REQUESTED GRID, HEADER & SPACING TWEAKS (2-2 LAYOUTS, PADDING FIXES, SLIDER SCALE)
   ========================================================================== */

/* 1. Global Spacing / Padding Overrides on Mobile to Prevent Large Gaps */
@media (max-width: 768px) {

    /* Set tight padding on all sections for all pages */
    section,
    .dark-catering-menu,
    .top-catering-header,
    .stats-banner-section,
    .page-section,
    .light-section,
    .dark-section,
    .faq-video-section,
    .best-services-section,
    .catering-tab-section,
    .blog-section,
    .specials-section,
    .categories-section {
        padding-top: 2.2rem !important;
        padding-bottom: 2.2rem !important;
        padding-left: 1.2rem !important;
        padding-right: 1.2rem !important;
    }

    /* Spacings for Page Top Intros */
    .page-section,
    .top-catering-header,
    .blog-section,
    .order-locations-section {
        padding-top: 9.5rem !important;
        /* clear fixed top header */
    }

    /* Tighten titles & margins */
    .section-header {
        margin-bottom: 1.5rem !important;
    }

    .section-title {
        font-size: 1.6rem !important;
        letter-spacing: 2px !important;
        gap: 0.8rem !important;
        margin-bottom: 1.5rem !important;
    }

    .section-title::before,
    .section-title::after {
        width: 30px !important;
    }

    .script-text {
        font-size: 1.8rem !important;
    }

    .storefront-img {
        margin-bottom: 0 !important;
    }
}

/* 2. Sizing / Overflow / Screen Fit for Hero Slider (Increased Height) */
.hero-slider-section {
    height: 96vh !important;
}

@media (max-width: 900px) {

    /* Clear padding-left/right to allow full bleed hero slider and background bars */
    .top-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 65px !important;
        /* height of header */
        padding-bottom: 0 !important;
        overflow-x: hidden !important;
        width: 100% !important;
    }

    .storefront-img {
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .hero-slider-section {
        height: 42vh !important;
        /* Scaled down hero height on mobile */
        min-height: 310px !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }

    .slider-container {
        width: 100% !important;
        height: 100% !important;
        overflow: hidden !important;
    }

    /* Ensure no horizontal scroll across body */
    body,
    html {
        overflow-x: hidden !important;
        width: 100% !important;
    }
}

@media (max-width: 768px) {

    /* Scale hero typography down to fit within the viewport correctly */
    .slide-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.4rem !important;
        letter-spacing: 1px !important;
        line-height: 1.3 !important;
    }

    .slide-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
    }

    .slide-overlay .btn-order {
        padding: 0.5rem 1.5rem !important;
        font-size: 0.8rem !important;
    }
}

/* 3. Ambar Surrey Restaurant Action Buttons 2-2 Layout */
@media (max-width: 768px) {
    .action-buttons-container {
        padding: 1.5rem 1.2rem !important;
    }

    .action-buttons {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .action-btn {
        padding: 1rem 0.5rem !important;
        font-size: 0.75rem !important;
        border-radius: 6px !important;
    }

    .action-btn svg {
        width: 20px !important;
        height: 20px !important;
        margin-bottom: 0.3rem !important;
    }
}

/* 4. Explore Our Menu Categories 2-2 Grid Layout */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }

    .category-card {
        padding: 1.2rem 0.8rem !important;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }
}

/* 5. Stats Cards Section 2-2 Grid Layout */
@media (max-width: 768px) {

    .stats-container,
    .stats-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
        width: 100% !important;
    }
}

@media (max-width: 500px) {

    .stats-container,
    .stats-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
        width: 100% !important;
    }
}

/* 6. Specials Section "NOW AVAILABLE AT BOTH OF OUR LOCATION'S" */
@media (max-width: 768px) {
    .title-with-deco .section-title {
        font-size: 1.2rem !important;
        letter-spacing: 1.5px !important;
        line-height: 1.4 !important;
        text-align: center !important;
    }

    /* Convert specials layout into premium food-app card items (thumbnail left, details right) */
    .specials-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 0.8rem !important;
        padding: 0.8rem !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid rgba(212, 171, 106, 0.15) !important;
        border-radius: 8px !important;
        margin-bottom: 1rem !important;
    }

    .specials-img {
        width: 70px !important;
        height: 70px !important;
        border-radius: 6px !important;
    }

    .specials-details {
        text-align: left !important;
        flex-grow: 1 !important;
    }

    .specials-header-row {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: baseline !important;
        width: 100% !important;
        gap: 0.5rem !important;
    }

    .specials-name {
        font-size: 0.8rem !important;
        letter-spacing: 0.5px !important;
        font-family: 'Cinzel', serif !important;
        color: var(--gold) !important;
    }

    .specials-line {
        display: none !important;
    }

    .specials-price {
        font-size: 0.85rem !important;
        color: #fff !important;
        font-weight: 600 !important;
        font-family: 'Jost', sans-serif !important;
        flex-shrink: 0 !important;
    }

    .specials-desc {
        max-width: 100% !important;
        margin-top: 0.3rem !important;
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
        color: #8c8f8d !important;
    }
}

/* 7. Recommendations SPECIALTIES Stacking Order (Image First, Text Second on Mobile/Tablet) */
@media (max-width: 900px) {
    .split-container {
        display: flex !important;
        flex-direction: column-reverse !important;
        height: auto !important;
    }

    .split-container .dining-image {
        height: 350px !important;
        margin-bottom: 1.5rem !important;
    }
}

/* 8. Mobile Menu Header Alignments (Logo Left, Toggle Right) */
@media (max-width: 900px) {
    header {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0.8rem 1.2rem !important;
        width: 100% !important;
    }

    .logo-container {
        text-align: left !important;
        margin: 0 !important;
        max-width: 45% !important;
        order: 1 !important;
    }

    .site-logo {
        max-height: 38px !important;
        width: auto !important;
    }

    header .btn-order {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        order: 2 !important;
        margin-left: auto !important;
        margin-right: 0.8rem !important;
        padding: 0.4rem 0.8rem !important;
        font-size: 0.7rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
        border-radius: 6px !important;
        background: var(--gold) !important;
        color: var(--bg-color) !important;
        border: 1px solid var(--gold) !important;
        width: auto !important;
        max-width: none !important;
        margin-top: 0 !important;
        white-space: nowrap !important;
        height: auto !important;
        text-transform: uppercase !important;
    }

    .menu-toggle {
        display: flex !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        order: 3 !important;
    }

    nav {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
    }
}

/* 9. Online Ordering Locations Page Card Styles (order.html) */
.order-locations-section {
    padding: 10rem 5% 3rem;
    background-color: var(--bg-color);
}

.order-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 3rem auto 0;
    padding: 0 5%;
}

.order-location-card {
    background: #070e10 !important;
    border: 1.5px solid rgba(212, 171, 106, 0.35) !important;
    border-radius: 16px !important;
    padding: 2.5rem 3rem !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
    cursor: pointer !important;
    height: auto !important;
    max-width: 750px !important;
    margin: 0 auto !important;
    gap: 3rem !important;
}

.order-location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 171, 106, 0.15);
    border-color: rgba(212, 171, 106, 0.8) !important;
}

.order-card-img {
    width: 100% !important;
    max-width: 240px !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    border: none !important;
    margin-bottom: 0 !important;
}

.order-card-info {
    padding: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.order-card-info h3 {
    font-size: 1.5rem !important;
    color: #e0ddd6 !important;
    margin-bottom: 1.2rem !important;
    letter-spacing: 2px !important;
    line-height: 1.4 !important;
    font-family: 'Cinzel', serif !important;
    font-weight: 500 !important;
}

.order-card-info .order-link-btn {
    color: #8c8f8d !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-top: 0.5rem !important;
    transition: color 0.3s ease !important;
}

.order-location-card:hover .order-link-btn {
    color: var(--gold) !important;
}

/* Maps Section below cards */
.order-maps-section {
    padding: 3rem 5% 6rem !important;
    background-color: var(--bg-color);
}

.order-maps-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
    max-width: 1100px !important;
    margin: 3rem auto 0 !important;
}

.order-map-card {
    background: #070e10 !important;
    border: 1px solid rgba(212, 171, 106, 0.2) !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    text-align: center !important;
}

.order-map-card h4 {
    font-family: 'Cinzel', serif !important;
    color: var(--gold) !important;
    margin-bottom: 1rem !important;
    letter-spacing: 1.5px !important;
    font-size: 1.1rem !important;
}

.order-map-container {
    width: 100% !important;
    height: 300px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.order-map-container iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    filter: grayscale(100%) invert(92%) contrast(83%) !important;
}

@media (max-width: 768px) {
    .order-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .order-maps-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .order-location-card {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        padding: 2.5rem 2rem !important;
        gap: 0 !important;
    }

    .order-card-img {
        margin-bottom: 2rem !important;
        max-width: 280px !important;
    }

    .order-card-info {
        align-items: center !important;
    }
}


/* ==========================================================================
   USER-REQUESTED GRID & SPACING TWEAKS (2-2 LAYOUTS, PADDING FIXES, SLIDER SCALE)
   ========================================================================== */

/* 1. Global Spacing / Padding Overrides on Mobile to Prevent Large Gaps */
@media (max-width: 768px) {

    /* Set tight padding on all sections for all pages */
    section,
    .dark-catering-menu,
    .top-catering-header,
    .stats-banner-section,
    .page-section,
    .light-section,
    .dark-section,
    .faq-video-section,
    .best-services-section,
    .catering-tab-section,
    .blog-section,
    .specials-section,
    .categories-section {
        padding-top: 2.2rem !important;
        padding-bottom: 2.2rem !important;
        padding-left: 1.2rem !important;
        padding-right: 1.2rem !important;
    }

    /* Spacings for Page Top Intros */
    .page-section,
    .top-catering-header,
    .blog-section {
        padding-top: 5.5rem !important;
        /* clear fixed top header */
    }

    /* Tighten titles & margins */
    .section-header {
        margin-bottom: 1.5rem !important;
    }

    .section-title {
        font-size: 1.6rem !important;
        letter-spacing: 2px !important;
        gap: 0.8rem !important;
        margin-bottom: 1.5rem !important;
    }

    .section-title::before,
    .section-title::after {
        width: 30px !important;
    }

    .script-text {
        font-size: 1.8rem !important;
    }

    .storefront-img {
        margin-bottom: 0 !important;
    }
}

/* 2. Sizing / Overflow / Screen Fit for Hero Slider (1st Image Request) */
@media (max-width: 900px) {

    /* Clear padding-left/right to allow full bleed hero slider and background bars */
    .top-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 65px !important;
        /* height of header */
        padding-bottom: 0 !important;
        overflow-x: hidden !important;
        width: 100% !important;
    }

    .storefront-img {
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .hero-slider-section {
        height: 42vh !important;
        /* Scaled down hero height on mobile */
        min-height: 310px !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }

    .slider-container {
        width: 100% !important;
        height: 100% !important;
        overflow: hidden !important;
    }

    /* Ensure no horizontal scroll across body */
    body,
    html {
        overflow-x: hidden !important;
        width: 100% !important;
    }
}

@media (max-width: 768px) {

    /* Scale hero typography down to fit within the viewport correctly */
    .slide-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.4rem !important;
        letter-spacing: 1px !important;
        line-height: 1.3 !important;
    }

    .slide-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
    }

    .slide-overlay .btn-order {
        padding: 0.5rem 1.5rem !important;
        font-size: 0.8rem !important;
    }
}

/* 3. Ambar Surrey Restaurant Action Buttons 2-2 Layout */
@media (max-width: 768px) {
    .action-buttons-container {
        padding: 1.5rem 1.2rem !important;
    }

    .action-buttons {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .action-btn {
        padding: 1rem 0.5rem !important;
        font-size: 0.75rem !important;
        border-radius: 6px !important;
    }

    .action-btn svg {
        width: 20px !important;
        height: 20px !important;
        margin-bottom: 0.3rem !important;
    }
}

/* 4. Explore Our Menu Categories 2-2 Grid Layout */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }

    .category-card {
        padding: 1.2rem 0.8rem !important;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }
}

/* 5. Stats Cards Section 2-2 Grid Layout (2nd Image Request) */
@media (max-width: 768px) {

    .stats-container,
    .stats-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
        width: 100% !important;
    }
}

@media (max-width: 500px) {

    .stats-container,
    .stats-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
        width: 100% !important;
    }
}

/* 6. Specials Section "NOW AVAILABLE AT BOTH OF OUR LOCATION'S" (3rd Image/Mobile Fix) */
@media (max-width: 768px) {
    .title-with-deco .section-title {
        font-size: 1.2rem !important;
        letter-spacing: 1.5px !important;
        line-height: 1.4 !important;
        text-align: center !important;
    }

    /* Convert specials layout into premium food-app card items (thumbnail left, details right) */
    .specials-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 0.8rem !important;
        padding: 0.8rem !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid rgba(212, 171, 106, 0.15) !important;
        border-radius: 8px !important;
        margin-bottom: 1rem !important;
    }

    .specials-img {
        width: 70px !important;
        height: 70px !important;
        border-radius: 6px !important;
    }

    .specials-details {
        text-align: left !important;
        flex-grow: 1 !important;
    }

    .specials-header-row {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: baseline !important;
        width: 100% !important;
        gap: 0.5rem !important;
    }

    .specials-name {
        font-size: 0.8rem !important;
        letter-spacing: 0.5px !important;
        font-family: 'Cinzel', serif !important;
        color: var(--gold) !important;
    }

    .specials-line {
        display: none !important;
    }

    .specials-price {
        font-size: 0.85rem !important;
        color: #fff !important;
        font-weight: 600 !important;
        font-family: 'Jost', sans-serif !important;
        flex-shrink: 0 !important;
    }

    .specials-desc {
        max-width: 100% !important;
        margin-top: 0.3rem !important;
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
        color: #8c8f8d !important;
    }
}


/* ==========================================================================
   FOOTER MOBILE RESPONSIVE STYLES
   ========================================================================== */

/* Tablet: 4-columns collapse to 2-columns */
@media (max-width: 900px) {
    .footer-grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
        padding: 0 1.2rem 3rem !important;
    }

    .footer-4col {
        padding-top: 3rem !important;
    }
}

/* Mobile: fully stacked single column */
@media (max-width: 560px) {
    .footer-4col {
        padding-top: 2.5rem !important;
    }

    .footer-grid-4 {
        grid-template-columns: 1fr !important;
        gap: 1.8rem !important;
        padding: 0 1.2rem 2rem !important;
        text-align: center !important;
    }

    .footer-socials {
        justify-content: center !important;
    }

    .footer-grid-4 h4 {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
        letter-spacing: 1.5px !important;
    }

    .footer-grid-4 p,
    .footer-grid-4 a {
        font-size: 0.82rem !important;
        line-height: 1.7 !important;
    }

    .footer-grid-4 ul li {
        margin-bottom: 0.6rem !important;
    }

    .footer-col-4 iframe {
        height: 140px !important;
        border-radius: 6px !important;
    }

    .footer-bottom-4 {
        padding: 1.2rem 1.2rem 1.5rem !important;
        font-size: 0.75rem !important;
        line-height: 1.6 !important;
    }
}

/* Add bottom padding so footer content isn't hidden under the mobile bottom nav */
@media (max-width: 768px) {
    .footer-4col {
        padding-bottom: 6rem !important;
    }

    footer {
        padding-bottom: 6rem !important;
    }
}

/* ==========================================================================
   GLOBAL SMOOTH SCROLL REVEAL ANIMATIONS
   ========================================================================== */

/* Base classes for trigger elements */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Active states applied by IntersectionObserver */
.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Transition delays for staggered animations */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* =========================================================
   PHOTO GALLERY SECTION
   ========================================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 0;
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-left: 3px solid var(--gold);
    padding-left: 10px;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 150px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 110px;
    }
}

/* =========================================================
   ABOUT PAGE - PHOTO WALL SECTION
   ========================================================= */
.about-photo-wall {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 280px;
}

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

.about-photo-item:hover img {
    transform: scale(1.06);
}

.about-photo-item.tall {
    grid-row: span 2;
    height: 100%;
}

@media (max-width: 768px) {
    .about-photo-wall {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-photo-item.tall {
        grid-row: span 1;
        height: 220px;
    }
    .about-photo-item {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .about-photo-wall {
        grid-template-columns: 1fr;
    }
    .about-photo-item,
    .about-photo-item.tall {
        height: 220px;
        grid-row: span 1;
    }
}

/* =========================================================
   BLOG PAGE - EXTRA IMAGES
   ========================================================= */
.blog-photo-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 5%;
}

.blog-strip-img {
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
}

.blog-strip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-strip-img:hover img {
    transform: scale(1.06);
}

@media (max-width: 768px) {
    .blog-photo-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .blog-photo-strip {
        grid-template-columns: 1fr 1fr;
    }
    .blog-strip-img {
        height: 140px;
    }
}

/* =========================================================
   CATERING PAGE - IMAGE ENHANCEMENTS
   ========================================================= */
.dining-image img {
    object-fit: cover !important;
}

/* =========================================================
   VEGAS / SPECIAL EVENT BANNER
   ========================================================= */
.special-event-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.special-event-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
    transition: transform 8s ease;
}

.special-event-section:hover img {
    transform: scale(1.03);
}

.special-event-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.65));
    padding: 2rem;
}

.special-event-overlay h2 {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.special-event-overlay p {
    color: #fff;
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .special-event-section img { height: 280px; }
    .special-event-overlay h2 { font-size: 1.6rem; }
    .special-event-overlay p { font-size: 0.9rem; }
}

/* =========================================================
   INSTAGRAM REELS SECTION
   ========================================================= */
.instagram-reels-section {
    background-color: #0b0f0b; /* matching dark-section */
    padding: 5rem 0 0; /* padding top only, no bottom to touch footer nicely */
    text-align: center;
    overflow: hidden;
}

.insta-container {
    max-width: 1200px;
    margin: 0 auto 2.5rem;
    padding: 0 5%;
}

.insta-title-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.insta-title-link:hover {
    transform: scale(1.05);
}

.insta-section-title {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.insta-icon {
    color: #e1306c; /* Instagram theme color */
}

.insta-slider-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.insta-slider-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.insta-slider-track {
    display: flex;
    flex-wrap: nowrap;
}

.insta-slide-item {
    flex: 0 0 16.666%; /* 6 items on large screens */
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: block;
}

@media (max-width: 1200px) {
    .insta-slide-item {
        flex: 0 0 20%; /* 5 items */
    }
}

@media (max-width: 900px) {
    .insta-slide-item {
        flex: 0 0 25%; /* 4 items */
    }
}

@media (max-width: 600px) {
    .insta-slide-item {
        flex: 0 0 33.333%; /* 3 items */
    }
}

@media (max-width: 450px) {
    .insta-slide-item {
        flex: 0 0 50%; /* 2 items */
    }
}

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

.insta-slide-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.insta-slide-item:hover .insta-slide-overlay {
    opacity: 1;
}

.insta-hover-icon {
    color: #fff;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}