/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
    color: #333;
    overflow-x: hidden;
}

/* Header Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1927c3 0%, #e0224b 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    /* background: rgba(255, 255, 255, 0.2); */
    background: #047c58;
    transform: translateY(-2px);
}

.nav-link i {
    font-size: 1rem;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    transition: margin-top 0.3s ease;
}

/* Hero Section */
.hero-section {
    padding: 2.5rem 2rem 2rem 3rem;
    text-align: center;
    /* background: linear-gradient(135deg, #cdc4ae 0%, #cbbc18 100%); */
    background: url('2.png') center center/cover no-repeat, linear-gradient(135deg, #d26919 0%, #e08e22 100%);
    min-height: 320px;
    max-height: 380px;
    height: 38vw;
    position: relative;
    overflow: hidden;
    align-items: center;
}

.hero-content {
    background: none;
    color: #fff;
    padding: 2rem;
    border-radius: 0;
    text-align: center;
    border: none;
    box-shadow: none;
}

.hero-content h1 {
    margin-bottom: 2rem; /* Adds space between h1 and search bar */
    font-size: 2.5rem;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif

}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 500;
    color: rgb(221, 223, 232);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Foods Hero Section */
.foods-hero-section {
    padding: 4rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
    position: relative;
    overflow: hidden;
}

.foods-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.foods-hero-content {
    position: relative;
    z-index: 2;
}

.foods-hero-title {
    font-size: 3.3rem;
    font-weight: 550;
    color: #3d0231;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.foods-hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Search Bar */
.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-bar {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-bar:focus-within {
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.search-icon {
    color: #ff6b35;
    margin-left: 1rem;
    font-size: 1.2rem;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    background: transparent;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: transparent;
    color: #333;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.search-btn:hover {
    background: transparent;
    transform: none;
}

/* Menu Section */
.hero-section {
    background-image: url('1.png');
    width: auto; /* Adjust as needed */
    height: 600px; /* Adjust as needed */
   
}
.menu-section {
    margin-top: 5rem;
    padding: 2rem 2rem;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.menu-image {
    height: 200px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-card:hover .menu-image img {
    transform: scale(1.1);
}

.menu-content {
    padding: 1.5rem;
}

.menu-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.menu-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b35;
}

/* Foods Section */
.foods-section {
    padding: 4rem 3rem;
    background: white;
}

.foods-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Food Categories */
.food-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    background: #f8f9fa;
    color: #666;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.category-btn:hover,
.category-btn.active {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

/* Foods Grid */
.foods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.food-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.food-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.food-image {
    height: 200px;
    overflow: hidden;
}

.food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.food-card:hover .food-image img {
    transform: scale(1.1);
}

.food-content {
    padding: 1.5rem;
}

.food-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.food-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.food-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b35;
}

.rating {
    font-size: 0.9rem;
    color: #666;
}

.order-food-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.order-food-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.order-food-btn:active {
    transform: translateY(0);
}

/* Back to Home Section */
.back-home-section {
    padding: 1.2rem 3rem 1.2rem 3rem;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
    text-align: center;
}

.back-home-container {
    max-width: 1200px;
    margin: 0 auto;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.back-home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* Order Button */
.order-section {
    text-align: center;
    margin-top: 1.2rem;
}

.order-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.order-btn:active {
    transform: translateY(-1px);
}

/* View All Foods Section */
.view-all-foods-section {
    text-align: center;
    margin: 2rem 0 0.5rem 0;
}

.view-all-foods-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.view-all-foods-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.4);
}

.view-all-foods-btn i {
    font-size: 1.2rem;
}

/* About Section */
.about-section {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 2;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.chef-greeting {
    flex: 1;
    text-align: center;
}

.chef-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 3rem;
    color: white;
    animation: wave 2s infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

.chef-greeting p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff6b35;
}

/* Contact Section */
.contact-section {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-info > div {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f3e0e8;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-info > div:hover {
    background: #aacce7;
    transform: translateY(-5px);
}

.contact-info i {
    font-size: 1.5rem;
    color: #ff6b35;
    width: 30px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 2rem 3rem;
    text-align: center;
    align-items: center;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-text p {
    font-size: 1rem;
    color: #ccc;
   
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #e55a2b;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-content {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-title,
    .foods-hero-title {
        font-size: 3rem;
    }
    
    .food-categories {
        gap: 0.8rem;
    }
    
    .category-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0.5rem 0;
    }
    
    .header-content {
        padding: 0 1rem;
        flex-wrap: wrap;
    }
    
    .logo h1 {
        font-size: 1.5rem;
        order: 1;
        flex: 1;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 2;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        border-radius: 0;
        justify-content: flex-start;
        width: 100%;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, 0.2);
        transform: none;
    }
    
    .main-content {
        margin-top: 70px;
    }
    
    .hero-section,
    .foods-hero-section,
    .menu-section,
    .foods-section,
    .about-section,
    .contact-section,
    .back-home-section {
        padding: 2rem 1.5rem;
    }
    
    .hero-title,
    .foods-hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .menu-grid,
    .foods-grid {
        grid-template-columns: 1fr;
    }
    
    .food-categories {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .hero-title,
    .foods-hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        color: #c0392b;
    }
    
    .order-btn {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
        color: #ff6b35;
    .search-input {
        font-size: 1rem;
    }
    
    .food-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-card,
.food-card,
.about-content,
.contact-info > div {
    animation: fadeInUp 0.6s ease forwards;
}

/* Sticky Search Bar */
.search-container.sticky {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 600px;
}

/* Cart Animation */
@keyframes cartShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.order-btn.shake,
.order-food-btn.shake {
    animation: cartShake 0.5s ease;
} 
@media (max-width: 600px) {
        .hero-section {
            min-height: 280px; /* Larger for mobile */
            height: 90vw;
            max-height: 50px;
            background-position: center center;
            background-size: cover;
            background-repeat: no-repeat;
            padding: 1.2rem 0.5rem 0.5rem 0.5rem;
            display: flex;
            align-items: flex-start;
            justify-content: center;
        }
    .hero-content {
        padding: 0.3rem 0.2rem 0.2rem 0.2rem;
        font-size: 0.95rem;
        border-radius: 8px;
        background: transparent;
        box-shadow: none;
        width: 100%;
    }
    .hero-content h1 {
        font-size: 2.3rem;
        line-height: 1.5;
        margin-top: 0.4rem;
        margin-bottom: 0.9rem;
        text-shadow: 1px 1px 4px rgba(0,0,0,0.18);
    }
    .search-container {
        width: 80%;
        max-width: 100%;
        margin-top: 0.2rem;
    }
    .search-bar {
        padding: 0.2rem;
        border-radius: 40px;
    }
    .search-icon {
        font-size: 1rem;
        margin-left: 0.5rem;
    }
    .search-input {
        font-size: 0.9rem;
        padding: 0.5rem 0.7rem;
    }
    .search-btn {
        padding: 0.5rem 0.8rem;
        font-size: 1rem;
    }
}

