@import url('https://fonts.googleapis.com/css2?family=Betania+Patmos+In+GDL&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Oleo+Script+Swash+Caps:wght@400;700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background-color:blanchedalmond;
    font-family:"Open Sans", sans-serif;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* NAVBAR */
.a{
    display:flex;
    justify-content:space-between;
    background-color:yellow;
    align-items:center;
}

.a1{
    display:flex;
    align-items:center;
    font-family:"Merriweather", serif;
    justify-content:space-between;
}

.a1_2{
    color:black;
}

.a3{
    display:flex;
    align-items:center;
    gap:20px;
    padding:10px;
}

.a4{
    background-color:rgb(245,246,246);
    padding:20px;
    color:blue;
}

/* TITLE */
.b1{
    text-align:center;
    background-color:yellow;
    margin-left:500px;
    margin-right:550px;
    font-family:"Oleo Script Swash Caps", system-ui;
    font-weight:700;
}

/* HERO SECTION */
.c{
    height:500px;
    background-image:url(./class_c.png);
    background-size:cover;
    background-position:center;
}

.c1{
    color:white;
    text-align:center;
    font-size:40px;
}

.c2{
    color:white;
    text-align:center;
    font-size:20px;
}

/* MENU SECTION */
.d{
    text-align:center;
    color:red;
    font-weight:800;
    font-size:35px;
    padding:20px 0;
}

.dheader{
    text-align:center;
    font-size:25px;
    color:rgb(8,8,235);
    padding:20px 0;
}

.d1{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border:4px solid orange;
    border-radius:20px;
    gap:20px;
}

.d1_2,.d1_3{
    border:2px solid #1e5eff;
    border-radius:14px;
    padding:20px;
    text-align:center;
    background-color:#ffffff;
    box-shadow:0 6px 18px rgba(30,94,255,0.15);
    transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.d1_2:hover,.d1_3:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(30,94,255,0.25);
}

.d1_4{
    background:orange;
    color:#7214ee;
    margin:20px 150px;
    padding:10px 0;
    text-align:center;
}

.d1_4:hover{
    background:rgb(99,219,8);
}

/* HOW TO ORDER */
.order{
    padding:60px 20px;
    background-color:#fafafa;
    text-align:center;
}

.order-title{
    font-size:28px;
    margin-bottom:40px;
    letter-spacing:1px;
}

.order-steps{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.step{
    width:260px;
    padding:20px;
    border:2px solid #1e5eff;
    border-radius:14px;
    background-color:#fff;
    box-shadow:0 6px 18px rgba(30,94,255,0.15);
}

.step img{
    width:55px;
    margin-bottom:15px;
}

.step h3{
    margin-bottom:10px;
    color:#0b2fa8;
}

.step p{
    font-size:14px;
    line-height:1.5;
    color:#333;
}

.arrow{
    font-size:40px;
    font-weight:bold;
    color:#1e5eff;
}

/* DELIVERY NOTE */
.delivery-note{
    margin-top:25px;
    font-size:16px;
    font-weight:600;
    color:#0b2fa8;
}

/* ORDER BUTTON */
.order-button{
    margin-top:15px;
}

.order-btn{
    display:inline-block;
    background:orange;
    color:black;
    padding:12px 28px;
    border-radius:8px;
    font-weight:bold;
    transition:0.3s;
}

.order-btn:hover{
    background:rgb(99,219,8);
}

/* BUTTON ANIMATION */
@keyframes buttonanimation{
    from{
        background-color:#f3f3f1;
        font-size:small;
    }
    to{
        background-color:#d1c39b;
        font-size:larger;
    }
}

/* GOOGLE FORM SECTION */
.gform{
    text-align:center;
    background-color:rgb(238,237,236);
    color:blue;
    padding:20px;
    margin:20px 400px 0 400px;
}

.gform1{
    text-align:center;
    padding:20px;
    margin:0 600px;
    animation:buttonanimation 2s infinite;
}

/* NOTICE */
.notice{
    background-color:rgb(238,237,236);
    color:rgb(31,31,59);
    padding:20px;
    margin:20px 400px;
    text-align:center;
}

/* FOOTER */
footer{
    text-align:center;
    background-color:#f1eeee;
    padding:10px;
}

/* MOBILE VIEW */
@media (max-width:768px){

    .a{
        flex-direction:column;
    }

    .a3{
        flex-direction:column;
        gap:10px;
    }

    .d1{
        grid-template-columns:1fr;
    }

    .d1_4{
        margin:20px;
    }

    .order-steps{
        flex-direction:column;
    }

    .step{
        width:100%;
    }

    .arrow{
        display:none;
    }

    .gform,
    .gform1,
    .notice{
        margin-left:20px;
        margin-right:20px;
    }

    .b1{
        margin-left:20px;
        margin-right:20px;
    }
}