/* ===============================
   Base + Global Styles
   =============================== */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&family=Nanum+Myeongjo:wght@400;700;800&family=Open+Sans:wght@400;700&family=Josefin+Sans:wght@300;400;500&family=Open+Sans+Condensed:wght@700&display=swap');

:root {
    --bg-white: #ffffff;
    --bg-light-gray: #f8f8f8;
    --text-dark: #000000;
    --text-muted: #525252;
    --border-color: #eeeeee;
    --transition-speed: 0.3s;
}

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

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

a {
    color: inherit;
    text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Nanum Myeongjo', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.section {
    padding: 90px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.kicker {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}


/* ===============================
   Header & Navigation
   =============================== */
.header {
    background-color: rgba(255, 255, 255, 0);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color var(--transition-speed) ease;
}

.header.scrolled {
    position: fixed;
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    transition: height var(--transition-speed) ease;
}

.header.scrolled .header-container {
    height: 80px;
}

.logo img {
    max-height: 80px;
    transition: max-height var(--transition-speed) ease;
}

.header.scrolled .logo img {
    max-height: 60px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

.main-nav a {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--bg-white);
    padding: 10px 0;
    position: relative;
    transition: color var(--transition-speed) ease;
}

.header.scrolled .main-nav a {
    color: var(--text-dark);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--bg-white);
    transition: width var(--transition-speed) ease;
}

.header.scrolled .main-nav a::after {
    background-color: var(--text-dark);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--bg-white);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

.header.scrolled .mobile-menu-toggle {
    color: var(--text-dark);
}

/* ===============================
   Hero Section (Homepage)
   =============================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

.hero-content h1 {
    font-family: 'Nanum Myeongjo', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 15px;
    margin-bottom: 20px;
}

.hero-content p {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #fff;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-ghost {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding: 14px 30px;
    border: 1px solid #fff;
    color: #fff;
    background-color: transparent;
    transition: all var(--transition-speed) ease;
}

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


/* ===============================
   Intro Section
   =============================== */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
}

.intro-text p {
    font-size: 1rem;
    line-height: 1.8;
}

.q-button {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 15px 35px;
    background-color: #000;
    color: #fff;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-speed);
    margin-top: 20px;
}

.q-button:hover {
    background-color: #333;
}


/* ===============================
   Features Section
   =============================== */
