*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    }
    
    body{
    background:#f7ebe6;
    color:#111;
    }
    
    
    /* NAVBAR */
    
    .navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:white;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    position:sticky;
    top:0;
    z-index:1000;
    }
    
    .logo{
    font-size:22px;
    font-weight:700;
    }
    
    .nav-links{
    display:flex;
    gap:30px;
    }
    
    .nav-links a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    }
    
    .nav-links a:hover{
    color:#ff7a00;
    }
    
    .menu-btn{
    display:none;
    font-size:28px;
    cursor:pointer;
    }
    
    
    
    /* HERO */
    
    .food-hero{
    padding:90px 8%;
    }
    
    .hero-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
    }
    
    .hero-text{
    max-width:520px;
    }
    
    .hero-text h1{
    font-size:50px;
    line-height:1.2;
    }
    
    .hero-text span{
    color:#ff7a00;
    }
    
    .hero-text p{
    margin:25px 0;
    font-size:17px;
    color:#555;
    line-height:1.6;
    }
    
    .hero-btn{
    display:inline-block;
    background:#ff7a00;
    color:white;
    padding:14px 30px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    }
    
    .hero-image img{
    width:420px;
    max-width:100%;
    }
    
    
    
    /* INFO */
    
    .info{
    padding:80px 8%;
    background:white;
    text-align:center;
    }
    
    .info h2{
    font-size:34px;
    margin-bottom:20px;
    }
    
    .info p{
    max-width:750px;
    margin:auto;
    color:#555;
    line-height:1.7;
    }
    
    
    
    /* CTA */
    
    .cta{
    padding:80px 8%;
    text-align:center;
    }
    
    .cta h2{
    font-size:32px;
    margin-bottom:20px;
    }
    
    .cta a{
    background:#ff7a00;
    color:white;
    padding:14px 28px;
    border-radius:30px;
    text-decoration:none;
    }
    
    
    
    /* FOOTER */
    
    footer{
    background:#111;
    color:white;
    padding:50px 8%;
    text-align:center;
    }
    
    footer p{
    opacity:0.7;
    margin-top:10px;
    }
    
    
    
    /* RESPONSIVE */
    
    @media(max-width:900px){
    
    .menu-btn{
    display:block;
    }
    
    .nav-links{
    position:absolute;
    top:70px;
    right:-100%;
    background:white;
    flex-direction:column;
    width:200px;
    padding:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    transition:0.3s;
    }
    
    .nav-links.active{
    right:0;
    }
    
    .hero-container{
    flex-direction:column;
    text-align:center;
    }
    
    .hero-text h1{
    font-size:36px;
    }
    
    .hero-image img{
    width:300px;
    }
    
    }

/* FLOATING PHONE IMAGE */

.hero-image img{
    width:420px;
    max-width:100%;
    animation: floatImage 4s ease-in-out infinite;
    filter: drop-shadow(0px 25px 40px rgba(0,0,0,0.25));
    }
    
    
    /* FLOAT ANIMATION */
    
    @keyframes floatImage{
    
    0%{
    transform:translateY(0px);
    }
    
    50%{
    transform:translateY(-20px);
    }
    
    100%{
    transform:translateY(0px);
    }
    
    }

    .hero-image{
        position:relative;
        }
        
        .hero-image::before{
        
        content:"";
        position:absolute;
        width:300px;
        height:300px;
        background:radial-gradient(circle,#ff7a0040,transparent);
        top:50%;
        left:50%;
        transform:translate(-50%,-50%);
        filter:blur(60px);
        z-index:-1;
        
        }


/* PROCESS SECTION */

.process{
    padding:90px 8%;
    background:#fdf6f2;
    text-align:center;
    }
    
    .process h2{
    font-size:34px;
    margin-bottom:50px;
    }
    
    .process-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    }
    
    .process-card{
    background:white;
    padding:30px;
    border-radius:15px;
    width:280px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
    }
    
    .process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
    }
    
    .process-card h3{
    margin-bottom:10px;
    }
    
    .process-card p{
    color:#555;
    font-size:15px;
    line-height:1.6;
    }








/* Contact Section */
.contact {
    padding: 60px 50px;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ff6f00;
}

.contact p {
    font-size: 18px;
}


/* ===== UNIVERSAL NAVBAR RESPONSIVE FIX ===== */

.navbar{
    flex-wrap:wrap;
    }
    
    /* NAV LINKS FLEX */
    
    .nav-links{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:25px;
    }
    
    /* DROPDOWN POSITION FIX */
    
    .dropdown{
    top:100%;
    left:0;
    }
    
    /* TABLET */
    
    @media (max-width:1024px){
    
    .navbar{
    padding:12px 5%;
    }
    
    .logo{
    font-size:20px;
    }
    
    .nav-links{
    gap:20px;
    }
    
    }
    
    /* MOBILE */
    
    @media (max-width:768px){
    
    .navbar{
    padding:12px 4%;
    }
    
    .nav-links{
    
    width:100%;
    justify-content:center;
    margin-top:10px;
    
    }
    
    .nav-links a{
    font-size:14px;
    margin-right: 15px;
    }
    
    .dropdown{
    width:100%;
    }
    
    }
    
    /* SMALL MOBILE */
    
    @media (max-width:480px){
    
    .logo{
    font-size:18px;
    }
    
    .nav-links{
    gap:15px;
    }
    
    .nav-links a{
    font-size:13px;
    }
    
    }