@media screen and (max-width: 724px) {

    nav h1 {
        font-weight: 300;
    }

    .container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 10px;

    }

    body {
        font-size: 14px;
    }

    .input {
        width: 60%;
    }

    .hea {
        gap : 10px;
    }

}   

@media  screen and (min-height: 1000px) {

    .gooning {
        flex-direction: column;
    }

    .input {
        width : 100%;
    }

}


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: "Quicksand", sans-serif;
}

.gooning {
    width : 100%;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

body{
    background:#e0cda4;
}


.hea{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width : 100%;
    padding:20px 50px;
    gap : 20px;
    background:#e68550;
}

nav {
    display:flex;
    gap:20px;
    list-style:none;
    width : 100%;
    max-width: 1000px;
    margin : 0 auto;
}

.hea p{
    font-weight:700;
    transition : 0.3s;
}

nav ul{
    display:flex;
    gap:20px;
    list-style:none;
}

nav a{
    text-decoration:none;
    color:white;
    font-weight:600;
}

nav a:hover{
    opacity:0.8;
}


.container{
    display:flex;
    justify-content:center;
    gap:40px;
    padding:40px;
}


.input{
    background:#eee5bd;
    padding:25px;
    border-radius:12px;
    width:100%;
    min-width : 280px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.input h1 {
    color:#e68550;
    margin-bottom:10px;
}

.form{
    display : flex;
    width:100%;
    max-width : 1000px;
    padding:10px;
    margin-top:10px;
    border-radius:8px;
    border:1px solid #ddd;
}

.form:focus{
    outline:none;
    border:1px solid #e68550;
}


.button-input{
    margin-top:15px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

button{
    padding:10px;
    border:none;
    border-radius:8px;
    font-weight:600;
    cursor:pointer;
    transition : 0.3s;
}

.add-button{
    background:#78e650;
    color:white;
}

.delete-button{
    background:#ff3b3b;
    color:white;
}

.edit-button{
    background:#00e1ff;
    color:white;
}

button:hover{
    padding : 12px;
    opacity:0.85;
}


.div-menu{
    background:#eee5bd;
    padding:25px;
    border-radius:12px;
    width:100%;
    font-size : 18px;
    min-width: 280px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.div-menu h1{
    color:#e68550;
}

.menu-section{
    margin-top:20px;
}


.menu-item{
    background:#fff1e6;
    padding:10px;
    border-radius:8px;
    margin-bottom:10px;
}

b {
    color : white;
    font-weight: 700;
    transition : 0.3s;
}

b:hover {
    color : #ddd1a4;
    font-size : 34px;
    cursor : pointer;
    font-weight: 700;
}

.jam {
    color : white;
    font-weight: 500;
    transition : 0.3s;
}

.jam:hover {
    color : #ddd1a4;
    font-size : 32px;
    font-weight: 700;
    cursor : pointer;
}

.totalharga {
    background-color: #fff1e6;
    padding : 10px;
    border-radius: 5px;
    color : black;
    font-weight: 700;
    transition : 0.3s;
    margin-top: 20px;
}

.totalharga:hover {
    background-color: #e68550;
    color : white;
    font-size : 20px;
    font-weight: 700;
    cursor : pointer;
}