/* ===================================
HERO
=================================== */

.hero{

    padding:80px 0;

}

.hero-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

}

.hero-text{

    flex:1;

}

.hero-text h1{

    font-size:56px;

    line-height:1.2;

    margin-bottom:20px;

}

.hero-text span{

    color:#ff6b00;

}

.hero-text p{

    color:#666;

    margin-bottom:35px;

}

.hero-image{

    flex:1;

    text-align:center;

}

.hero-image img{

    width:100%;

    max-width:500px;

}

/* ===================================
SEARCH
=================================== */

.search-box{

    display:flex;

    background:white;

    border-radius:60px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.search-box input{

    flex:1;

    border:none;

    outline:none;

    padding:18px;

    font-size:16px;

}

.search-box button{

    width:70px;

    border:none;

    background:#ff6b00;

    color:white;

    cursor:pointer;

    font-size:18px;

}

/* ===================================
SECTION
=================================== */

section{

    padding:80px 0;

}

.section-title{

    text-align:center;

    margin-bottom:50px;

}

.section-title h2{

    font-size:40px;

    margin-bottom:10px;

}

.section-title p{

    color:#777;

}

/* ===================================
KATEGORI
=================================== */

.kategori-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(160px,1fr));

    gap:25px;

}

.kategori-card{

    background:white;

    border-radius:20px;

    text-align:center;

    padding:35px;

    font-size:50px;

    transition:.3s;

    cursor:pointer;

}

.kategori-card h3{

    font-size:20px;

    margin-top:15px;

}

.kategori-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

/* ===================================
RESTO
=================================== */

.resto-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.resto-card{

    background:white;

    border-radius:20px;

    overflow:hidden;

    transition:.3s;

}

.resto-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.1);

}

.resto-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.resto-body{

    padding:25px;

}

.resto-body h3{

    margin-bottom:10px;

}

.resto-body p{

    color:#777;

    margin-bottom:15px;

}

.resto-body span{

    color:#ff6b00;

    font-weight:bold;

}

.resto-body a{

    display:inline-block;

    margin-top:20px;

    text-decoration:none;

    color:white;

    background:#ff6b00;

    padding:12px 22px;

    border-radius:40px;

}
/* ===================================
CARA ORDER
=================================== */

.langkah-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.langkah{

    background:white;

    padding:35px;

    border-radius:20px;

    text-align:center;

    transition:.3s;

}

.langkah:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.angka{

    width:70px;

    height:70px;

    margin:auto;

    margin-bottom:20px;

    background:#ff6b00;

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    font-weight:bold;

}

.langkah h3{

    margin-bottom:15px;

}

.langkah p{

    color:#777;

}

/* ===================================
   KEUNGGULAN
=================================== */

.kelebihan{
    padding:90px 0;
    background:#fff;
}

.kelebihan-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:50px;
}

.item{
    background:#f8f9fa;
    border-radius:20px;
    padding:35px 30px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.item:hover{
    background:#ff6b00;
    color:#fff;
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(255,107,0,.25);
}

.item i{
    font-size:48px;
    margin-bottom:18px;
    display:block;
}

.item h3{
    margin-bottom:15px;
    font-size:22px;
}

.item p{
    font-size:15px;
    line-height:1.8;
}

.item:hover p{
    color:#fff;
}
/* ===================================
CTA
=================================== */

.cta{

    background:linear-gradient(135deg,#ff6b00,#ff944d);

    color:white;

    text-align:center;

}

.cta h2{

    font-size:42px;

    margin-bottom:20px;

}

.cta p{

    max-width:700px;

    margin:auto;

    margin-bottom:35px;

    font-size:18px;

}

.cta .btn-order{

    background:white;

    color:#ff6b00;

}

.cta .btn-order:hover{

    background:#222;

    color:white;

}
