body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #1a1a1a;
    color: #fff;
    line-height: 1.6;
}

.navbar {
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(211, 201, 166, 0.2);
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    padding: 1rem 0;
}

.navbar-brand {
    color: #fff;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link {
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    margin-left: 1.5rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.nav-link:hover {
    color: #d3c9a6;
    transform: translateY(-2px);
}

.hero {
    height: 100vh;
    min-height: 400px;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(26, 26, 26, 0.4));
    z-index: 1;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    color: #d3c9a6;
    font-weight: 400;
}

.btn-primary {
    background: #d3c9a6;
    color: #1a1a1a;
    border: none;
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #c0b391;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(211, 201, 166, 0.4);
}

.section {
    padding: 3.5rem 0;
}

.about {
    background: #1a1a1a;
}

.about h2 {
    color: #d3c9a6;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about .row {
    align-items: center;
}

.about img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.about img:hover {
    transform: scale(1.02);
}

.commitment {
    background: #1a1a1a;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.commitment-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.commitment-left {
    position: relative;
    flex-shrink: 0;
}

.chef-img {
    width: clamp(150px, 20vw, 250px);
    height: clamp(150px, 20vw, 250px);
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #d3c9a6;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

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

.experience {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.commitment-right {
    flex: 1;
    color: #d3c9a6;
    text-align: left;
    
}

.commitment-right h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    color: #fff;
}

.commitment-right p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #d3c9a6;
}

.commitment-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.commitment-features li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.8rem;
    color: #fff;
}

.commitment-features li:before {
    content: "✔";
    color: #d3c9a6;
    position: absolute;
    left: 0;
    font-weight: 700;
}

.commitment-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn-order {
    background: #d3c9a6;
    color: #1a1a1a;
    padding: 0.9rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-order:hover {
    background: #c0b391;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(211, 201, 166, 0.4);
}

.btn-readmore {
    background: #4a4a4a;
    color: #fff;
    padding: 0.9rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-readmore:hover {
    background: #666;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(74, 74, 74, 0.4);
}

.chili-img {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.chili-pepper {
    width: clamp(120px, 15vw, 180px);
    height: auto;
    opacity: 0.8;
    transition: transform 0.3s ease;
    padding-top: 70px; /* Adjusted for better centering */
}

.chili-img:hover .chili-pepper {
    transform: rotate(10deg) scale(1.1);
}

.signature-mains {
    background: #1a1a1a;
    padding: 5rem 0;
}

.signature-mains-content {
    text-align: center;
}

.signature-mains-header .subheading {
    font-size: 1.2rem;
    color: #d3c9a6;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.signature-mains-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #d3c9a6;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.signature-mains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.signature-item {
    background: #2d2d2d;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-align: center;
}

.signature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.signature-img {
    width: 100%;
    height: clamp(150px, 20vw, 200px);
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

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

.signature-item h4 {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    color: #d3c9a6;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.signature-item p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 0;
}

.signature-mains-footer {
    margin-top: 2.5rem;
}

.menu-item {
    background: #2d2d2d;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-align: center;
}

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

.menu-item img {
    width: 100%;
    height: clamp(150px, 25vw, 200px);
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.menu-item h4 {
    color: #d3c9a6;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.menu-item p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.4;
}

.parallax {
    background: url('https://images.unsplash.com/photo-1555396273-36734d41d506') no-repeat center center/cover;
    height: clamp(250px, 40vw, 400px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-attachment: fixed;
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(26, 26, 26, 0.6));
    z-index: 1;
}

.parallax h2 {
    position: relative;
    z-index: 2;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.contact-form {
    background: #2d2d2d;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}

.contact-form .form-control {
    background: #3d3d3d;
    border: none;
    color: #fff;
    border-radius: 5px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: #3d3d3d;
    border: 1px solid #d3c9a6;
    box-shadow: 0 0 5px rgba(211, 201, 166, 0.5);
}

.contact-form .form-control::placeholder {
    color: #d3c9a6;
    opacity: 0.8;
}

.contact-form .btn-primary {
    background: #d3c9a6;
    color: #1a1a1a;
    width: 100%;
    padding: 0.9rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: #c0b391;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(211, 201, 166, 0.4);
}

footer {
    background: #1a1a1a;
    color: #fff;
    padding: 2.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(211, 201, 166, 0.2);
}

footer a {
    color: #d3c9a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #c0b391;
}

/* Responsive Design */
@media (max-width: 576px) {
    .hero {
        height: 70vh;
        min-height: 300px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .about .row {
        flex-direction: column-reverse;
    }
    .about .col-md-6 {
        margin-bottom: 1.5rem;
    }
    .about h2 {
        font-size: 1.8rem;
    }
    .commitment-content {
        flex-direction: column;
        text-align: center;
        
        
    }
    .commitment-left {
        margin-bottom: 2rem;
    }
    .commitment-right h2 {
        font-size: 1.8rem;
    }
    .commitment-right p {
        font-size: 0.95rem;
    }
    .chili-img {
        position: static;
        transform: none;
        margin-top: 1rem;
    }
    .chili-pepper {
        width: 100px;
    }
    .signature-mains-header h2 {
        font-size: 1.8rem;
    }
    .signature-mains-grid {
        grid-template-columns: 1fr;
    }
    .signature-item img {
        height: 120px;
    }
    .signature-item h4 {
        font-size: 1.1rem;
    }
    .parallax {
        height: 200px;
    }
    .parallax h2 {
        font-size: 1.5rem;
    }
    .menu-item img {
        height: 120px;
    }
    .menu-item h4 {
        font-size: 1.1rem;
    }
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    .nav-link {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    .contact-form {
        padding: 1.2rem;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .hero {
        height: 80vh;
        min-height: 350px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .about h2 {
        font-size: 2rem;
    }
    .commitment-right {
        max-width: 60%;
    }
    .chef-img {
        width: 180px;
        height: 180px;
    }
    .chili-pepper {
        width: 140px;
    }
    .signature-mains-header h2 {
        font-size: 2.2rem;
    }
    .signature-mains-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .signature-item img {
        height: 160px;
    }
    .parallax {
        height: 250px;
    }
    .parallax h2 {
        font-size: 1.8rem;
    }
    .menu-item img {
        height: 160px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    .hero p {
        font-size: 1.3rem;
    }
    .about h2 {
        font-size: 2.2rem;
    }
    .commitment-right {
        max-width: 55%;
    }
    .chef-img {
        width: 200px;
        height: 200px;
    }
    .chili-pepper {
        width: 150px;
    }
    .signature-mains-header h2 {
        font-size: 2.5rem;
    }
    .signature-mains-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .signature-item img {
        height: 180px;
    }
    .menu-item img {
        height: 180px;
    }
    .parallax {
        height: 350px;
    }
}