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

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

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

/* Color Variables */
:root {
    --primary-red: #DC2626;
    --primary-yellow: #F59E0B;
    --secondary-red: #B91C1C;
    --secondary-yellow: #D97706;
    --light-yellow: #FEF3C7;
    --light-red: #FEE2E2;
    --dark-text: #1F2937;
    --light-text: #6B7280;
    --white: #FFFFFF;
    --cream: #FFF8F0;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
    color: var(--primary-yellow);
}

.logo p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.header-contact {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.phone-btn, .whatsapp-btn {
    background: var(--primary-yellow);
    color: var(--primary-red);
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.phone-btn:hover, .whatsapp-btn:hover {
    background: var(--secondary-yellow);
    transform: translateY(-2px);
}

/* Navigation */
.nav {
    background: var(--primary-yellow);
    padding: 0.5rem 0;
}

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

.nav-menu a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: var(--primary-red);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-yellow), var(--cream));
    padding: 3rem 0;
    min-height: 500px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.hero-image, .hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-red);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-red);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--primary-yellow);
    color: var(--primary-red);
}

.btn-secondary:hover {
    background: var(--secondary-yellow);
    transform: translateY(-2px);
}

/* Placeholder Images */
.placeholder-image {
    background: linear-gradient(135deg, var(--light-red), var(--light-yellow));
    border: 3px dashed var(--primary-red);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    color: var(--primary-red);
    font-weight: bold;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.placeholder-image small {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

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

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.chef-image, .chef-info {
    flex: 1;
    min-width: 300px;
}

.chef-info h3 {
    color: var(--primary-yellow);
    background: var(--primary-red);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.chef-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--dark-text);
}

.chef-specialties {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.specialty {
    background: var(--light-yellow);
    color: var(--primary-red);
    padding: 1rem;
    border-radius: 10px;
    border-left: 5px solid var(--primary-red);
    font-weight: bold;
}

/* Menu Section */
.menu {
    padding: 4rem 0;
    background: var(--cream);
}

.menu h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
}

.menu-category {
    margin-bottom: 4rem;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.menu-category h3 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    background: var(--light-yellow);
    padding: 1rem;
    border-radius: 15px;
}

.menu-image {
    margin-bottom: 2rem;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--light-yellow);
    border-radius: 15px;
    border-left: 5px solid var(--primary-red);
    flex-wrap: wrap;
    gap: 1rem;
}

.item-info h4 {
    color: var(--primary-red);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.item-info p {
    color: var(--dark-text);
    line-height: 1.5;
}

.item-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-yellow);
    background: var(--primary-red);
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background: var(--white);
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
}

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

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

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

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--light-yellow);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
}

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

.feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 5px solid var(--primary-red);
}

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

.feature h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature p {
    color: var(--dark-text);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: var(--white);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
}

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

.testimonial {
    background: var(--light-yellow);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-red);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stars {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--dark-text);
    line-height: 1.6;
}

.customer {
    font-weight: bold;
    color: var(--primary-red);
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 3rem;
}

.contact-content {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info, .order-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h3, .order-form h3 {
    color: var(--primary-yellow);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--primary-yellow);
    text-decoration: none;
}

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

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

.order-form input,
.order-form select,
.order-form textarea {
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    color: var(--dark-text);
}

.order-form textarea {
    resize: vertical;
    min-height: 100px;
}

.order-form button {
    background: var(--primary-yellow);
    color: var(--primary-red);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-form button:hover {
    background: var(--secondary-yellow);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--dark-text);
    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 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: var(--light-text);
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .about h2, .menu h2, .gallery h2, .features h2, .testimonials h2, .contact h2 {
        font-size: 2rem;
    }
    
    .menu-category h3 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .nav-menu::-webkit-scrollbar {
        height: 3px;
    }
    
    .nav-menu::-webkit-scrollbar-track {
        background: var(--light-yellow);
    }
    
    .nav-menu::-webkit-scrollbar-thumb {
        background: var(--primary-red);
        border-radius: 3px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-contact {
        justify-content: center;
    }
    
    .placeholder-image {
        padding: 1rem;
        min-height: 150px;
        font-size: 0.9rem;
    }
    
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .item-price {
        align-self: center;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .about h2, .menu h2, .gallery h2, .features h2, .testimonials h2, .contact h2 {
        font-size: 1.5rem;
    }
    
    .menu-category {
        padding: 1rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .placeholder-image {
        min-height: 120px;
        font-size: 0.8rem;
    }
}

/* Accessibility and Touch Improvements */
@media (max-width: 768px) {
    a, button, .menu-item {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .phone-btn, .whatsapp-btn {
        min-width: 120px;
        text-align: center;
    }
    
    .nav-menu a {
        padding: 1rem 1.5rem;
        white-space: nowrap;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 2px solid var(--primary-yellow);
    outline-offset: 2px;
}
