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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
header {
    background: #2c5f41;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    color: #f4d03f;
    font-size: 1.8rem;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #f4d03f;
    background: rgba(244, 208, 63, 0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5f41 0%, #1a3d2e 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
    margin-top: 70px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #f4d03f;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: #f4d03f;
    color: #2c5f41;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 208, 63, 0.4);
}

/* Restaurants Section */
.features {
    padding: 80px 20px;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5f41;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: #2c5f41;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    margin-bottom: 1rem;
}

.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.restaurant-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.restaurant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.restaurant-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #2c5f41 0%, #1a3d2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    font-size: 4rem;
    color: #f4d03f;
}

.restaurant-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #28a745;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.restaurant-info {
    padding: 1.5rem;
}

.restaurant-info h3 {
    color: #2c5f41;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.cuisine-type {
    color: #f4d03f;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    background: #2c5f41;
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
}

.restaurant-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.restaurant-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #ffc107;
}

.rating-count {
    color: #666;
    font-size: 0.9rem;
}

.price-range {
    font-weight: bold;
    color: #2c5f41;
    font-size: 1.1rem;
}

.restaurant-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.location-icon {
    font-size: 1rem;
}

.restaurant-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #f4d03f;
    color: #2c5f41;
}

.btn-primary:hover {
    background: #e6c236;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #2c5f41;
    border: 2px solid #2c5f41;
}

.btn-secondary:hover {
    background: #2c5f41;
    color: white;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c5f41;
}

.about p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c5f41;
}

.contact p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-weight: bold;
    color: #2c5f41;
}

