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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    cursor: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cfilter id='shadow'%3E%3CfeDropShadow dx='1.5' dy='1.5' stdDeviation='1.2' flood-color='%23000' flood-opacity='0.3'/%3E%3C/filter%3E%3C/defs%3E%3Ctext x='20' y='30' text-anchor='middle' font-size='26' filter='url(%23shadow)' fill='%23ff9021'%3E🍴%3C/text%3E%3C/svg%3E") 20 20, auto;
}

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

/* Custom Cursor for Interactive Elements */
a, button, .order-card, .hamburger, .nav-link {
    cursor: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cfilter id='shadow'%3E%3CfeDropShadow dx='1.5' dy='1.5' stdDeviation='1.2' flood-color='%23000' flood-opacity='0.4'/%3E%3C/filter%3E%3C/defs%3E%3Ctext x='20' y='30' text-anchor='middle' font-size='28' filter='url(%23shadow)' fill='%23ff6b35'%3E🥄%3C/text%3E%3C/svg%3E") 20 20, pointer;
}

/* Steam Animation Effects - REMOVED */

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes spiceGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
    }
}

/* Steam effects removed per user request */

/* Spice Level Indicators */
.spice-level {
    display: inline-flex;
    gap: 2px;
    margin-left: 8px;
    align-items: center;
}

.spice-level .chili {
    font-size: 1rem;
    animation: spiceGlow 2s ease-in-out infinite;
}

.spice-level.mild .chili:nth-child(1) {
    animation-delay: 0s;
}

.spice-level.medium .chili:nth-child(1) {
    animation-delay: 0s;
}

.spice-level.medium .chili:nth-child(2) {
    animation-delay: 0.3s;
}

.spice-level.hot .chili:nth-child(1) {
    animation-delay: 0s;
}

.spice-level.hot .chili:nth-child(2) {
    animation-delay: 0.3s;
}

.spice-level.hot .chili:nth-child(3) {
    animation-delay: 0.6s;
}

/* Floating Animation for Ingredients */
.ingredient-float {
    animation: float 3s ease-in-out infinite;
}

.ingredient-float:nth-child(even) {
    animation-delay: 1s;
}

/* Special Ingredients Display */
.special-ingredients {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.menu-item:hover .special-ingredients {
    transform: scale(1.02);
}

.ingredient {
    font-size: 0.8rem;
    background: rgba(255, 144, 33, 0.1);
    color: #ff9021;
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 144, 33, 0.3);
    white-space: nowrap;
}

/* Menu Image Positioning for Spice Level */
.menu-image {
    position: relative;
}

.menu-image .spice-level {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 4px 8px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.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;
    gap: 0.75rem;
}

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

.nav-logo h2 {
    color: #ff9021;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff9021;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #ff9021;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.order-btn {
    background: #ff9021;
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.order-btn::after {
    display: none;
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-right: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat i {
    color: #ff9021;
    font-size: 1.2rem;
}

.stat span {
    font-weight: 600;
    color: #333;
}

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

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn.primary {
    background: #ff9021;
    color: white;
}

.btn.primary:hover {
    background: #e6811e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 144, 33, 0.3);
}

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

.btn.secondary:hover {
    background: #ff9021;
    color: white;
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
}

.section-title::before,
.section-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff9021, #ff6b35, #ff9021);
    border-radius: 2px;
}

.section-title::before {
    left: -80px;
    background-image: repeating-linear-gradient(90deg, #ff9021 0px, #ff6b35 8px, #ff9021 16px);
}

.section-title::after {
    right: -80px;
    background-image: repeating-linear-gradient(90deg, #ff9021 0px, #ff6b35 8px, #ff9021 16px);
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-subtitle::after {
    content: "\f06c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: block;
    text-align: center;
    font-size: 1.5rem;
    margin-top: 10px;
    color: #2ecc71;
    animation: float 3s ease-in-out infinite;
}

/* Menu Section */
.menu {
    padding: 100px 0;
    background: white;
}

.menu-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ff9021;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid #ff9021;
    padding-bottom: 0.5rem;
    display: inline-block;
    width: 100%;
}

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

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

.menu-item:hover {
    transform: translateY(-10px);
    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-item:hover .menu-image img {
    transform: scale(1.1);
}

.menu-content {
    padding: 1.5rem;
}

.menu-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #333;
}

.menu-content h5 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: #ff9021;
}

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

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

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

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

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature i {
    color: #ff9021;
    font-size: 1.2rem;
}

.feature span {
    font-weight: 500;
    color: #333;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Bulk Orders Section */
.bulk-orders {
    padding: 100px 0;
    background: #f8f9fa;
}

.bulk-orders-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.bulk-intro h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.bulk-intro p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.event-types h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.event-item i {
    color: #ff9021;
    font-size: 1.3rem;
}

.event-item span {
    font-weight: 500;
    color: #333;
}

.bulk-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    color: #ff9021;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-item h5 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.bulk-contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.bulk-contact-card h3 {
    color: #333;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.bulk-contact-card > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-method i {
    color: #ff9021;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-method h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.phone-link {
    color: #ff9021;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.phone-link:hover {
    color: #e6811e;
}

.contact-method p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.order-process {
    margin: 2rem 0;
}

.order-process h4 {
    color: #333;
    margin-bottom: 1rem;
}

.order-process ol {
    color: #666;
    line-height: 1.8;
    padding-left: 1.5rem;
}

.order-process li {
    margin-bottom: 0.5rem;
}

.bulk-note {
    background: #fff3e0;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ff9021;
}

.bulk-note p {
    color: #333;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Order Section */
.order {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff9021 0%, #e6811e 100%);
    color: white;
    text-align: center;
}

.order h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.order p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.order-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.order-card {
    background: white;
    color: #333;
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.order-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.order-card i {
    font-size: 3rem;
    color: #ff9021;
    margin-bottom: 1rem;
}

.order-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.order-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.order-card .order-btn {
    background: #ff9021;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
}

.phone-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff9021;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

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

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

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

.contact-item i {
    color: #ff9021;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.contact-form h3 {
    margin-bottom: 1rem;
    color: #333;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

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

/* Footer */
.footer {
    background: #333;
    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 {
    color: #ff9021;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

    .nav-logo-img {
        height: 35px;
    }

    .nav-logo h2 {
        font-size: 1.4rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        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;
    }

    /* Hamburger animation */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }

    .hero-content {
        margin-right: 0;
        margin-bottom: 2rem;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bulk-orders-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .bulk-contact-card {
        position: static;
    }

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

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

    .order-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .nav-logo-img {
        height: 30px;
    }

    .nav-logo h2 {
        font-size: 1.2rem;
    }

    .nav-logo {
        gap: 0.5rem;
    }
}

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

.menu-item,
.about-content,
.contact-content {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Dynamic Menu Loading Styles */
.loading-menu {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-style: italic;
}

.loading-menu p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Menu fade-in animation */
#menu-categories-container {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out 0.2s forwards;
}

#menu-categories-container.loaded {
    opacity: 1;
}

/* Menu item hover enhancements for dynamic content */
.menu-item {
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.menu-item img {
    transition: transform 0.3s ease;
}

.menu-item:hover img {
    transform: scale(1.05);
}

/* Animation for dynamically added items */
.menu-item.newly-added {
    animation: slideInUp 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
