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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
    color: white;
    text-align: center;
    padding: 60px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    background: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-weight: 500;
}


.hero-status-text {
    font-size: 1rem;
    color: white;
    font-weight: 600;
}

.hero-status-hours {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 4px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    cursor: pointer;
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Business Stats Section */
.business-stats {
    background: #f8f9fa;
    padding: 60px 0;
}

.business-stats .container {
    text-align: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}


@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Why Choose Section */
.why-choose {
    background: white;
    padding: 80px 0;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2d5016;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2d5016;
}

.feature-icon i {
    display: block;
}

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

.feature p {
    color: #666;
    line-height: 1.5;
}

/* Menu Preview */
.menu-preview {
    background: #f1f3f4;
    padding: 80px 0;
}

.menu-preview h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2d5016;
    margin-bottom: 50px;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.menu-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.menu-image {
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.menu-details {
    padding: 25px;
}

.menu-details h3 {
    font-size: 1.4rem;
    color: #2d5016;
    margin-bottom: 10px;
}

.menu-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.menu-options {
    margin-bottom: 20px;
}

.protein-tag {
    display: inline-block;
    background: #e8f5e8;
    color: #2d5016;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 8px;
    margin-bottom: 8px;
    font-weight: 500;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.menu-cta {
    text-align: center;
}

.add-ons-note {
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

/* How to Order */
.how-to-order {
    background: white;
    padding: 80px 0;
}

.how-to-order h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2d5016;
    margin-bottom: 50px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    color: #2d5016;
    margin-bottom: 15px;
}

.step p {
    color: #666;
    line-height: 1.5;
}

/* Service Info */
.service-info {
    background: #f1f3f4;
    padding: 60px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-item h3 {
    font-size: 1.2rem;
    color: #2d5016;
    margin-bottom: 15px;
}

.service-item h3 i {
    margin-right: 8px;
    width: 20px;
}

.service-item p {
    color: #666;
    line-height: 1.5;
}

.service-item small {
    color: #999;
    font-size: 0.85rem;
}

/* Footer */
.footer {
    background: #2d5016;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    padding: 15px;
    margin: 0 auto 20px;
}

.footer-tagline {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 8px 0;
    transition: opacity 0.3s ease;
}

.contact-link i {
    margin-right: 8px;
    width: 20px;
}

.contact-link:hover {
    opacity: 0.8;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0 60px;
        min-height: 100vh;
    }
    
    .hero-logo {
        width: 160px;
        height: 160px;
        margin-bottom: 25px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-status {
        flex-direction: column;
        gap: 4px;
        padding: 10px 16px;
    }
    
    .hero-status-hours {
        margin-left: 0;
        font-size: 0.8rem;
    }
    
    .why-choose, .menu-preview, .how-to-order {
        padding: 60px 0;
    }
    
    .why-choose h2, .menu-preview h2, .how-to-order h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .features-grid, .steps {
        gap: 30px;
    }
    
    .feature, .step {
        padding: 25px 15px;
    }
    
    .menu-items {
        gap: 30px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 18px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .menu-item {
        margin: 0 10px;
    }
    
    .menu-details {
        padding: 20px;
    }
    
    .why-choose h2, .menu-preview h2, .how-to-order h2 {
        font-size: 1.6rem;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero, .why-choose, .menu-preview, .how-to-order, .service-info, .footer {
    animation: fadeInUp 0.6s ease-out;
}