/* Main CSS Styles for Delight Pizza & Ice Bar - Updated to match physical menu */

:root {
    /* Brown Theme Colors - Matching Physical Menu */
    --primary-color: #8B4513; /* Saddle Brown */
    --secondary-color: #D2691E; /* Chocolate */
    --accent-color: #F4E4BC; /* Cream */
    --dark-bg: #3D2914; /* Dark Brown - Main Background */
    --darker-bg: #2F1F0F; /* Darker Brown */
    --brown-dark: #2A1B0C; /* Even Darker Brown */
    --brown-light: #4A3118; /* Lighter Brown */
    --brown-medium: #35250F; /* Medium Brown */
    --light-bg: #F5F5DC; /* Beige */
    --text-light: #F4E4BC; /* Cream Text */
    --text-dark: #2F1F0F; /* Dark Brown Text */
    --text-gold: #FFD700; /* Gold Accent */
    --text-orange: #FF8C00; /* Dark Orange */
    --border-brown: #8B4513;
    --success-color: #228B22;
    --warning-color: #FFD700;
    --danger-color: #DC143C;
    --info-color: #4682B4;
    
    /* Compact sizing variables */
    --header-height: 60px;
    --small-padding: 8px;
    --medium-padding: 12px;
    --large-padding: 16px;
    --small-font: 0.8rem;
    --medium-font: 0.9rem;
    --large-font: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Comic Sans MS', 'Arial', cursive, sans-serif;
    line-height: 1.4;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    font-size: var(--medium-font);
    position: relative;
}

/* Add star decorations like in the menu */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--accent-color), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--text-gold), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--accent-color), transparent),
        radial-gradient(1px 1px at 130px 80px, var(--text-gold), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    opacity: 0.1;
    pointer-events: none;
    z-index: -1;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(61, 41, 20, 0.3);
    border-bottom: 2px solid var(--accent-color);
    backdrop-filter: blur(10px);
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--medium-padding);
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--small-padding) 0;
    min-height: var(--header-height);
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: var(--small-padding);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    padding: 10px 18px;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--brown-light) 0%, var(--brown-medium) 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 
                inset 0 1px 0 rgba(244, 228, 188, 0.1);
    position: relative;
}

.logo::before {
    content: '★';
    position: absolute;
    left: -8px;
    top: -8px;
    color: var(--text-gold);
    font-size: 0.8rem;
    animation: twinkle 2s infinite;
}

.logo::after {
    content: '★';
    position: absolute;
    right: -8px;
    bottom: -8px;
    color: var(--text-gold);
    font-size: 0.6rem;
    animation: twinkle 2s infinite 1s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.logo:hover {
    color: var(--text-gold);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    transform: scale(1.02);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.logo i {
    font-size: 1.3rem;
    color: var(--text-gold);
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
    padding: 6px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 
                inset 0 1px 0 rgba(244, 228, 188, 0.1);
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.header-info {
    display: flex;
    align-items: center;
    gap: var(--large-padding);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: var(--medium-padding);
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--small-font);
    font-weight: 500;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--brown-medium) 0%, var(--brown-light) 100%);
    padding: 6px 10px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2), 
                inset 0 1px 0 rgba(244, 228, 188, 0.05);
}

.contact-item:hover {
    background: linear-gradient(135deg, var(--brown-light) 0%, var(--brown-medium) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(244, 228, 188, 0.1);
}

.contact-item i {
    color: var(--text-gold);
    font-size: var(--small-font);
}

.user-actions {
    display: flex;
    align-items: center;
    gap: var(--small-padding);
}

.btn {
    padding: 6px 12px;
    border: none;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--small-font);
    line-height: 1.2;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brown-light) 0%, var(--brown-medium) 100%);
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 
                inset 0 1px 0 rgba(244, 228, 188, 0.1);
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--brown-medium) 0%, var(--brown-light) 100%);
    color: var(--text-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), 
                inset 0 1px 0 rgba(244, 228, 188, 0.15);
}

