:root {
    --primary: #c7a17a;
    --secondary: #8b4513;
    --accent: #ff6b35;
    --dark: #2d1b00;
    --light: #f8f5f0;
    --success: #28a745;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body { 
    font-family: 'Playfair Display', serif;
    background: #ffffff; 
    color: #2d1b00;
    overflow-x: hidden;
}

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

p, a, button, input, textarea {
    font-family: 'Lato', sans-serif;
}

/* Navbar */
.navbar { 
    background: rgba(45, 27, 0, 0.95); 
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2); 
    padding: 15px 0;
    transition: all 0.3s ease;
}
.navbar-brand { 
    font-weight: 700; 
    color: var(--primary) !important; 
    font-size: 1.8rem; 
    font-family: 'Playfair Display', serif;
}
.nav-link {
    font-weight: 500;
    color: rgba(255,255,255,0.9) !important;
    margin: 0 15px;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-link:hover::after, .nav-link.active::after { width: 80%; }
.nav-link:hover { color: var(--primary) !important; }

/* Hero Section */
.hero { 
    position: relative;
    background: linear-gradient(rgba(45, 27, 0, 0.5), rgba(45, 27, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover; 
    background-position: center;
    background-attachment: fixed;
    color: white; 
    padding: 180px 0 140px; 
    text-align: center;
}
.hero h1 { 
    font-size: 4.5rem; 
    font-weight: 700; 
    margin-bottom: 25px; 
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    font-family: 'Playfair Display', serif;
}
.hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 300;
}

/* Buttons */
.btn-custom {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    font-family: 'Lato', sans-serif;
}
.btn-primary-custom {
    background: var(--primary);
    color: var(--dark);
    border: none;
    box-shadow: 0 10px 30px rgba(199, 161, 122, 0.4);
}
.btn-primary-custom:hover {
    background: #b08968;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(199, 161, 122, 0.5);
    color: var(--dark);
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}
.feature-icon { 
    width: 80px; 
    height: 80px; 
    background: rgba(199, 161, 122, 0.15); 
    color: var(--primary); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 2rem; 
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}
.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: rotate(360deg);
}
.feature-card h5 { font-weight: 700; margin-bottom: 15px; color: var(--dark); }
.feature-card p { color: #6c757d; font-size: 0.95rem; line-height: 1.6; }

/* Menu Section */
.menu-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}
.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.menu-item-body {
    padding: 25px;
}
.menu-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}
.menu-item-price {
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 10px;
}

/* Section Styling */
.section-padding { padding: 100px 0; }
.section-title { 
    font-weight: 700; 
    font-size: 2.8rem; 
    margin-bottom: 20px; 
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}
.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.title-line { 
    width: 80px; 
    height: 4px; 
    background: var(--primary); 
    margin-bottom: 30px; 
    border-radius: 2px; 
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(45, 27, 0, 0.9), rgba(139, 69, 19, 0.8)),
                url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 140px 0 100px;
    color: white;
    text-align: center;
}
.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.15);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(45, 27, 0, 0.9), transparent);
    color: white;
    padding: 25px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Footer */
footer { 
    background: var(--dark); 
    color: white; 
    padding: 80px 0 30px; 
}
.footer-logo { 
    font-size: 2rem; 
    font-weight: 700; 
    margin-bottom: 25px; 
    display: block; 
    color: var(--primary) !important; 
    text-decoration: none; 
    font-family: 'Playfair Display', serif;
}
.footer-link { 
    color: rgba(255,255,255,0.7); 
    text-decoration: none; 
    display: block; 
    margin-bottom: 12px; 
    transition: 0.3s; 
}
.footer-link:hover { 
    color: var(--primary); 
    padding-left: 5px; 
}
.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    margin-right: 12px;
    transition: 0.3s;
    font-size: 1.1rem;
}
.social-icons a:hover { 
    background: var(--primary); 
    color: var(--dark); 
    transform: translateY(-3px); 
}

.demo-badge { 
    position: sticky;
    top: 0;
    background: var(--accent); 
    color: white; 
    text-align: center; 
    padding: 8px; 
    z-index: 10000; 
    font-weight: 700; 
    font-size: 0.85rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-family: 'Lato', sans-serif;
}

/* Special Elements */
.about-img { 
    border-radius: 20px; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.15); 
    width: 100%; 
}

.testimonial {
    background: var(--light);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--primary);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    .section-title { font-size: 2.2rem; }
    .page-header h1 { font-size: 2.5rem; }
}
