:root {
    --primary-color: #d4af37;
    --secondary-color: #1a1a1a;
    --accent-color: #ff6b6b;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* HEADER SECTION */
.header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d2d2d 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 0;
    margin-top: 0;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse 15s infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.header .navbar {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d2d2d 100%);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all 0.3s;
    margin: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar-sticky {
    padding: 10px 0 !important;
}

.navbar-sticky .navbar-logo {
    height: 50px;
}

.header .navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s;
    border-radius: 5px;
}

.header .navbar-dark .navbar-nav .nav-link:hover,
.header .navbar-dark .navbar-nav .nav-link.active {
    color: white;
    background: rgba(212, 175, 55, 0.3);
}

.navbar-logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

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

.brand-text {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header-content {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    margin-top: 90px;
}

.header-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.header .gold-line {
    width: 100px;
    height: 3px;
    background: var(--primary-color);
    margin: 20px auto;
}

/* ORDER PANEL */
.order-panel {
    background: linear-gradient(135deg, #d4af37 0%, #c99b2e 100%);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: sticky;
    top: 90px;
    z-index: 998;
    overflow: hidden;
    transition: all 0.3s;
}

.order-panel.navbar-compact {
    top: 70px;
    padding: 15px 0;
}

.order-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 10s infinite;
    pointer-events: none;
}

.order-panel h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.btn-order-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: white;
    color: #333;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.btn-order-main:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    background: var(--primary-color);
    color: white;
}

.btn-order-main i {
    font-size: 1.2rem;
}

/* FEATURED ITEMS CAROUSEL */
.featured-items-carousel {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}

.featured-items-carousel h3 {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.featured-items-carousel h3 i {
    color: var(--primary-color);
}

.featured-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.featured-slider {
    display: flex;
    gap: 20px;
    animation: scroll-left 180s linear infinite;
    width: fit-content;
}

.featured-slider.paused {
    animation-play-state: paused !important;
}

.featured-slider:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c99b2e 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-play-pause {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.play-pause-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.play-pause-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.featured-item-card {
    flex: 0 0 240px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.featured-item-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.featured-item-image {
    width: 100%;
    height: 160px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

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

.featured-item-card:hover .featured-item-image img {
    transform: scale(1.15);
}

.featured-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ccc;
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.featured-item-content {
    padding: 12px 15px;
    text-align: center;
}

.featured-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
}

.featured-item-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 6px 0;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.featured-item-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 8px 0;
}

.btn-featured-order {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-featured-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

/* CATEGORIES NAVIGATION */
.categories-nav {
    background: white;
    padding: 20px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 170px;
    z-index: 997;
    transition: all 0.3s;
}

.categories-nav.navbar-compact {
    top: 130px;
    padding: 15px 0;
}

.categories-nav h3 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.categories-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.category-btn {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* MENU SECTIONS */
.category-section {
    padding: 45px 0;
    background: var(--bg-light);
}

.category-section:nth-child(even) {
    background: white;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.menu-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.menu-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s;
}

.menu-card:hover .menu-card-img {
    transform: scale(1.1);
}

.menu-card-img-wrapper {
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
}

.menu-card-body {
    padding: 18px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.menu-card-description {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 10px;
}

.menu-card-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.btn-order-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 9px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-order-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.badge-featured {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 1;
}

.no-image {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ccc;
}

/* ABOUT SECTION */
.about-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.about-image {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 400px;
    display: block;
    margin: 0 auto;
}

.about-feature {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-feature h5 {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}
/* ELEGANT STAFF SECTION */
.elegant-staff-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
    position: relative;
}

.staff-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

.staff-carousel {
    display: flex;
    gap: 30px;
    animation: scroll-staff 120s linear infinite;
    width: fit-content;
    padding: 0 20px;
}

.staff-carousel.paused {
    animation-play-state: paused !important;
}

.staff-carousel:hover {
    animation-play-state: paused;
}

@keyframes scroll-staff {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.elegant-staff-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.elegant-staff-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.elegant-staff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.elegant-staff-card:hover::before {
    opacity: 1;
}

.staff-photo-container {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e9ecef 100%);
}

.elegant-staff-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: grayscale(20%);
}

.elegant-staff-card:hover .elegant-staff-photo {
    transform: scale(1.25);
    filter: grayscale(0%);
}

.staff-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #d0d0d0;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.elegant-staff-card:hover .photo-overlay {
    opacity: 1;
}

.elegant-staff-name {
    padding: 25px 20px;
    text-align: center;
    background: white;
    position: relative;
    z-index: 2;
}

.elegant-staff-name h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
}

.elegant-staff-name h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #c99b2e 100%);
    border-radius: 2px;
    transition: transform 0.4s ease;
}

.elegant-staff-card:hover .elegant-staff-name h4::after {
    transform: translateX(-50%) scaleX(1);
}

.staff-title {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    opacity: 0.9;
}

.staff-carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.staff-nav-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c99b2e 100%);
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.staff-nav-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.staff-nav-btn:hover::before {
    width: 100%;
    height: 100%;
}

