.header {
    background: powderblue;      
    display: flex;
    align-items: center;
	justify-content: center;
    gap: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:10%;
    z-index: 999;

    
}

.btn {
    padding: 10px 25px;
    font-size: 4 px;
    background-color: transparent;
    color: black;
    font-weight: bold;
    border-radius: none;
	border-color: transparent;
    cursor: pointer;
    transition: 0.3s ease;
	margin-left:none;
    margin-top: 5px;
	justify-content: center;
}


.main-title {
    margin-left: 10%;
    margin-top: 150px;
    font-size: 65px;
    font-family: "Segoe Script", cursive;
    color: #333;
}

.subtitle {
    text-align: center;
	margin-left:5%;
    margin-top: 150px;
    font-size: 58px;
    color: #444;
}

/* Lines */
.line1, .line2 {
    width: 60%;
    margin: 8px auto;
    border: 1px solid #aaa;
}

/* Top image section */
.top-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:40%;
    margin-top: 71px;
    object-fit: cover;
    z-index: -3; /* letak belakang semua content */
    opacity: 0.6; 
}

/* Layout wrapper */
.content {
    width: 100%;
    margin: 40px auto;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;	
}

/* Gambar makanan */
.food-image img {
    width: 550px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 12px rgba(0,0,0,0.2);
}

/* Description box */
.desc-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 500px;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 0; /* naik sejajar */
}

/* Recipe box */
.box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #ccc;
    box-shadow: 0 0 12px rgba(0,0,0,0.15);
    margin-top: 25px; /* letak bawah description */
}

.box h2 {
    margin-bottom: 10px;
}

.recipe p, .recipe li {
    font-size: 16px;
    line-height: 1.5;
}

/* Responsive mode */
@media screen and (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: center;
    }

    .food-image img {
        width: 80%;
    }

    .desc-box, .box {
        width: 90%;
    }
}
/* Tajuk Section Kedai */
.shop-title {
    text-align: left;
    font-size: 40px;
	margin-left:20%;
    margin-top: 50px;
    font-weight: bold;
	justify-content: left;
    align-items: flex-start;
}



.shop-item h3 {
    margin-left:20%;
    margin-top: -2px;
    font-size: 25px;
	text-align: left;
	
}

.shop-item p {
    margin-left:20%;
    margin-top: 0px;
    font-size: 16px;
	text-align: left;

}
.rate {
	background: white;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-top: 25px; 
	width: 60%;
    margin-left:20%;
}
.submit-comment {
    padding: 10px 20px;
    border: none;
    background-color: #28a745;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}

.submit-comment:hover {
    opacity: 0.85;
}
.footer {
    background-color: powderblue; 
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
    font-size: 16px;
	font-weight: bold; /* tulisan tebal */ 
}