.btn-secondary {
    background: linear-gradient(135deg, transparent 0%, rgba(74, 49, 24, 0.3) 100%);
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 
                inset 0 1px 0 rgba(244, 228, 188, 0.05);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--brown-medium) 0%, var(--brown-light) 100%);
    color: var(--text-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 
                inset 0 1px 0 rgba(244, 228, 188, 0.1);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, var(--text-gold) 0%, var(--text-orange) 100%);
    color: var(--dark-bg);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    padding: 6px 0;
    backdrop-filter: blur(5px);
    border-top: 1px solid var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--large-padding);
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    font-size: var(--small-font);
    background: linear-gradient(135deg, transparent 0%, rgba(74, 49, 24, 0.2) 100%);
    box-shadow: inset 0 1px 0 rgba(244, 228, 188, 0.05);
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, var(--brown-light) 0%, var(--brown-medium) 100%);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 
                inset 0 1px 0 rgba(244, 228, 188, 0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, 
                var(--brown-dark) 0%, 
                var(--dark-bg) 40%, 
                var(--brown-light) 100%),
                url('images/hero-bg.jpg') center/cover;
    min-height: 40vh;
    display: flex;
    align-items: center;
    color: var(--text-light);
    text-align: center;
    position: relative;
    box-shadow: inset 0 -3px 0 rgba(244, 228, 188, 0.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(244, 228, 188, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: var(--medium-padding);
    color: var(--accent-color);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    font-family: 'Comic Sans MS', cursive;
}

.hero-content p {
    font-size: var(--large-font);
    margin-bottom: var(--large-padding);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.btn-hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--text-gold) 100%);
    color: var(--dark-bg);
    font-size: var(--medium-font);
    padding: 12px 24px;
    margin: 0 6px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2), 
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-hero:hover {
    background: linear-gradient(135deg, var(--text-gold) 0%, var(--accent-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
    color: var(--dark-bg);
}

/* Container fixes */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--medium-padding);
}

.section {
    padding: 40px 0;
    width: 100%;
    overflow-x: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: var(--small-padding);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    font-family: 'Comic Sans MS', cursive;
    position: relative;
}

.section-title h2::before {
    content: '★ ★ ★';
    display: block;
    font-size: 0.6rem;
    color: var(--text-gold);
    margin-bottom: 5px;
    letter-spacing: 10px;
}

.section-title p {
    font-size: var(--medium-font);
    color: var(--text-light);
    max-width: 400px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* Menu Categories */
.category-nav {
    display: flex;
    justify-content: center;
    gap: var(--small-padding);
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category-btn {
    background: linear-gradient(135deg, var(--brown-medium) 0%, var(--brown-light) 100%);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: var(--small-font);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2), 
                inset 0 1px 0 rgba(244, 228, 188, 0.05);
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--text-gold) 100%);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25), 
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Menu Items Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--large-padding);
    margin-top: 20px;
    padding: 0;
    width: 100%;
}

.menu-item {
    background: linear-gradient(135deg, var(--brown-light) 0%, var(--brown-medium) 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(244, 228, 188, 0.1);
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.menu-item::before {
    content: '✦';
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 1.2rem;
    color: var(--text-gold);
    opacity: 0.6;
    transition: all 0.3s ease;
    animation: twinkle 2s infinite;
    z-index: 2;
}

.menu-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 
                inset 0 1px 0 rgba(244, 228, 188, 0.2);
    background: linear-gradient(135deg, var(--brown-medium) 0%, var(--dark-bg) 100%);
}

.menu-item:hover::before {
    opacity: 1;
    transform: scale(1.2);
}

.menu-item-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.menu-item:hover .menu-item-image {
    transform: scale(1.03);
}

.menu-item-content {
    padding: var(--medium-padding);
    background: var(--dark-bg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-title {
    font-size: var(--large-font);
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 6px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    font-family: 'Comic Sans MS', cursive;
}

.menu-item-description {
    color: var(--text-light);
    margin-bottom: var(--small-padding);
    font-size: var(--small-font);
    line-height: 1.4;
}

.menu-item-ingredients {
    font-size: 0.75rem;
    color: #ccc;
    font-style: italic;
    margin-bottom: var(--small-padding);
    opacity: 0.8;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: var(--small-padding);
    background: var(--darker-bg);
    padding: var(--medium-padding);
    border-top: 1px solid var(--accent-color);
    margin-top: auto;
}

.menu-item-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: center;
}

.menu-item-actions {
    display: flex;
    gap: 6px;
    width: 100%;
}

.view-details-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: var(--darker-bg);
    border: none;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: var(--small-font);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-details-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--darker-bg);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.add-to-cart-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: var(--small-font);
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.price-current {
    font-size: var(--large-font);
    font-weight: 600;
    color: var(--text-gold);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.price-original {
    font-size: var(--small-font);
    color: #999;
    text-decoration: line-through;
    opacity: 0.7;
}

.featured-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: var(--darker-bg);
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--darker-bg) 100%);
    color: var(--text-light);
    padding: 25px 0;
    position: relative;
    box-shadow: inset 0 3px 0 rgba(244, 228, 188, 0.1);
}