.staff-nav-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.staff-nav-btn:active {
    transform: scale(0.95);
}

.staff-nav-btn i {
    position: relative;
    z-index: 1;
}

.staff-play-pause {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.staff-control-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.staff-control-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

.elegant-staff-section::before,
.elegant-staff-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.elegant-staff-section::before {
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.elegant-staff-section::after {
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.elegant-staff-card:hover .elegant-staff-name {
    background: linear-gradient(90deg, 
        rgba(255,255,255,1) 0%, 
        rgba(248,249,250,1) 50%, 
        rgba(255,255,255,1) 100%);
    background-size: 1000px 100%;
    animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* CONTACT SECTION */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-info-card h4,
.contact-info-card h5 {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-info-card a {
    color: var(--primary-color);
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: var(--secondary-color);
}

.social-icons-large a {
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s;
}

.social-icons-large a:hover {
    transform: translateY(-2px);
}

.contact-form-card {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form-card .form-control {
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
}

.contact-form-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.contact-form-card .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c99b2e 100%);
    border: none;
    border-radius: 25px;
    transition: transform 0.3s;
}

.contact-form-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* FOOTER */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--primary-color);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: white;
}

.map-container {
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* ORDER MODAL */
.order-modal .modal-content {
    border-radius: 25px;
    border: none;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.order-modal .modal-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d2d2d 100%);
    color: white;
    padding: 30px;
    border: none;
}

.order-modal .modal-header h5 {
    font-weight: 700;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.order-modal .modal-body {
    padding: 40px 35px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.order-modal .item-info {
    text-align: center;
    margin-bottom: 35px;
    padding: 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.order-modal .item-info h4 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.order-modal .item-info .price {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.order-modal .order-option {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid;
    position: relative;
    overflow: hidden;
}

.order-modal .order-option:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.order-modal .order-option i {
    font-size: 2rem;
    margin-right: 15px;
}

.order-modal .order-option span {
    font-weight: 700;
    font-size: 1.2rem;
}

.order-modal .order-option.toast {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c99b2e 100%);
    border-color: var(--primary-color);
    color: white;
}

.order-modal .order-option.ubereats {
    background: linear-gradient(135deg, #06c167 0%, #2dd284 100%);
    border-color: #06c167;
    color: white;
}

.order-modal .order-option.doordash {
    background: linear-gradient(135deg, #ff3008 0%, #ff5538 100%);
    border-color: #ff3008;
    color: white;
}

.order-modal .order-option.crimson2go {
    background: linear-gradient(135deg, #9E1B32 0%, #c72a42 100%);
    border-color: #9E1B32;
    color: white;
}

.order-modal .order-option.grubhub {
    background: linear-gradient(135deg, #ff8000 0%, #ffa040 100%);
    border-color: #ff8000;
    color: white;
}

.order-modal .order-option.custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
}

/* NOTIFICATION BOX */
.notification-box {
    position: fixed;
    top: 100px;
    right: 30px;
    min-width: 350px;
    max-width: 500px;
    padding: 20px 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

.notification-box.show {
    display: block;
}

.notification-box.success {
    border-left: 5px solid #28a745;
}

.notification-box.error {
    border-left: 5px solid #dc3545;
}

.notification-content {
    display: flex;
    align-items: start;
    gap: 15px;
}

.notification-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.notification-box.success .notification-icon {
    color: #28a745;
}

.notification-box.error .notification-icon {
    color: #dc3545;
}

.notification-text h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.notification-text p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.notification-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
}

.notification-close:hover {
    color: #333;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .notification-box {
        top: 80px;
        right: 15px;
        left: 15px;
        min-width: auto;
    }
    
    .header-content {
        padding: 40px 0;
        margin-top: 70px;
    }
    
    .header-content h1 {
        font-size: 2rem;
    }
    
    .header-content p {
        font-size: 1rem;
    }
    
    .order-panel {
        padding: 15px 0;
        top: 70px;
    }
    
    .order-panel h3 {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .btn-order-main {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .featured-items-carousel {
        padding: 30px 0;
    }
    
    .featured-item-card {
        flex: 0 0 200px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .categories-nav {
        padding: 15px 0;
        top: 135px;
    }
    
    .category-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .menu-card-img {
        height: 180px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Staff Mobile */
    .elegant-staff-section {
        padding: 50px 0;
    }
    
    .elegant-staff-card {
        flex: 0 0 220px;
    }
    
    .staff-photo-container {
        height: 260px;
    }
    
    .elegant-staff-name {
        padding: 20px 15px;
    }
    
    .elegant-staff-name h4 {
        font-size: 1.1rem;
    }
    
    .staff-title {
        font-size: 0.8rem;
    }
    
    .staff-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .staff-control-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    
    .staff-carousel {
        gap: 20px;
    }
}