/* ============================================ */
/* RESTAURANT THEME - HEADER & FOOTER STYLES   */
/* ============================================ */


.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><circle cx="30" cy="30" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.5;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(3rem, 5vw, 4rem);
    color: var(--white);
    font-weight: 800;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Top Bar Styles */
.restaurant-topbar {
    background: var(--dark-color, #422006);
    color: white;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--accent-color, #f59e0b);
    transition: all 0.3s ease-in-out;
   
}


.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.topbar-hours {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.topbar-phone {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.topbar-phone:hover {
    color: var(--accent-color, #f59e0b);
}

.topbar-social-links {
    display: flex;
    gap: 1rem;
}

.topbar-social-links a {
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.topbar-social-links a:hover {
    background: var(--accent-color, #f59e0b);
    color: white !important;
    transform: translateY(-2px);
}

/* Main Header Styles */
.restaurant-header {
    background: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.restaurant-header.sticky {
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header-logo img {
    height: 60px;
    width: auto;
    transition: height 0.3s ease;
}

.restaurant-header.sticky .header-logo img {
    height: 50px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color, #a16207);
    text-decoration: none;
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Main Navigation List */
.nav-list,
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

/* Main Navigation Links */
.nav-link {
    color: var(--dark-color, #422006);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    display: block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color, #f59e0b);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color, #f59e0b);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Items with Submenu */
.has-submenu > .nav-link::before {
    content: '▾';
    margin-left: 5px;
    font-size: 0.8em;
    transition: transform 0.3s ease;
    display: inline-block;
}

.has-submenu:hover > .nav-link::before {
    transform: rotate(180deg);
}

/* Submenu Dropdown */
.nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-submenu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.05);
}

.has-submenu:hover .nav-submenu,
.nav-item:focus-within .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-submenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-submenu li {
    padding: 0;
}

.submenu-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--dark-color, #422006);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.submenu-link:hover {
    background: var(--accent-color, #f59e0b);
    color: white;
    padding-left: 2rem;
}

.submenu-link.active {
    color: var(--accent-color, #f59e0b);
    font-weight: 600;
}

/* Mobile Navigation - Add these to your existing mobile styles */
@media (max-width: 1024px) {
    .mobile-menu .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .mobile-menu .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .mobile-menu .nav-link {
        padding: 1rem 1.5rem;
        color: var(--dark-color, #422006);
    }
    
    .mobile-menu .nav-link::after {
        display: none;
    }
    
    .mobile-menu .has-submenu > .nav-link::before {
        float: right;
        margin-left: 0;
    }
    
    /* Mobile Submenu */
    .mobile-menu .nav-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.05);
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 0;
    }
    
    .mobile-menu .nav-submenu::before {
        display: none;
    }
    
    .mobile-menu .has-submenu.open .nav-submenu {
        max-height: 500px;
    }
    
    .mobile-menu .submenu-link {
        padding: 0.75rem 1.5rem 0.75rem 3rem;
        color: var(--dark-color, #422006);
    }
    
    .mobile-menu .submenu-link:hover {
        background: var(--accent-color, #f59e0b);
        color: white;
        padding-left: 3rem;
    }
}

.header-cta {
    display: flex;
    gap: 1rem;
}

.header-cta .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-order {
    background: var(--secondary-color, #c2410c);
    color: white;
    border: 2px solid var(--secondary-color, #c2410c);
}

.btn-order:hover {
    background: var(--secondary-dark, #9a3412);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(194, 65, 12, 0.3);
}

.btn-reservation {
    background: var(--accent-color, #f59e0b);
    color: var(--dark-color, #422006);
    border: 2px solid var(--accent-color, #f59e0b);
}

.btn-reservation:hover {
    background: var(--accent-light, #fbbf24);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color, #a16207);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 1.5rem;
    background: var(--primary-color, #a16207);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--dark-color, #422006);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background: var(--cream, #fffbeb);
    color: var(--accent-color, #f59e0b);
    padding-left: 2rem;
}

.mobile-menu-cta {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.mobile-menu-contact {
    padding: 1.5rem;
    border-top: 2px solid #eee;
}

.mobile-menu-contact a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-color, #422006);
    text-decoration: none;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mobile-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.mobile-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color, #f59e0b);
    color: var(--dark-color, #422006);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-social a:hover {
    background: var(--primary-color, #a16207);
    color: white;
    transform: translateY(-3px);
}

/* Footer Styles */
.restaurant-footer {
    background: var(--dark-color, #422006);
    color: white;
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold, #fcd34d);
    margin-bottom: 1rem;
}

.footer-description {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-color, #f59e0b);
    color: var(--dark-color, #422006);
    transform: translateY(-3px);
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--accent-gold, #fcd34d);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hours-list,
.contact-list,
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-list .day {
    font-weight: 600;
}

.hours-list .time {
    color: var(--accent-light, #fbbf24);
}

.hours-note {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.1);
    border-left: 3px solid var(--accent-color, #f59e0b);
    font-size: 0.9rem;
}

.contact-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-list i {
    font-size: 1.25rem;
    color: var(--accent-color, #f59e0b);
    margin-top: 0.25rem;
}

.contact-list a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: var(--accent-color, #f59e0b);
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--accent-color, #f59e0b);
    padding-left: 0.5rem;
}

.newsletter-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.newsletter-box h5 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold, #fcd34d);
    margin-bottom: 0.5rem;
}

.newsletter-box p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    width: 45px;
    height: 45px;
    border: none;
    background: var(--accent-color, #f59e0b);
    color: var(--dark-color, #422006);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-light, #fbbf24);
    transform: scale(1.1);
}

.delivery-partners {
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partners-title {
    margin-bottom: 1rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.partners-logos a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.partners-logos a:hover {
    border-color: var(--accent-color, #f59e0b);
    color: var(--accent-color, #f59e0b);
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    margin: 0;
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--accent-color, #f59e0b);
}

.testimonial-card {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border: 2px solid var(--border-light);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: white;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.testimonial-card::after {
    content: '✦';
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-size: 1.5rem;
    color: var(--accent-color);
    opacity: 0.1;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-10px) rotate(0.5deg);
    box-shadow: var(--shadow-2xl);
    border-color: var(--border-warm);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover::after {
    opacity: 0.3;
    transform: rotate(15deg) scale(1.2);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-color, #f59e0b);
    color: var(--dark-color, #422006);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-light, #fbbf24);
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.4);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-cta .btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .restaurant-topbar {
        padding: 0.5rem 0;
        font-size: 0.85rem;
    }
    
    .topbar-content {
        flex-direction: column;
        text-align: center;
    }
    
    .topbar-right {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-cta {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .header-logo img {
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

/* ============================================ */
/* MENU / SHOP STYLES - COMPONENT STRUCTURE   */
/* ============================================ */

/* Cart Badge */
.cart-badge {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--success-color, #28a745);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px var(--success-shadow, rgba(40, 167, 69, 0.4));
    z-index: 1000;
    transition: all 0.3s;
}

.cart-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px var(--success-shadow-hover, rgba(40, 167, 69, 0.5));
}

#cart-count {
    background: white;
    color: var(--success-color, #28a745);
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 8px;
    font-weight: 700;
}

/* Menu Categories */
.menu-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--heading-color, #333);
    font-family: var(--heading-font, inherit);
}

.category-description {
    color: var(--text-muted, #666);
    margin-bottom: 30px;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

/* Menu Item Card */
.menu-item-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-light, #f0f0f0);
}

.menu-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px var(--card-shadow-hover, rgba(0,0,0,0.15));
    border-color: var(--accent-color, #f59e0b);
}

.item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--image-bg, #f5f5f5);
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.menu-item-card:hover .item-image img {
    transform: scale(1.05);
}

.item-content {
    padding: 20px;
}

.item-name {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--heading-color, #333);
    font-weight: 600;
}

.item-description {
    color: var(--text-muted, #666);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Dietary Tags */
.dietary-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tag {
    background: var(--tag-bg, #e7f3ff);
    color: var(--tag-color, #0066cc);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.tag.vegetarian { 
    background: var(--tag-vegetarian-bg, #e8f5e9); 
    color: var(--tag-vegetarian-color, #2e7d32); 
}

.tag.vegan { 
    background: var(--tag-vegan-bg, #fff3e0); 
    color: var(--tag-vegan-color, #ef6c00); 
}

.tag.spicy { 
    background: var(--tag-spicy-bg, #ffebee); 
    color: var(--tag-spicy-color, #c62828); 
}

/* Item Footer */
.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-light, #f0f0f0);
}

.item-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--price-color, #28a745);
}

/* Add to Cart Button */
.btn-add-to-cart {
    background: var(--btn-primary-bg, #007bff);
    color: var(--btn-primary-color, white);
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-to-cart:hover {
    background: var(--btn-primary-hover, #0056b3);
    transform: translateY(-2px);
}

.btn-add-to-cart:active {
    transform: translateY(0);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.empty-state h3 {
    color: var(--heading-color, #333);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-muted, #666);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-badge {
        top: 10px;
        right: 10px;
        padding: 12px 20px;
    }
    
    .category-title {
        font-size: 24px;
    }
}

/* ============================================ */
/* RESTAURANT HERO - WITH CSS VARIABLES        */
/* Structure in components, colors in themes   */
/* ============================================ */

.restaurant-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

/* Gradient Overlay - Uses theme variables */
.restaurant-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        var(--hero-gradient-start, rgba(161, 98, 7, 0.9)), 
        var(--hero-gradient-end, rgba(194, 65, 12, 0.7))
    );
}

.restaurant-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hero-overlay-bg, rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.restaurant-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--hero-text-color, white);
    padding: 2rem;
}

.restaurant-hero-subtitle {
    font-family: var(--script-font, 'Dancing Script', cursive);
    font-size: 1.5rem;
    color: var(--hero-subtitle-color, #fcd34d);
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.restaurant-hero-title {
    font-family: var(--heading-font, 'Playfair Display', serif);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--hero-title-color, white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.restaurant-hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--hero-description-color, white);
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.restaurant-hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.restaurant-hero-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.restaurant-hero-cta .btn-primary {
    background: var(--hero-btn-primary-bg, var(--accent-color, #f59e0b));
    border: 2px solid var(--hero-btn-primary-border, var(--accent-color, #f59e0b));
    color: var(--hero-btn-primary-color, var(--dark-color, #422006));
    box-shadow: 0 4px 15px var(--hero-btn-primary-shadow, rgba(245, 158, 11, 0.4));
}

.restaurant-hero-cta .btn-primary:hover {
    background: var(--hero-btn-primary-hover, var(--accent-light, #fbbf24));
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--hero-btn-primary-shadow-hover, rgba(245, 158, 11, 0.5));
}

.restaurant-hero-cta .btn-outline-light {
    background: transparent;
    border: 2px solid var(--hero-btn-outline-border, white);
    color: var(--hero-btn-outline-color, white);
}

.restaurant-hero-cta .btn-outline-light:hover {
    background: var(--hero-btn-outline-hover-bg, white);
    color: var(--hero-btn-outline-hover-color, var(--primary-color, #a16207));
    transform: translateY(-3px);
}

.restaurant-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--hero-scroll-color, white);
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@media (max-width: 768px) {
    .restaurant-hero-title {
        font-size: 2.5rem;
    }
    
    .restaurant-hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .restaurant-hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
}