/**
 * Grand Lucky Restaurant - Main Stylesheet
 * South Indian Theme - Black, Gold, Red
 */

/* ===== CSS Variables ===== */
:root {
    /* Primary Colors */
    --primary-gold: #D4AF37;
    --primary-gold-light: #F4E4BA;
    --primary-gold-dark: #B8960C;
    --primary-red: #C41E3A;
    --primary-red-dark: #8B0000;
    
    /* Background Colors */
    --bg-dark: #0D0D0D;
    --bg-darker: #000000;
    --bg-card: #1A1A1A;
    --bg-card-light: #2A2A2A;
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #B3B3B3;
    --text-muted: #808080;
    --text-gold: #D4AF37;
    
    /* Accent Colors */
    --success: #28A745;
    --warning: #FFC107;
    --error: #DC3545;
    --info: #17A2B8;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E4BA 50%, #D4AF37 100%);
    --gradient-dark: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-script: 'Great Vibes', cursive;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
}

/* Light Mode */
body.light-mode {
    --bg-dark: #F5F5F5;
    --bg-darker: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-card-light: #F0F0F0;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #808080;
}

/* ===== Reset & Base Styles ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul, ol {
    list-style: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader img {
    width: 120px;
    height: 120px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-text {
    margin-top: 20px;
    color: var(--primary-gold);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

/* ===== Floating Buttons ===== */
.floating-buttons {
    position: fixed;
    right: 25px;
    bottom: 100px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

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

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

.call-btn {
    background: var(--primary-gold);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--primary-gold);
    color: var(--bg-darker);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-5px);
}

/* ===== Header Styles ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* Top Bar */
.top-bar {
    background: var(--bg-darker);
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-left span {
    font-size: 13px;
    color: var(--text-secondary);
}

.top-bar-left span i {
    color: var(--primary-gold);
    margin-right: 8px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--primary-gold);
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--bg-darker);
}

.dark-mode-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Navigation */
.main-nav {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: var(--transition-normal);
}

.main-nav.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo img {
    height: 70px;
    transition: var(--transition-normal);
}

.main-nav.scrolled .logo img {
    height: 55px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-normal);
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-btn, .cart-btn, .user-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 16px;
    position: relative;
}

.search-btn:hover, .cart-btn:hover, .user-btn:hover {
    background: var(--primary-gold);
    color: var(--bg-darker);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    background: var(--primary-red);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-order-btn {
    padding: 12px 25px !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-normal);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 90%;
    max-width: 600px;
    position: relative;
}

.search-container form {
    display: flex;
    border-bottom: 2px solid var(--primary-gold);
}

.search-container input {
    flex: 1;
    padding: 20px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    outline: none;
}

.search-container input::placeholder {
    color: var(--text-muted);
}

.search-container button {
    padding: 20px;
    color: var(--primary-gold);
    font-size: 24px;
}

.close-search {
    position: absolute;
    top: -60px;
    right: 0;
    color: var(--text-primary);
    font-size: 30px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--bg-darker);
}

.btn-primary:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--bg-darker);
}

.btn-red {
    background: var(--primary-red);
    color: #fff;
}

.btn-red:hover {
    background: var(--primary-red-dark);
}

/* ===== Section Styles ===== */
.section {
    padding: var(--section-padding);
}

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

.section-subtitle {
    font-family: var(--font-script);
    font-size: 28px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
}

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

/* ===== Hero Section ===== */
.hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    height: 100%;
    position: relative;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    padding: 0 30px;
}

.hero-subtitle {
    font-family: var(--font-script);
    font-size: 36px;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Pagination */
.hero-pagination {
    position: absolute;
    bottom: 40px !important;
    z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--primary-gold);
}

/* ===== Welcome Section ===== */
.welcome-section {
    padding: var(--section-padding);
    background: var(--bg-card);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.welcome-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.welcome-img:first-child {
    grid-column: span 2;
}

.welcome-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.welcome-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-gold);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    text-align: center;
}

.welcome-badge span {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--bg-darker);
}

.welcome-badge small {
    font-size: 12px;
    color: var(--bg-darker);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.welcome-content h5 {
    font-family: var(--font-script);
    font-size: 28px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.welcome-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--text-primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.welcome-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.welcome-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.welcome-feature i {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
}

.welcome-feature span {
    font-weight: 500;
    color: var(--text-primary);
}

/* ===== Featured Menu Section ===== */
.featured-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.menu-tab {
    padding: 12px 30px;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-normal);
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--primary-gold);
    color: var(--bg-darker);
    border-color: var(--primary-gold);
}

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

/* Menu Card */
.menu-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.menu-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.menu-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge {
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-veg {
    background: #28A745;
    color: #fff;
}

.badge-nonveg {
    background: var(--primary-red);
    color: #fff;
}

.badge-spicy {
    background: #FF6B35;
    color: #fff;
}

.badge-bestseller {
    background: var(--primary-gold);
    color: var(--bg-darker);
}

.badge-new {
    background: #17A2B8;
    color: #fff;
}

.menu-card-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition-normal);
}

.menu-card:hover .menu-card-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 14px;
}

.action-btn:hover {
    background: var(--primary-gold);
    color: var(--bg-darker);
}

.menu-card-content {
    padding: 25px;
}

.menu-card-category {
    font-size: 12px;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.menu-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.menu-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-muted);
}

