/* Color Palette & Basic Setup */
:root {
    --primary-color: #4A3B32; /* Deep Coffee Brown */
    --accent-color: #D4A373;  /* Warm Caramel */
    --light-bg: #FAEDCD;      /* Cream */
    --text-color: #333333;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Typography & Buttons */
.section {
    padding: 5rem 10%;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section p {
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.primary-btn {
    background-color: var(--accent-color);
    color: var(--white);
}

.primary-btn:hover {
    background-color: #b5885c;
}

.secondary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    width: 100%;
}

.secondary-btn:hover {
    background-color: #332822;
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(74, 59, 50, 0.7), rgba(74, 59, 50, 0.7)), url('https://images.unsplash.com/photo-1497935586351-b67a49e012bf?auto=format&fit=crop&w=1600&q=80') center/cover;
    color: var(--white);
    padding: 0 20px;
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* Visit Us - Split Layout */
.bg-light {
    background-color: var(--light-bg);
}

.split-layout {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.hours-box, .map-box {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.hours-box ul {
    list-style: none;
    margin-top: 1rem;
}

.hours-box li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.map-box {
    padding: 0;
    min-height: 300px;
    overflow: hidden;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}

.form-status {
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .split-layout {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none; /* In a full app, you'd add a hamburger menu here */
    }
}

/* Footer Developer Credits */
.footer-credits {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.8; /* Makes it slightly more subtle than the main footer text */
}

.footer-credits a {
    color: var(--accent-color); /* Uses the warm caramel color from our variables */
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-credits a:hover {
    color: var(--white);
    text-decoration: underline;
}


/* --- Menu Page Specific Styles --- */
.menu-layout {
    gap: 4rem;
    align-items: flex-start;
}

.menu-box {
    flex: 1;
    text-align: left;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.menu-box h3 {
    font-size: 2.2rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.menu-box h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-list {
    list-style: none;
    padding: 0;
}

.menu-list li {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    border-bottom: 1px dashed #ccc;
}

.menu-list li:last-child {
    border-bottom: none;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: var(--text-color);
}

.menu-item-desc {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.4rem;
    line-height: 1.4;
}