:root {
    --barn-red: #8b3a2b;
    --cream: #f5efe6;
    --pine: #3d4f3a;
    --wood: #5c4033;
    --maple: #c17f3a;
    --paper: #f9f5ee;
}

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

body {
    font-family: 'Source Sans 3', system-ui, sans-serif;
    color: #2c2c2c;
    background: var(--paper);
    line-height: 1.65;
}

h1, h2, h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-weight: 700;
}

/* NAV – simple & sturdy */
header {
    background: var(--pine);
    color: var(--cream);
    padding: 0.9rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid var(--barn-red);
}

.logo {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.45rem;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.logo span {
    color: #e8c87a;
}

nav a {
    color: var(--cream);
    text-decoration: none;
    margin-left: 1.6rem;
    font-weight: 600;
    font-size: 0.95rem;
}

nav a:hover {
    color: #e8c87a;
}

/* HERO – rural & grounded */
.hero {
    background: 
    linear-gradient(rgba(40, 50, 35, 0.55), rgba(40, 50, 35, 0.65)),
    url('images/interior.jpg') center/cover;
    min-height: 78vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2.5rem 1.5rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 520px;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    background: var(--barn-red);
    color: white;
    padding: 0.85rem 1.9rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn:hover {
    background: #6f2e22;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    margin-left: 0.8rem;
}

.btn-outline:hover {
    background: white;
    color: var(--pine);
}

/* SECTIONS */
section {
    padding: 4.5rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.1rem;
    color: var(--pine);
    margin-bottom: 0.4rem;
}

.section-sub {
    text-align: center;
    color: #666;
    margin-bottom: 2.8rem;
    font-size: 1.1rem;
}

/* ABOUT – story-driven */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.8rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.15rem;
    font-size: 1.08rem;
}

.highlight {
    color: var(--barn-red);
    font-weight: 600;
}

/* MENU – simple chalkboard feel */
.menu-section {
    background: #f0e9dc;
    max-width: 100%;
    padding: 4.5rem 1.5rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-card {
    background: white;
    border: 1px solid #d9cfc0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.menu-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.menu-card-body {
    padding: 1.25rem 1.3rem 1.4rem;
}

.menu-card h3 {
    color: var(--pine);
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
}

.menu-card p {
    font-size: 0.98rem;
    color: #444;
    margin-bottom: 0.6rem;
}

.price {
    color: var(--barn-red);
    font-weight: 700;
    font-size: 1.1rem;
}

/* VISIT – practical & local */
.visit-box {
    background: var(--pine);
    color: var(--cream);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    border-top: 5px solid var(--barn-red);
}

.visit-box h2 {
    color: #e8c87a;
    margin-bottom: 0.9rem;
    font-size: 1.5rem;
}

.hours li, .address p {
    margin-bottom: 0.45rem;
    list-style: none;
}

/* FOOTER */
footer {
    background: #2a3528;
    color: #b8b0a4;
    text-align: center;
    padding: 2.2rem 1rem;
    font-size: 0.95rem;
}

footer a {
    color: #e8c87a;
    text-decoration: none;
}

@media (max-width: 720px) {
    .about-grid,
    .visit-box {
    grid-template-columns: 1fr;
    }
    nav a {
    margin-left: 1rem;
    font-size: 0.88rem;
    }
    .btn-outline {
    margin-left: 0;
    margin-top: 0.8rem;
    display: inline-block;
    }
}
