

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Calibri';
}

body{
    background: white;
    padding-top: 70px;
}

nav{
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    width: 100%;
    background-color: black;
    box-shadow: 0 2px 25px rgba(0,0,0,0.35);
    z-index: 1;
}

nav .NavDiv{
    position: relative;
    height: 100%;
    width: 100%;
    background-color: rgb(255, 255, 255);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .NavDiv .LogoKedai a{
    font-size: 25px ;
    font-weight: 500;
    color: rgb(255, 94, 0);
    text-decoration: none;
}

.NavDiv .Inside-Right-Nav{
    display: flex;
    align-items: center;    
}

.NavDiv .Inside-Right-Nav li{
    margin: 0 5px;
    list-style: none;
}

.Inside-Right-Nav li a{
    position: relative;
    font-size: 17px;
    font-weight: 400;
    color: rgb(255, 94, 0);
    text-decoration: none;
    padding: 10px;
}

.Welcome{
    height: 200px;
    background: rgb(255, 94, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}



/* Menu */
.Menu-Section{
    background: rgb(255, 255, 255);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 25px;
    padding-bottom: 200px;
}

/* Menu Top */

.Menu-Top{
    background-color: transparent;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: right;
    padding: 0 20px;
}

.Nav-Menu-Top{
    background-color: transparent;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: right;
    padding: 0 20px;
}

.Right-Menu-Top{
    display: flex;
    justify-content: space-between;
    width: 250px;
}

.Button-Keranjang {
    width: 25%;
    height: 100%;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 100px;
    align-items: center;
    display: flex;
    justify-content: space-around;
}

.Button-Keranjang img{
    width: 20px;
    height: 20px;
}

.Search-Input{
    border-radius: 5px;
    border: none;
    width: 100%;
    text-align: center;
    box-shadow: 0 0px 15px rgba(0,0,0,0.5);
}

.Search-Input:focus{
    outline: none;
}

/* Menu Grid */

.Menu-Grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.Menu-Card{
    width: 250px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.Menu-Card img:hover{
    transform: scale(1.1);
    z-index: 0;
}

.Menu-Card img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.Menu-Card h3{
    padding: 10px;
}

.Menu-Card p{
    padding: 0 10px 15px;
    font-size: 14px;
    color: #555;
}


.card-body{
    padding: 15px;
    text-align: center;
}

.price{
    display: block;
    margin: 8px 0 12px;
    font-weight: bold;
    color: #ff5e00;
}

.Footer-Infromation{
    position: fixed;
    bottom: -100px;
    width: 100%;
    height: 100px;
    background: rgb(30, 29, 41);
    display: flex;
    align-items: center;
    color: white;
    padding: 20px;
    transition: 0.6s ease;
}

.Footer-Show {
    transform: translateY(100px);
}

.Footer-Hidden {
    transform: translateY(-100px);
}

/* TOMBOL */

.Button-Pesan{
    width: 100%;
    text-decoration: none;
    padding: 8px;
    border: none;
    margin: 4px 2px;
    border-radius: 6px;
    font-size: 14px;
    color: white;
    transition: 0.2s;
    gap: 8px;
}

/* Efek Bola Keranjang */

.fly-ball {
    position: fixed;
    width: 14px;
    height: 14px;
    background: orange;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.7s cubic-bezier(.22,.61,.36,1), 
                opacity 0.7s;
}

/* WARNA PLATFORM */
.Button-Pesan{ background: #ff5722; }

.Button-Pesan:hover{
    opacity: 0.85;
}


@media (max-width: 400px){
    .NavDiv{
        padding: 0 10px;
    }

    .LogoKedai a{
        font-size: 18px;
    }

    .Inside-Right-Nav a{
        font-size: 14px;
        padding: 6px;
    }

    .Welcome{
        height: auto;
        padding: 30px 10px;
    }

    .Welcome h1{
        font-size: 22px;
    }

    .Welcome p{
        font-size: 13px;
    }
}
