*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #F5E6D3;
    color: #333;
    padding-top: 70px; /* Sesuaikan angka ini dengan tinggi header Anda */
}

/* ================= HEADER ================= */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #B22E15;
    
    /* Perubahan di sini */
    position: fixed; /* Membuat header tetap di posisi */
    top: 0;          /* Menempel tepat di atas layar */
    left: 0;         /* Menempel di sisi kiri */
    width: 100%;     /* Memastikan header memenuhi lebar layar */
    z-index: 1000;   /* Memastikan header berada di atas elemen lain */
}

.logo{
    color:#FFFFFF;
    font-size:22px;
    font-weight:bold;
    letter-spacing:1px;
}

/* HAMBURGER */
.menu-toggle{
    font-size:30px;
    color:#FFFFFF;
    cursor:pointer;
    margin-right: 15px;
}

/* NAV MENU */
.nav-menu{
    position:fixed;
    top:70px;
    right:20px;
    background:#FFFFFF;
    width:230px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
    display:flex;
    flex-direction:column;
    overflow:hidden;
    transform:translateY(-15px);
    opacity:0;
    pointer-events:none;
    transition:0.3s ease;
    z-index:999;
}

.nav-menu.active{
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
}

.nav-menu a{
    padding:15px;
    text-decoration:none;
    color:#B22E15;
    font-weight:bold;
    border-bottom:1px solid #eee;
}

.nav-menu a:hover{
    background:#F5E6D3;
}

.nav-menu a.active{
    background:#F5E6D3;
    color:#B22E15;
    border-left:5px solid #B22E15;
}
/* ================= SECTION ================= */
section{
    width:90%;
    max-width:1000px;
    margin:40px auto;
    background:#FFFFFF;
    padding:30px;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

h2{
    margin-bottom:15px;
    color:#B22E15;
}

/* ================= HOME ================= */
.home-img{
    width:100%;
    border-radius:15px;
    margin-bottom:20px;
}

.home-box{
    background:#F5E6D3;
    padding:20px;
    border-radius:15px;
}

/* ================= MENU ================= */
.menu-container{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    justify-content:center;
}

.menu-card{
    width:260px;
    background:#FFFFFF;
    border-radius:15px;
    padding:15px;
    box-shadow:0 6px 15px rgba(0,0,0,0.1);
    text-align:center;
    transition:0.3s;
}

.menu-card:hover{
    transform:translateY(-5px);
}

.menu-card img{
    width:100%;
    border-radius:10px;
}

button{
    background:#B22E15;
    color:#FFFFFF;
    border:none;
    padding:10px 15px;
    border-radius:8px;
    cursor:pointer;
    margin-top:10px;
    transition:0.3s;
}

button:hover{
    background:#D67E45;
}

/* ================= CART ================= */
.cart-item{
    background:#F5E6D3;
    margin:10px 0;
    padding:12px;
    border-radius:10px;
}

.qty-btn{
    padding:5px 10px;
    background:#D67E45;
    border:none;
    color:white;
    border-radius:5px;
    cursor:pointer;
}

.delete-btn{
    background:#B22E15;
    color:white;
    padding:5px 10px;
    border:none;
    border-radius:5px;
    cursor:pointer;
}

textarea{
    width:100%;
    height:80px;
    border-radius:8px;
    padding:10px;
    margin-top:10px;
    border:1px solid #D67E45;
}

/* ================= MODAL ================= */
.modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    justify-content:center;
    align-items:center;
    z-index:1000;
}

.modal-content{
    background:#FFFFFF;
    width:320px;
    padding:20px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.3);
}

/* ================= GALERI ================= */
.galeri-container{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    justify-content:center;
}

.galeri-container img{
    width:280px;
    border-radius:15px;
}

/* ================= FOOTER ================= */
.footer{
    background:#B22E15; /* SOLID */
    padding:25px;
    text-align:center;
    color:#FFFFFF;
    margin-top:40px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    .menu-container,
    .galeri-container{
        flex-direction:column;
        align-items:center;
    }
}