.features {
    background-color: var(--bg-white);
    padding: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.feature-box {
    position: relative;
    padding: 100px 40px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.feature-box-content {
    position: relative;
    z-index: 2;
}

.feature-box h3 {
    font-size: 1.8rem;
    color: white;
}

.feature-box-1 {
    background-image: url('../content/fritay.jpg');
}

.feature-box-2 {
    background-image: url('https://images.unsplash.com/photo-1514362545857-3bc16549766b?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.feature-box-3 {
    background-image: url('../content/griot.jpg');
}

/* ===============================
   Catering Section (Homepage)
   =============================== */
.catering-tiles-section {
    background-color: var(--bg-light-gray);
}

.catering-tile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.catering-tile {
    background-color: #fff;
    text-align: left;
}

.catering-tile .image-wrapper {
    overflow: hidden;
}

.catering-tile img {
    transition: transform 0.5s ease;
}

.catering-tile:hover img {
    transform: scale(1.05);
}

.catering-tile-content {
    padding: 30px;
}

.catering-tile-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.catering-tile-content .separator {
    display: none;
}

/* ===============================
   Events Section (Homepage)
   =============================== */
.events-section {
    background-color: #1e1e1e;
    color: #fff;
}

.events-section .section-title,
.events-section .kicker,
.events-section .section-subtitle {
    color: #fff;
}

.events-section .section-subtitle {
    color: #ccc;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-home-card {
    background-color: #2b2b2b;
    padding: 30px;
    border: 1px solid #333;
}

.event-home-card img {
    margin-bottom: 20px;
}

.event-home-card h4 {
    color: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-home-card p {
    color: #ccc;
    font-size: 0.95rem;
}

/* ===============================
   Reviews Section
   =============================== */
.reviews {
    background-color: var(--bg-light-gray);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.reviews-average {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}

.reviews-average .rating-val {
    font-size: 1.5rem;
    font-weight: 600;
}

.reviews-average .stars {
    color: #ED4944;
}

.reviews-average .review-count {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.btn-write-review {
    background: #ED4944;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-write-review:hover {
    background: #cc3f3a;
}


.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.review-card {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.review-card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.review-card-author strong {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

.review-card-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-card-rating {
    margin-bottom: 15px;
    color: #ED4944;
}

.review-card-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: #434960;
}


/* ===============================
   Contact & Map Section
   =============================== */
.contact-map-section {
    padding: 0;
}

.contact-map-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    /* Vertically align grid items */
}

.contact-details {
    padding: 0 18%;
    /* This creates the horizontal spacing */
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details h3 {
    font-size: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 1rem;
    text-align: left;
    /* Ensure text is left-aligned */
}

.contact-info-item i {
    font-size: 24px;
    color: var(--text-muted);
    margin-top: 5px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 550px;
    /* Adjusted height */
    border: 0;
}

/* ===============================
   Footer
   =============================== */
.footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    max-width: 100px;
    margin-bottom: 10px;
}

.footer p {
    color: #aaa;
    margin: 0;
    max-width: 500px;
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-socials a {
    color: #fff;
    font-size: 18px;
}

.footer-socials a:hover {
    color: #ccc;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-top: 30px;
    width: 100%;
    text-align: center;
    /* Ensures the container's text alignment is center */
}

.footer-bottom p {
    margin: 0 auto;
    /* Center the block */
    color: #aaa;
    max-width: none;
    /* Remove the max-width constraint inherited from .footer p */
}


/* ===============================
   Sub-Pages (Catering, Events, etc.)
   =============================== */
.page-hero {
    position: relative;
    height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.page-subtitle {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.3rem;
    color: #fff;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.split-section .text-content {
    padding-right: 20px;
}

.split-section .image-content img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.title-divider {
    width: 80px;
    height: 3px;
    background: var(--text-dark);
    border: none;
    margin: 0 auto 40px auto;
}

.catering-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.catering-service-item h3 {
    font-size: 1.5rem;
    margin-top: 20px;
}

/* Catering Form Fix */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    /* Increased gap */
}

.form-grid label {
    display: flex;
    flex-direction: column;
}

.form-grid input,
.form-grid textarea {
    padding: 12px;
    margin-top: 5px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

.form-grid .full-width {
    grid-column: 1 / -1;
    /* Make element span both columns */
}


/* Blog Page Specific */
.blog-hero {
    background: #1e1e1e;
    color: white;
    padding: 60px 0;
    text-align: center;
    padding-top: 160px;
    /* FIX: Add padding to avoid overlap with transparent header */
    padding-bottom: 60px;
}

.blog-listing-section {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    border: 1px solid var(--border-color);
    transition: box-shadow var(--transition-speed);
}

.blog-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h4 {
    font-size: 1.2rem;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    color: var(--text-dark);
}

/* ===============================
   Responsive
   =============================== */
@media (max-width: 1024px) {
    .header {
        background-color: #fff;
        position: fixed;
    }

    /* Make header solid on tablet/mobile for simplicity */
    .header-container {
        height: 80px;
    }

    .logo img {
        max-height: 60px;
    }

    .main-nav a,
    .header.scrolled .main-nav a,
    .mobile-menu-toggle,
    .header.scrolled .mobile-menu-toggle {
        color: var(--text-dark);
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-left.is-open {
        display: block;
    }

    .nav-right.is-open {
        display: block;
        top: 220px;
        /* Adjust as needed */
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }
}

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

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

    .hero-content h1 {
        letter-spacing: 8px;
    }

    .intro-grid,
    .split-section,
    .contact-map-grid {
        grid-template-columns: 1fr;
    }

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

    .intro-grid {
        gap: 40px;
    }

    .intro-media {
        order: -1;
    }

    .features-grid,
    .catering-tile-grid,
    .events-grid,
    .catering-service-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr !important;
    }

    /* Force single column on mobile */
    .reviews-header {
        flex-direction: column;
        gap: 20px;
    }

    .contact-map-grid {
        text-align: center;
    }

    .contact-details {
        padding: 60px 10%;
    }

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



    .form-grid .full-width {
        grid-column: 1;
    }
}

/* ===============================
   Order Page Styles
   =============================== */
body.modal-open {
    overflow: hidden;
    /* Prevent background scroll when modal is open */
}

.order-page-section .page-hero {
    display: none;
    /* Hide the hero section on the order page */
}

.order-page-section {
    padding: 140px 0 60px 0;
    background-color: #f7f7f7;
}

.order-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 30px;
}

.menu-column h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
}

.search-filter {
    position: relative;
    margin-bottom: 30px;
}

.search-filter i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

#menu-search {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    background-color: #fff;
}

.menu-category h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.menu-item-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
}

.menu-item-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.item-info h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.item-info p {
    font-size: 0.9rem;
    color: #777;
    margin: 5px 0 0 0;
}

.add-item-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    border: 1px solid #e0e0e0;
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    transition: background-color 0.2s;
}

.add-item-btn:hover {
    background-color: #e0e0e0;
}

/* Cart Styles */
.cart-column {
    position: relative;
}

.cart-sidebar {
    position: sticky;
    top: 120px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
}

.cart-sidebar h3 {
    font-family: 'Raleway', sans-serif;
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.delivery-pickup-toggle {
    display: flex;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    margin-bottom: 25px;
}

.delivery-pickup-toggle .toggle-option {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
}

.delivery-pickup-toggle .toggle-option.active {
    background-color: #000;
    color: #fff;
}

.cart-items-container {
    min-height: 100px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.cart-empty-message {
    text-align: center;
    color: #888;
    padding: 20px 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-details strong {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

.cart-item-details small {
    color: #777;
    font-size: 0.85rem;
}

.cart-item-qty {
    font-weight: 700;
    margin-right: 15px;
}

.cart-item-price {
    font-weight: 600;
}

.remove-item-btn {
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.2rem;
    margin-left: 10px;
    cursor: pointer;
}

.remove-item-btn:hover {
    color: #d9534f;
}


.cart-summary {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    margin-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.summary-row.total-row {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 15px;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}


/* Item Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    width: min(500px, 90%);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
}

#modal-item-name {
    font-size: 2rem;
    margin-bottom: 10px;
}

#modal-item-desc {
    color: #666;
    margin-bottom: 30px;
}

.modal-options-group {
    margin-bottom: 20px;
}

.modal-options-group h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.option-label {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 10px;
    cursor: pointer;
}

.option-label input {
    margin-right: 10px;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f7f7f7;
    padding: 20px;
    margin-top: 30px;
    border-radius: 8px;
}

.quantity-selector {
    display: flex;
    align-items: center;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.quantity-selector span {
    width: 50px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
}

#add-to-order-btn {
    padding: 12px 25px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
}

/* Responsive for Order Page */
@media (max-width: 992px) {
    .order-layout {
        grid-template-columns: 1fr;
    }

    .cart-column {
        margin-top: 40px;
    }

    .cart-sidebar {
        position: static;
        top: auto;
    }

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

/* Avatar Initials - Global Style */
.avatar-initials {
    width: 100%;
    height: 100%;
    background-color: #ED4944;
    /* Brand color */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1;
    margin: 0;
}

/* Event Card Styles - Fix Contrast */
.event-home-card h3,
.event-home-card h4,
.event-home-card p {
    color: #f8f8f8;
    /* Light text for dark background */
}