/* Footer */
footer {
    background: #2c5f41;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Responsive Design */
/* Page Layouts */
.page-main {
    margin-top: 70px;
}

.page-hero {
    background: linear-gradient(135deg, #2c5f41 0%, #1a3d2e 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #f4d03f;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Page */
.features-detail {
    padding: 80px 20px;
    background: white;
}

.feature-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.feature-detail {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f9fa;
}

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-detail h3 {
    color: #2c5f41;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-detail p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-detail ul {
    list-style: none;
    text-align: left;
}

.feature-detail li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-detail li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.features-cta {
    background: #f8f9fa;
    padding: 80px 20px;
    text-align: center;
}

.cta-content h2 {
    color: #2c5f41;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Blog Page */
.blog-featured {
    padding: 40px 20px;
    background: white;
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-image {
    height: 300px;
    background: linear-gradient(135deg, #2c5f41 0%, #1a3d2e 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-image .placeholder-image {
    font-size: 5rem;
    color: #f4d03f;
}

.post-category {
    background: #f4d03f;
    color: #2c5f41;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block;
}

.featured-content h2 {
    color: #2c5f41;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.featured-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.read-more {
    color: #2c5f41;
    font-weight: bold;
    text-decoration: none;
}

.read-more:hover {
    color: #f4d03f;
}

.blog-posts {
    padding: 80px 20px;
    background: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
}

.sidebar {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    height: fit-content;
}

.sidebar-widget {
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    color: #2c5f41;
    margin-bottom: 1rem;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    color: #666;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}

.category-list a:hover {
    color: #2c5f41;
}

.popular-post {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.popular-post h4 {
    color: #2c5f41;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.popular-date {
    color: #666;
    font-size: 0.8rem;
}

.posts-content {
    display: grid;
    gap: 2rem;
}

.post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 200px 1fr;
}

.post-image {
    height: 200px;
    background: linear-gradient(135deg, #2c5f41 0%, #1a3d2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-image .placeholder-image {
    font-size: 3rem;
    color: #f4d03f;
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    color: #2c5f41;
    margin-bottom: 1rem;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.page-link {
    padding: 10px 15px;
    background: white;
    color: #2c5f41;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.page-link:hover,
.page-link.active {
    background: #2c5f41;
    color: white;
}

.blog-newsletter {
    background: #2c5f41;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.newsletter-content h2 {
    color: #f4d03f;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 400px;
    margin: 2rem auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
}

.newsletter-form button {
    background: #f4d03f;
    color: #2c5f41;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

/* Contact Page */
.contact-content {
    padding: 80px 20px;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2c5f41;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f41;
}

.contact-info-section h2 {
    color: #2c5f41;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    text-align: center;
}

.contact-details h3 {
    color: #2c5f41;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #333;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.contact-details span {
    color: #666;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    color: #2c5f41;
    text-decoration: none;
}

.social-links a:hover {
    color: #f4d03f;
}

/* Contact FAQ */
.contact-faq {
    padding: 80px 20px;
    background: #f8f9fa;
}

.contact-faq h2 {
    text-align: center;
    color: #2c5f41;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #2c5f41;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.contact-business {
    background: #2c5f41;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.business-cta h2 {
    color: #f4d03f;
    margin-bottom: 1rem;
}

.business-cta p {
    margin-bottom: 2rem;
}

.business-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-icon {
    font-size: 1.5rem;
}

/* Vendors Page */
.vendors-filters {
    background: white;
    padding: 40px 20px;
    border-bottom: 1px solid #eee;
}

.filter-bar {
    display: flex;
    gap: 2rem;
    align-items: end;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    color: #2c5f41;
    font-weight: bold;
    font-size: 0.9rem;
}

.filter-group select {
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    min-width: 150px;
}

.filter-btn {
    background: #2c5f41;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.filter-btn:hover {
    background: #1a3d2e;
}

.vendors-grid {
    padding: 40px 20px;
    background: #f8f9fa;
}

.vendors-count {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.load-more {
    text-align: center;
    margin-top: 3rem;
}

.vendors-map {
    padding: 80px 20px;
    background: white;
}

.vendors-map h2 {
    text-align: center;
    color: #2c5f41;
    margin-bottom: 2rem;
}

.map-container {
    height: 400px;
    background: #f8f9fa;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
}

.map-content h3 {
    color: #2c5f41;
    margin-bottom: 1rem;
}

.vendors-cta {
    background: #f8f9fa;
    padding: 80px 20px;
    text-align: center;
}

.vendors-cta h2 {
    color: #2c5f41;
    margin-bottom: 1rem;
}

/* About Page */
.about-story {
    padding: 80px 20px;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    color: #2c5f41;
    margin-bottom: 1.5rem;
}

.story-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-image {
    height: 400px;
    background: linear-gradient(135deg, #2c5f41 0%, #1a3d2e 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image .placeholder-image {
    font-size: 6rem;
    color: #f4d03f;
}

.about-mission {
    padding: 80px 20px;
    background: #f8f9fa;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mission-item h3 {
    color: #2c5f41;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mission-item p {
    color: #666;
    line-height: 1.6;
}

.about-team {
    padding: 80px 20px;
    background: white;
}

.about-team h2 {
    text-align: center;
    color: #2c5f41;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2c5f41 0%, #1a3d2e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
}

.team-member h4 {
    color: #2c5f41;
    margin-bottom: 0.5rem;
}

.team-member p:first-of-type {
    color: #f4d03f;
    font-weight: bold;
    background: #2c5f41;
    padding: 5px 12px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.team-member p:last-of-type {
    color: #666;
    line-height: 1.5;
}

.about-stats {
    padding: 80px 20px;
    background: #2c5f41;
    color: white;
    text-align: center;
}

.about-stats h2 {
    color: #f4d03f;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #f4d03f;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: white;
}

.about-commitment {
    padding: 80px 20px;
    background: white;
}

.commitment-content h2 {
    text-align: center;
    color: #2c5f41;
    margin-bottom: 2rem;
}

.commitment-content > p {
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.commitment-list {
    max-width: 800px;
    margin: 0 auto;
}

.commitment-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.commitment-icon {
    font-size: 2rem;
    color: #2c5f41;
    width: 60px;
    text-align: center;
    flex-shrink: 0;
}

.commitment-item h4 {
    color: #2c5f41;
    margin-bottom: 0.5rem;
}

.commitment-item p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .nav-links a {
        padding: 0.3rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features h2,
    .about h2,
    .contact h2 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .feature-detail-grid {
        grid-template-columns: 1fr;
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .post-card {
        grid-template-columns: 1fr;
    }

    .post-image {
        height: 150px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .business-benefits {
        flex-direction: column;
        gap: 1rem;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .restaurant-actions {
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 0.25rem;
    }
    
    .nav-links a {
        font-size: 0.8rem;
        padding: 0.2rem 0.3rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}