.footer::before {
    content: '★ ★ ★ ★ ★';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-gold);
    font-size: 0.8rem;
    letter-spacing: 15px;
    opacity: 0.6;
}

.footer h3 {
    font-size: var(--large-font);
    margin-bottom: var(--small-padding);
    color: var(--accent-color);
    font-family: 'Comic Sans MS', cursive;
    font-weight: 700;
}

.footer p, .footer div {
    font-size: var(--small-font);
    line-height: 1.4;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--large-padding);
    margin-bottom: var(--large-padding);
}

.footer-section h3 {
    font-size: var(--large-font);
    margin-bottom: var(--small-padding);
    color: var(--text-gold);
}

.footer-section p,
.footer-section li {
    margin-bottom: var(--small-padding);
    color: #ccc;
    font-size: var(--small-font);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* Cart Styles */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: none;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    z-index: 2001;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    position: sticky;
    top: 0;
}

.cart-header h3 {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    padding: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 500;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.quantity-btn {
    background: var(--light-color);
    border: 1px solid var(--border-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cart-footer {
    position: sticky;
    bottom: 0;
    background: var(--darker-bg);
    padding: 20px;
    border-top: 2px solid var(--accent-color);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-gold);
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: var(--medium-padding);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: var(--small-padding);
        text-align: center;
        padding: 6px 0;
    }
    
    .logo {
        font-size: var(--medium-font);
        padding: 4px 8px;
    }
    
    .logo i {
        font-size: var(--large-font);
        padding: 3px;
    }
    
    .header-info {
        flex-direction: column;
        gap: var(--small-padding);
        text-align: center;
        width: 100%;
    }
    
    .contact-info {
        flex-direction: row;
        gap: 6px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-item {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .user-actions {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }
    
    .nav-menu {
        flex-direction: row;
        gap: 6px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero {
        min-height: 30vh;
        padding: var(--large-padding) 0;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: var(--small-font);
    }
    
    .section {
        padding: 20px 0;
    }
    
    .section-title h2 {
        font-size: 1.4rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: var(--medium-padding);
        margin-top: 20px;
    }
    
    .menu-item {
        min-height: auto;
    }
    
    .cart-sidebar {
        width: 100vw;
        right: -100vw;
    }
    
    .category-nav {
        flex-direction: row;
        align-items: center;
        gap: 6px;
        justify-content: center;
    }
    
    .category-btn {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Animations */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.header {
    animation: slideInFromTop 0.6s ease-out;
}

/* Success Messages */
.message {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, var(--success-color) 0%, #1e7e34 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    z-index: 3000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border: 2px solid var(--accent-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.message.show {
    transform: translateX(0);
}

.message.error {
    background: linear-gradient(135deg, var(--danger-color) 0%, #c82333 100%);
}

/* Cart Sidebar Styles */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    z-index: 3000;
    transition: right 0.3s ease;
    border-left: 3px solid var(--accent-color);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    background: var(--darker-bg);
    padding: 20px;
    border-bottom: 2px solid var(--accent-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    color: var(--text-gold);
    margin: 0;
    font-weight: bold;
}

.cart-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cart-close:hover {
    background: var(--accent-color);
    color: var(--darker-bg);
}

.cart-content {
    padding: 20px;
    height: calc(100vh - 160px);
    overflow-y: auto;
}

.cart-item {
    background: var(--darker-bg);
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-info h4 {
    color: var(--text-gold);
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.cart-item-price {
    color: var(--text-light);
    font-weight: bold;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2999;
    display: none;
    backdrop-filter: blur(5px);
}

/* Form Styles */
.form-control {
    width: 100%;
    padding: var(--small-padding) var(--medium-padding);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    font-size: var(--small-font);
    transition: all 0.3s ease;
    background: var(--dark-bg);
    color: var(--text-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--text-gold);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.15);
    background: var(--darker-bg);
}

.form-control::placeholder {
    color: #999;
    font-size: var(--small-font);
}

.form-group {
    margin-bottom: var(--medium-padding);
}

.form-label {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
    color: var(--text-gold);
    font-size: var(--small-font);
}

/* Legal Pages Styling */
.legal-content {
    background: linear-gradient(135deg, var(--brown-light) 0%, var(--brown-medium) 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(244, 228, 188, 0.1);
    margin-bottom: 30px;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(244, 228, 188, 0.2);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    color: var(--accent-color);
    font-family: 'Comic Sans MS', cursive;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-section h3 {
    color: var(--text-gold);
    font-size: 1.1rem;
    margin: 20px 0 15px 0;
    font-weight: 600;
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.legal-section ul {
    color: var(--text-light);
    padding-left: 20px;
    margin-bottom: 15px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.contact-details {
    background: linear-gradient(135deg, var(--brown-medium) 0%, var(--dark-bg) 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-details p {
    margin-bottom: 8px;
}

.agreement-box {
    background: linear-gradient(135deg, var(--brown-medium) 0%, var(--dark-bg) 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.agreement-box h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* About Page Styling */
.about-content {
    background: linear-gradient(135deg, var(--brown-light) 0%, var(--brown-medium) 100%);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2), 
                inset 0 1px 0 rgba(244, 228, 188, 0.1);
    height: 100%;
}

.about-content h2 {
    color: var(--accent-color);
    font-family: 'Comic Sans MS', cursive;
    margin-bottom: 20px;
}

.about-content .lead {
    color: var(--text-gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.feature-card {
    background: linear-gradient(135deg, var(--brown-light) 0%, var(--brown-medium) 100%);
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 
                inset 0 1px 0 rgba(244, 228, 188, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(244, 228, 188, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--text-gold);
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--accent-color);
    font-family: 'Comic Sans MS', cursive;
    margin-bottom: 15px;
}

.team-member {
    background: linear-gradient(135deg, var(--brown-light) 0%, var(--brown-medium) 100%);
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 
                inset 0 1px 0 rgba(244, 228, 188, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    color: var(--accent-color);
    font-family: 'Comic Sans MS', cursive;
    margin-bottom: 5px;
}

.info-card {
    background: linear-gradient(135deg, var(--brown-light) 0%, var(--brown-medium) 100%);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2), 
                inset 0 1px 0 rgba(244, 228, 188, 0.1);
    height: 100%;
}

.info-card h3 {
    color: var(--accent-color);
    font-family: 'Comic Sans MS', cursive;
    margin-bottom: 20px;
}

.hours-list {
    background: linear-gradient(135deg, var(--brown-medium) 0%, var(--dark-bg) 100%);
    padding: 15px;
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(244, 228, 188, 0.1);
    color: var(--text-light);
}

.hour-item:last-child {
    border-bottom: none;
}

/* Contact Page Styling */
.contact-form-section {
    background: linear-gradient(135deg, var(--brown-light) 0%, var(--brown-medium) 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(244, 228, 188, 0.1);
}

.contact-form .form-label {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-form .form-control {
    background: linear-gradient(135deg, var(--brown-medium) 0%, var(--dark-bg) 100%);
    border: none;
    color: var(--text-light);
    border-radius: 8px;
    padding: 12px 15px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-form .form-control:focus {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--brown-medium) 100%);
    color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(244, 228, 188, 0.1);
}

.contact-info-section {
    background: linear-gradient(135deg, var(--brown-light) 0%, var(--brown-medium) 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(244, 228, 188, 0.1);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--brown-medium) 0%, var(--dark-bg) 100%);
    padding: 20px;
    border-radius: 12px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(244, 228, 188, 0.1);
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--text-gold) 0%, var(--text-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-icon i {
    color: var(--dark-bg);
    font-size: 1.1rem;
}

.contact-details h4 {
    color: var(--accent-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.social-section {
    background: linear-gradient(135deg, var(--brown-medium) 0%, var(--dark-bg) 100%);
    padding: 20px;
    border-radius: 12px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.social-section h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--text-gold);
    transform: translateX(5px);
}

.social-link i {
    width: 25px;
    margin-right: 10px;
    color: var(--text-gold);
}

.map-section {
    background: linear-gradient(135deg, var(--brown-light) 0%, var(--brown-medium) 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(244, 228, 188, 0.1);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.faq-section {
    background: linear-gradient(135deg, var(--brown-light) 0%, var(--brown-medium) 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(244, 228, 188, 0.1);
}

.accordion-item {
    background: linear-gradient(135deg, var(--brown-medium) 0%, var(--dark-bg) 100%);
    border: none;
    border-radius: 8px !important;
    margin-bottom: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.accordion-button {
    background: transparent;
    color: var(--accent-color);
    border: none;
    font-weight: 600;
    padding: 15px 20px;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--text-gold);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    background: transparent;
    color: var(--text-light);
    padding: 15px 20px;
}

.section-heading {
    color: var(--accent-color);
    font-family: 'Comic Sans MS', cursive;
    font-weight: 700;
    margin-bottom: 20px;
}