.meta-item i {
    color: var(--primary-gold);
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-price {
    display: flex;
    align-items: center;
    gap: 6px;
}

.riyal-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

.riyal-icon.riyal-sm {
    width: 14px;
    height: 14px;
}

.riyal-icon.riyal-lg {
    width: 28px;
    height: 28px;
}

.riyal-icon.riyal-xl {
    width: 36px;
    height: 36px;
}

.price-current {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    gap: 4px;
}

.price-old {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
    display: flex;
    align-items: center;
    gap: 4px;
}

.price-old .riyal-icon {
    filter: grayscale(100%) opacity(0.5);
}

.add-to-cart-btn {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    background: var(--primary-gold);
    color: var(--bg-darker);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.add-to-cart-btn:hover {
    background: var(--primary-gold-dark);
    transform: scale(1.1);
}

/* ===== Chef Special Section ===== */
.chef-section {
    padding: var(--section-padding);
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
}

.chef-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23D4AF37" opacity="0.03"><circle cx="50" cy="50" r="40"/></svg>');
    background-size: 200px;
}

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

.chef-card {
    display: flex;
    gap: 20px;
    background: var(--bg-dark);
    padding: 25px;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.chef-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-gold);
}

.chef-card-img {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
}

.chef-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chef-card-content {
    flex: 1;
}

.chef-card-content h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.chef-card-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.chef-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chef-card-footer .price {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary-gold);
}

/* ===== Popular Items Carousel ===== */
.popular-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.popular-slider {
    padding: 20px 0 60px;
}

.popular-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
}

.popular-card-img {
    height: 200px;
    overflow: hidden;
}

.popular-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.popular-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text-primary);
    margin: 20px 0 10px;
    padding: 0 20px;
}

.popular-card .price {
    font-size: 22px;
    color: var(--primary-gold);
    font-weight: 700;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: var(--section-padding);
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920') center/cover;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    text-align: center;
    padding: 40px;
}

.testimonial-quote {
    font-size: 60px;
    color: var(--primary-gold);
    opacity: 0.3;
    margin-bottom: -20px;
}

.testimonial-text {
    font-size: 20px;
    color: var(--text-primary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--primary-gold);
    font-size: 20px;
    margin: 0 3px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 3px solid var(--primary-gold);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h5 {
    font-size: 18px;
    color: var(--text-primary);
}

.testimonial-info span {
    font-size: 14px;
    color: var(--primary-gold);
}

/* ===== Gallery Section ===== */
.gallery-section {
    padding: var(--section-padding);
    background: var(--bg-card);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

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

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

.gallery-overlay i {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-darker);
    font-size: 20px;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(196, 30, 58, 0.9), rgba(139, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1920') center/cover fixed;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== Footer Styles ===== */
.newsletter-section {
    background: var(--primary-gold);
    padding: 50px 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.newsletter-text h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--bg-darker);
    margin-bottom: 5px;
}

.newsletter-text p {
    color: rgba(0, 0, 0, 0.7);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 15px 25px;
    border: none;
    border-radius: var(--radius-md);
    width: 300px;
    font-size: 15px;
}

.newsletter-form .btn {
    background: var(--bg-darker);
    color: var(--primary-gold);
}

.newsletter-form .btn:hover {
    background: var(--bg-card);
}

.footer-main {
    background: var(--bg-darker);
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-logo img {
    height: 100px;
    margin-bottom: 20px;
}

.footer-about {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: var(--transition-normal);
}

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

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-gold);
}

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

.footer-links a {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a i {
    color: var(--primary-gold);
    font-size: 12px;
}

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

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.footer-contact i {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.footer-bottom {
    background: var(--bg-darker);
    padding: 20px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 14px;
}

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

/* ===== Page Header ===== */
.page-header {
    padding: 180px 0 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1920') center/cover;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--primary-gold);
}

/* ===== Menu Page ===== */
.menu-page {
    padding: var(--section-padding);
}

.menu-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    color: var(--bg-darker);
    border-color: var(--primary-gold);
}

.menu-search {
    max-width: 500px;
    margin: 0 auto 40px;
}

.menu-search form {
    display: flex;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.menu-search input {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    outline: none;
}

.menu-search button {
    padding: 15px 25px;
    background: var(--primary-gold);
    color: var(--bg-darker);
}

/* ===== Cart Page ===== */
.cart-page {
    padding: var(--section-padding);
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.cart-items {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.cart-item-details h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cart-item-details p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.cart-item-price {
    color: var(--primary-gold);
    font-weight: 600;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: var(--radius-sm);
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input {
    width: 50px;
    text-align: center;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    padding: 5px;
}

.remove-item {
    color: var(--primary-red);
    font-size: 18px;
}

/* Cart Summary */
.cart-summary {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 150px;
}

.cart-summary h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.summary-row.total {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 20px;
}

.summary-row.total span:last-child {
    color: var(--primary-gold);
}

.coupon-form {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.coupon-form input {
    flex: 1;
    padding: 12px 15px;
    background: var(--bg-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
}

.checkout-btn {
    width: 100%;
    margin-top: 20px;
}

/* ===== Forms ===== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    transition: var(--transition-normal);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ===== Contact Page ===== */
.contact-page {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.contact-card i {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-gold);
    margin: 0 auto 15px;
}

.contact-card h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.map-container {
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 52px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-darker);
        flex-direction: column;
        padding: 100px 40px;
        transition: var(--transition-normal);
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-order-btn {
        display: none;
    }
    
    .welcome-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-container {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .welcome-features {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-btns {
        flex-direction: column;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .floating-buttons {
        right: 15px;
        bottom: 80px;
    }
    
    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}
