/* Color Palette & Variables - Appetizing Design */
:root {
    --primary-color: #B34700; /* Darker Caramel for better contrast */
    --secondary-color: #D68910; /* Darker Golden Crust */
    --bg-color: #FFF9F2; /* Creamy Vanilla Background */
    --text-color: #2E1505; /* Very Deep Cocoa for high contrast */
    --text-light: #5A3A22; /* Darker Chocolate for readability */
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --border-radius: 16px; /* Soft, friendly edges */
    --box-shadow: 0 10px 30px rgba(160, 64, 0, 0.08); /* Warm shadow */
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-color);
}

p {
    font-weight: 300;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: flex-end;
    font-size: 0.9rem;
}

.lang-toggle button {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 800;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    opacity: 0.4;
    font-size: 1rem;
}

.lang-toggle button.active, .lang-toggle button:hover {
    color: var(--secondary-color);
    opacity: 0.9;
}

.lang-toggle span {
    color: var(--white);
    opacity: 0.5;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(74, 35, 17, 0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 0;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

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

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    background: url('images/hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darker overlay for better text contrast */
    background: linear-gradient(to bottom, rgba(30, 15, 5, 0.5), rgba(30, 15, 5, 0.75));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeIn 1.5s ease;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px; /* Soft pill shape */
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3);
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
    color: var(--text-color);
}

/* Section Common */
section {
    padding: 6rem 5%;
}

.section-title {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

/* About Section */
.about {
    background-color: var(--white);
    border-radius: var(--border-radius);
    margin: 3rem 5%;
    padding: 5rem 10%;
    box-shadow: var(--box-shadow);
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.about p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Menu Section */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(211, 84, 0, 0.15);
}

.card-img-wrapper {
    overflow: hidden;
    height: 250px;
}

.menu-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-content {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
}

.menu-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.menu-card p {
    font-size: 1.05rem;
    color: var(--text-light);
}

/* Reviews Section */
.reviews {
    background-color: var(--bg-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background-color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    border-top: 5px solid var(--secondary-color);
}

.review-card p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--bg-color);
    opacity: 0.8;
    z-index: 0;
}

.review-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    text-align: right;
    font-weight: 600;
}

/* Footer & Contact Section */
.footer {
    background-color: var(--text-color); /* Deep Cocoa */
    color: var(--bg-color);
    padding: 5rem 5% 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

/* Contact Form Styling */
.contact-form-wrapper {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    color: var(--text-color);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-light);
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0d5c1;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--bg-color);
    transition: all 0.3s ease;
}

.input-group input:focus, 
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(211, 84, 0, 0.1);
}

.btn-submit {
    width: 100%;
    font-size: 1.1rem;
}

/* Footer Details */
.footer-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
}

.footer-brand h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #e0d5c1;
    font-size: 1.1rem;
}

.footer-info h3, .footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-info p, .footer-contact p {
    margin-bottom: 0.5rem;
    color: #e0d5c1;
}

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

.footer-contact a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #a89f91;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-details {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }
    .nav-links {
        margin-top: 1.5rem;
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .about {
        margin: 0;
        border-radius: 0;
        padding: 4rem 5%;
    }
    .contact-form-wrapper {
        padding: 2rem;
    }
}
