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

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

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-logo a {
    color: white;
    text-decoration: none;
}

.nav-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-logo-fallback {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo i {
    margin-right: 0.5rem;
    color: #90ee90;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #90ee90;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #2d5016, #4a7c59, #6b8e6b);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        linear-gradient(135deg, #2d5016, #4a7c59);
    background-size: 100% 100%;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.6));
    backdrop-filter: brightness(0.8);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-badge i {
    color: #90ee90;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 4px 16px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #90ee90;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-search {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-search input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.hero-search button {
    background: #2d5016;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hero-search button:hover {
    background: #1a3009;
}

/* Filters Section */
.filters {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filters .container {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.filter-group select {
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: #4a7c59;
}

.clear-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
    margin-top: 1.5rem;
}

.clear-btn:hover {
    background: #c82333;
}

/* Restaurants Section */
.restaurants {
    padding: 4rem 0;
}

.restaurants h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.restaurant-count {
    text-align: center;
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.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: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.restaurant-image-gallery {
    position: relative;
    height: 250px;
    display: flex;
    gap: 2px;
}

.main-image {
    flex: 2;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #4a7c59, #6b8e6b, #8fbc8f);
}

.restaurant-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.restaurant-card:hover .restaurant-photo {
    transform: scale(1.05);
}

.restaurant-icon-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4a7c59, #6b8e6b, #8fbc8f);
    color: white;
    font-size: 3rem;
}

.thumbnail-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.thumbnail {
    flex: 1;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.more-photos {
    flex: 1;
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.more-photos:hover {
    background: linear-gradient(135deg, #1a3009, #2d5016);
}

.more-photos span {
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.restaurant-info {
    padding: 1.5rem;
}

.restaurant-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.restaurant-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d5016;
    margin: 0;
    flex: 1;
}

.restaurant-cuisine {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.restaurant-location {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.restaurant-location i {
    color: #4a7c59;
}

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

.restaurant-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

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

.action-btn {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #495057;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
}

.action-btn:hover {
    background: #4a7c59;
    color: white;
    border-color: #4a7c59;
    transform: translateY(-1px);
}

.action-btn i {
    font-size: 0.8rem;
}

.action-btn-primary {
    background: #3d7c17;
    color: white;
    border-color: #3d7c17;
    font-weight: 600;
}

.action-btn-primary:hover {
    background: #2d5016;
    border-color: #2d5016;
}

.feature-tag {
    background: #e8f5e8;
    color: #2d5016;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #c8e6c8;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: #d4edda;
    transform: translateY(-1px);
}

.safety-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #28a745;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.safety-badge i {
    font-size: 0.8rem;
}

.restaurant-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.restaurant-price {
    font-weight: 600;
    color: #2d5016;
}

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

.stars {
    color: #ffc107;
}

.rating-text {
    color: #6c757d;
    font-size: 0.9rem;
}

/* About Section */
.about {
    background: white;
    padding: 4rem 0;
}

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

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 3rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.feature p {
    color: #6c757d;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: #f8f9fa;
    padding: 4rem 0;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    color: #2d5016;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #495057;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #495057;
}

.contact-item i {
    color: #4a7c59;
    width: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4a7c59;
}

.contact-form button {
    background: #4a7c59;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #2d5016;
}

/* Footer */
.footer {
    background: #2d5016;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #90ee90;
}

.footer-section p {
    color: #b8d4b8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #b8d4b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #90ee90;
}

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

.social-links a {
    color: #b8d4b8;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a7c59;
    color: #b8d4b8;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.last-updated {
    font-size: 0.85rem;
    color: #8fb88f;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #2d5016;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-search {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-search input,
    .hero-search button {
        border-radius: 8px;
    }

    .filters .container {
        flex-direction: column;
        align-items: stretch;
    }

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

    .restaurant-image-gallery {
        height: 200px;
    }

    .thumbnail-images {
        display: none;
    }

    .main-image {
        flex: 1;
    }

    .restaurant-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

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

    .action-btn {
        justify-content: center;
    }

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

    .features {
        grid-template-columns: 1fr;
    }
    
    .seo-content {
        padding: 1.5rem;
    }
    
    .seo-content h3 {
        font-size: 1.5rem;
    }
    
    .seo-content h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

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

    .restaurants h2,
    .about h2,
    .contact h2 {
        font-size: 2rem;
    }
}

/* SEO Content Styles */
.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #495057;
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.seo-content {
    margin-top: 3rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    clear: both;
}

.seo-content h3 {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.seo-content h4 {
    font-size: 1.3rem;
    color: #4a7c59;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.seo-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1rem;
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e9ecef;
    border-top: 4px solid #4a7c59;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

.no-results i {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #495057;
}

.no-results p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Photo Gallery Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    overflow: hidden;
}

.gallery-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-header {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    color: white;
    z-index: 10001;
}

.lightbox-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.lightbox-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    overflow-x: auto;
    padding: 10px;
    max-width: 100%;
}

.lightbox-thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.lightbox-thumbnail:hover {
    opacity: 0.8;
}

.lightbox-thumbnail.active {
    opacity: 1;
    border-color: #4a7c59;
}

/* Make images clickable */
.restaurant-photo,
.thumbnail,
.more-photos {
    cursor: pointer;
}

.restaurant-photo:hover,
.thumbnail:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-title {
        font-size: 1.2rem;
    }
    
    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-thumbnails {
        display: none;
    }
}

/* Restaurant Detail Pages */
.restaurant-detail-page {
    padding-top: 80px;
    min-height: 100vh;
}

.breadcrumbs {
    padding: 1rem 0;
    color: #666;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: #3d7c17;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.restaurant-hero {
    background: #f8f9fa;
    padding: 3rem 0;
}

.restaurant-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.restaurant-images .main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.restaurant-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 1rem;
}

.rating {
    margin-bottom: 1rem;
}

.stars {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.rating-number {
    font-size: 1.2rem;
    color: #666;
    font-weight: 600;
}

.quick-info {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.quick-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 1rem;
}

.quick-info i {
    color: #3d7c17;
}

.features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.feature-badge {
    background: #e8f5e9;
    color: #2d5016;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-call {
    background: #3d7c17;
    color: white;
}

.btn-call:hover {
    background: #2d5016;
    transform: translateY(-2px);
}

.btn-directions {
    background: #4285f4;
    color: white;
}

.btn-directions:hover {
    background: #3367d6;
    transform: translateY(-2px);
}

.btn-website {
    background: #fff;
    color: #3d7c17;
    border: 2px solid #3d7c17;
}

.btn-website:hover {
    background: #3d7c17;
    color: white;
    transform: translateY(-2px);
}

.restaurant-details {
    padding: 4rem 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.main-content .section {
    margin-bottom: 3rem;
}

.main-content h2 {
    color: #2d5016;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.gf-features {
    list-style: none;
    padding: 0;
}

.gf-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
}

.gf-features li:before {
    content: "✓ ";
    color: #3d7c17;
    font-weight: bold;
    margin-right: 0.5rem;
}

.related-restaurants, .nearby-restaurants {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.related-restaurants h3, .nearby-restaurants h3 {
    color: #2d5016;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.related-restaurants ul, .nearby-restaurants ul {
    list-style: none;
    padding: 0;
}

.related-restaurants li, .nearby-restaurants li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.related-restaurants li:last-child, .nearby-restaurants li:last-child {
    border-bottom: none;
}

.related-restaurants a, .nearby-restaurants a {
    color: #3d7c17;
    text-decoration: none;
    font-weight: 600;
}

.related-restaurants a:hover, .nearby-restaurants a:hover {
    text-decoration: underline;
}

.sidebar .contact-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-card h3 {
    color: #2d5016;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-info i {
    color: #3d7c17;
    margin-right: 0.5rem;
}

.contact-info a {
    color: #3d7c17;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.back-to-directory {
    margin-top: 2rem;
}

.btn-primary {
    background: #3d7c17;
    color: white;
    text-align: center;
    display: block;
    padding: 1rem;
}

.btn-primary:hover {
    background: #2d5016;
}

@media (max-width: 768px) {
    .restaurant-header {
        grid-template-columns: 1fr;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .restaurant-info h1 {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}
