:root {
    --primary-color: #c9b037;
    --secondary-color: #2c1810;
    --accent-color: #8b4513;
    --text-light: #ffffff;
    --bg-warm: #faf8f3;
    --gold-accent: #d4af37;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    background: var(--bg-warm);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Custom hero background with CSS image simulation */
.hero-bg {
    background: 
        linear-gradient(rgba(44, 24, 16, 0.7), rgba(44, 24, 16, 0.5)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23654321" width="1200" height="800"/><circle cx="300" cy="200" r="120" fill="%23795548" opacity="0.6"/><circle cx="800" cy="300" r="80" fill="%238d6e63" opacity="0.4"/><circle cx="200" cy="600" r="100" fill="%23a1887f" opacity="0.3"/><circle cx="1000" cy="150" r="90" fill="%23bcaaa4" opacity="0.5"/><rect x="400" y="400" width="400" height="200" rx="20" fill="%23d7ccc8" opacity="0.2"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

/* Professional image placeholders using CSS */
.food-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(45deg, #8d6e63, #a1887f);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.food-image::before {
    content: '🍝';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.3;
}

.food-image.pasta::before { content: '🍝'; }
.food-image.meat::before { content: '🥩'; }
.food-image.seafood::before { content: '🦐'; }
.food-image.dessert::before { content: '🍰'; }

/* Restaurant interior simulation */
.interior-bg {
    background: 
        linear-gradient(rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%23f5f5dc" width="800" height="600"/><rect x="100" y="100" width="600" height="400" fill="%23deb887" rx="10"/><circle cx="200" cy="200" r="30" fill="%23cd853f"/><circle cx="400" cy="300" r="25" fill="%23d2691e"/><circle cx="600" cy="250" r="20" fill="%23bc8f8f"/><rect x="150" y="450" width="500" height="30" fill="%23a0522d" rx="5"/></svg>');
    background-size: cover;
    background-position: center;
}

/* Back Button */
.back-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(201, 176, 55, 0.3);
    border: none;
}

.back-btn:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 24, 16, 0.4);
    text-decoration: none;
}

/* Modern card styling */
.menu-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(201, 176, 55, 0.1);
}

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

.price-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

/* Contact section styling */
.contact-card {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 16px;
    padding: 2rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(201, 176, 55, 0.25);
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Professional typography */
.display-4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Animated elements */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Restaurant info styling */
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.info-item i {
    margin-right: 1rem;
    color: var(--primary-color);
    width: 20px;
}

/* Hero section improvements */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Reviews section */
.review-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stars {
    color: #ffc107;
    margin-bottom: 0.5rem;
}