/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7c5c3e; /* Earthy brown */
    --secondary-color: #a3b18a; /* Sage green */
    --accent-color: #e9c46a; /* Warm yellow */
    --background: #f4f1ee; /* Light organic background */
    --white: #fff;
    --text-color: #3e3e3e;
    --muted: #8d8d8d;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
    background: var(--background);
    color: var(--text-color);
    line-height: 1.7;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.2rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(124, 92, 62, 0.07);
    z-index: 1000;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}
.logo-img {
    border-radius: 50%;
    background: var(--secondary-color);
    width: 48px;
    height: 48px;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.nav-menu a:hover {
    color: var(--secondary-color);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}
.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7) blur(1px);
    z-index: 1;
}
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: 2px 2px 8px rgba(60,40,20,0.18);
}
.subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 1px 1px 4px rgba(60,40,20,0.18);
}
.btn {
    padding: 1rem 2.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(124, 92, 62, 0.08);
    cursor: pointer;
}
.btn.primary {
    background: var(--primary-color);
    color: var(--white);
}
.btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* About Section */
.about {
    padding: 6rem 0 3rem 0;
    background: var(--background);
}
.about-highlights {
    margin: 1.5rem 0 1rem 1.5rem;
    color: var(--secondary-color);
}
.about-highlights li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}
blockquote {
    margin: 2rem 0 0 0;
    padding-left: 1.2rem;
    border-left: 4px solid var(--secondary-color);
    color: var(--primary-color);
    font-style: italic;
    font-size: 1.1rem;
}

/* Hours & Location */
.hours-location {
    padding: 5rem 0 3rem 0;
    background: var(--white);
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
}
.info-item {
    background: var(--background);
    padding: 1rem 1.2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.05rem;
    color: var(--primary-color);
}
.info-item a {
    color: var(--primary-color);
    text-decoration: underline;
}
.hours-list {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-color);
}
.services {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 1rem;
    color: var(--secondary-color);
}
.services span {
    background: var(--background);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--secondary-color);
}

/* Menu Section */
.menu {
    padding: 5rem 0 3rem 0;
    background: var(--background);
}
.menu-category {
    margin-bottom: 2.5rem;
}
.menu-category h3 {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.3rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.menu-items {
    display: grid;
    gap: 1rem;
}
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.7rem 0;
    border-bottom: 1px dashed #d6d6d6;
}
.item-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.08rem;
}
.label {
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 10px;
    font-size: 0.8rem;
    padding: 0.1rem 0.5rem;
    margin-left: 0.5rem;
}
.item-price {
    font-weight: 600;
    color: var(--accent-color);
    white-space: nowrap;
    font-size: 1.08rem;
}
.menu-note {
    font-style: italic;
    color: var(--muted);
    margin-top: 2rem;
    font-size: 0.95rem;
}
.item-desc {
    display: block;
    font-size: 0.97rem;
    font-weight: 400;
    color: var(--muted);
    font-style: italic;
    margin-top: 0.1rem;
    letter-spacing: 0.01em;
}

/* Online Order Section */
.online-order {
    padding: 5rem 0 3rem 0;
    background: var(--white);
    text-align: center;
}
.order-options {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
.order-option {
    background: var(--background);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(124, 92, 62, 0.08);
    max-width: 300px;
    transition: var(--transition);
}
.order-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(124, 92, 62, 0.12);
}
.order-option i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}
.order-option h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.order-option p {
    color: var(--muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.order-option .btn {
    display: inline-block;
    margin-top: 0.5rem;
}

/* Farmers Section */
.farmers {
    padding: 4rem 0 2rem 0;
    background: var(--white);
    text-align: center;
}
.farmers h2 {
    color: var(--secondary-color);
}

/* Highlights Section */
.highlights {
    padding: 4rem 0 2rem 0;
    background: var(--background);
}
.highlights-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
    color: var(--primary-color);
    font-size: 1.08rem;
}
.highlights-list li {
    background: var(--white);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 2px 8px rgba(124, 92, 62, 0.04);
}
.highlights-list i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

/* Contact Section */
.contact {
    padding: 4rem 0 2rem 0;
    background: var(--white);
}
.contact-info {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.08rem;
}
.contact-info i {
    margin-right: 0.5rem;
}
.map-container {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(124, 92, 62, 0.07);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem 0 1rem 0;
    text-align: center;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}
.social-links {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 0.5rem;
}
.social-link {
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: color 0.2s;
}
.social-link:hover {
    color: var(--secondary-color);
}
.footer-text p {
    margin: 0.2rem 0;
    font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .container {
        padding: 0 10px;
    }
    .highlights-list, .info-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 700px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        background: var(--white);
        flex-direction: column;
        width: 200px;
        gap: 1.5rem;
        padding: 2rem 1rem;
        box-shadow: 0 2px 8px rgba(124, 92, 62, 0.12);
        display: none;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-toggle {
        display: flex;
    }
    .navbar {
        padding: 1rem;
    }
    .highlights-list, .info-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2.1rem;
    }
}
@media (max-width: 480px) {
    .hero {
        min-height: 350px;
    }
    .hero-content h1 {
        font-size: 1.3rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .btn {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
} 