:root {
    --primary-gold: #D4A017;
    --luxury-gold: #F5C542;
    --dark-gold: #B8860B;
    --wine-red: #6A0D25;
    --deep-maroon: #4A071B;
    --dark-brown: #1A0F0A;
    --cream-white: #FDF6E3;
    
    --bg-dark: #0f0805;
    --text-main: #e0d0c1;
    --text-light: #ffffff;
    
    --glass-bg: rgba(26, 15, 10, 0.7);
    --glass-border: rgba(212, 160, 23, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    font-weight: 700;
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 15px;
}

/* Typography Helpers */
.text-gold { color: var(--primary-gold) !important; }
.text-wine { color: var(--wine-red) !important; }
.bg-dark-brown { background-color: var(--dark-brown) !important; }

/* Buttons */
.btn-premium {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--dark-gold), var(--primary-gold));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-premium:hover::before {
    opacity: 1;
}

.btn-premium:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4);
}

.btn-outline-premium {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-premium:hover {
    background: var(--primary-gold);
    color: var(--dark-brown);
}

/* Navbar */
.navbar {
    background: rgba(15, 8, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 160, 23, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.sticky-nav {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.navbar-brand img {
    height: 130px;
    margin-top: -25px;
    margin-bottom: -25px;
    transition: all 0.3s ease;
}

.navbar.sticky-nav .navbar-brand img {
    height: 90px;
    margin-top: -15px;
    margin-bottom: -15px;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(15, 8, 5, 0.9) 0%, rgba(15, 8, 5, 0.4) 100%);
    z-index: -1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--cream-white);
    margin-bottom: 40px;
    font-weight: 300;
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    margin: 15px auto 0;
}

.section-title p {
    color: var(--text-main);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards (Menu/Specials) */
.premium-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border-color: var(--primary-gold);
}

.premium-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.premium-card .card-body {
    padding: 25px;
    position: relative;
    background: linear-gradient(to bottom, transparent, var(--dark-brown));
}

.price-tag {
    position: absolute;
    top: -20px;
    right: 20px;
    background: var(--primary-gold);
    color: var(--dark-brown);
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--dark-brown);
    padding: 80px 0 30px;
    border-top: 2px solid var(--wine-red);
}

.footer-widget h4 {
    color: var(--primary-gold);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.footer-links list-style {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--glass-bg);
    color: var(--primary-gold);
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--dark-brown);
    transform: translateY(-3px);
}

/* Floating Booking Button & WhatsApp */
.floating-booking {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

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

.float-btn.booking {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
}

.float-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .section-padding { padding: 60px 0; }
}

/* Mobile Menu Categories */
.category-scroll-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 20px 0;
    scrollbar-width: none; /* Firefox */
}

.category-scroll-wrapper::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.sticky-categories {
    position: sticky;
    top: 70px;
    z-index: 1020;
    background: var(--bg-dark);
    padding-top: 15px;
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
    margin-bottom: 30px;
}

/* Clickable Menu Item - Superb Design */
.menu-item-card {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: 16px;
    padding: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.menu-item-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--primary-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item-card:active {
    transform: scale(0.97);
}

.menu-item-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border-color: rgba(212, 160, 23, 0.4) !important;
    background: rgba(212, 160, 23, 0.05);
}

.menu-item-card:hover::before {
    opacity: 1;
}

.menu-img-wrap {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(212, 160, 23, 0.2);
}

.menu-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: rgba(0,0,0,0.2);
    transition: transform 0.5s ease;
}

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

.menu-content {
    flex-grow: 1;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 2px;
    line-height: 1.2;
}

.menu-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.menu-desc {
    font-size: 0.85rem;
    color: rgba(224, 208, 193, 0.7);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    margin-top: 4px;
}

/* Category Grid for Mobile */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    padding: 10px 0;
}

.cat-btn {
    background: rgba(26, 15, 10, 0.8);
    border: 1px solid rgba(212, 160, 23, 0.2);
    color: var(--text-main);
    border-radius: 12px;
    padding: 12px 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.cat-btn.active, .cat-btn:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--dark-brown);
    border-color: var(--primary-gold);
    box-shadow: 0 5px 15px rgba(212, 160, 23, 0.4);
    transform: translateY(-2px);
}

/* Dish Details Modal */
.dish-modal .modal-content {
    background: var(--bg-dark);
    border: 1px solid var(--primary-gold);
    border-radius: 20px;
    overflow: hidden;
}

.dish-modal .modal-header {
    border-bottom: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 1rem;
}

.dish-modal .btn-close {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    opacity: 1;
}

.dish-modal-img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background-color: var(--dark-brown);
    border-bottom: 2px solid var(--primary-gold);
}

/* Suggested Item Mini Card */
.suggested-item-card {
    background: var(--dark-brown);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.suggested-item-card:hover {
    background: rgba(212, 160, 23, 0.1);
}

.suggested-item-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: contain;
    background-color: rgba(0,0,0,0.2);
}
