/* New Roots - Main Stylesheet */
/* Inspired by SquareSpace template - clean, minimal, fresh design */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary-green: #2d5a3d;
    --light-green: #4a7c59;
    --accent-green: #7ba05b;
    --dark-text: #1a1a1a;
    --light-text: #666666;
    --background: #ffffff;
    --light-bg: #f7f7f7;
    --border-color: #e5e5e5;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark-text);
    background-color: var(--background);
    line-height: 1.6;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--background);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-text);
    text-decoration: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 14px;
    font-weight: 400;
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

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

.nav-dropdown {
    position: relative;
}

.nav-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--background);
    min-width: 150px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
}

.nav-dropdown:hover .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--dark-text);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-dropdown-content a:hover {
    background: var(--light-bg);
    color: var(--primary-green);
}

.header-icons {
    display: flex;
    gap: 15px;
}

.header-icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.header-icon:hover {
    opacity: 1;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--primary-green);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 400;
    margin-top: 76px;
}

/* Hero Section */
.hero {
    height: 90vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 1px;
    opacity: 0.95;
}

.hero-cta {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--light-green);
    transform: translateY(-2px);
}

/* Section Styles */
.section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-dark {
    background: var(--light-bg);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-text);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto 60px;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.menu-item {
    background: var(--background);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.menu-item-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.menu-item-content {
    padding: 25px;
}

.menu-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.menu-item-description {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 15px;
}

.menu-item-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
}

.menu-item-tags {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.menu-tag {
    background: var(--light-bg);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--light-text);
}

/* Bulk Section */
.bulk-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.bulk-card {
    background: var(--background);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.bulk-card:hover {
    transform: translateY(-5px);
}

.bulk-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.bulk-card-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.bulk-card-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--light-text);
}

.bulk-card-description {
    font-size: 15px;
    color: var(--light-text);
    margin-bottom: 25px;
    line-height: 1.7;
}

.bulk-card-features {
    text-align: left;
    margin-bottom: 30px;
}

.bulk-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.bulk-feature:last-child {
    border-bottom: none;
}

.bulk-feature-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
}

.bulk-feature span {
    font-size: 14px;
    color: var(--dark-text);
}

.bulk-cta {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 14px 35px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.bulk-cta:hover {
    background: var(--light-green);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 25px 0;
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding-top: 20px;
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.8;
}

/* Testimonial */
.testimonial {
    background: var(--light-bg);
    padding: 80px 40px;
    text-align: center;
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-style: italic;
    color: var(--dark-text);
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

.testimonial-author {
    font-size: 14px;
    color: var(--light-text);
}

/* Newsletter */
.newsletter {
    padding: 100px 40px;
    text-align: center;
    background: var(--background);
}

.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}

.newsletter-subtitle {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.newsletter-button {
    background: var(--dark-text);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-button:hover {
    background: #333;
}

.newsletter-privacy {
    font-size: 13px;
    color: var(--light-text);
    margin-top: 20px;
}

/* Footer */
.footer {
    background: var(--dark-text);
    color: white;
    padding: 60px 40px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-location {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 5px;
}

.footer-phone {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }
    
    .nav {
        display: none;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .bulk-cards {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

/* Page-specific styles */
.page-header {
    padding: 150px 40px 80px;
    text-align: center;
    background: var(--light-bg);
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 60px);
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Category filters */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 10px 25px;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    color: var(--dark-text);
}

.category-btn:hover,
.category-btn.active {
    background: var(--dark-text);
    border-color: var(--dark-text);
    color: white;
}

/* Features section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-green);
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.feature-description {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.7;
}