
* {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
    margin: 0;
    padding: 0 40px; 
    background-color: white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

header h1{
    color: purple;
    font-size: 25px;
}


.recipe-content {
    display: flex;
    justify-content: space-between; 
    gap: 40px; 
    padding: 40px 0; 
}

.nav ul li a{
    text-decoration: none;
    color: purple;
    font-size: 20px;
}

.nav ul li a:hover{
    color: rgb(176, 122, 226);
}

.nav ul li{
    list-style: none;
}

/* KOLOM KIRI: KONTEN UTAMA (.container) */

.container {
    width: 65%; 
    padding: 0; 
    line-height: 1.5em;
}

.container h2 {
    font-size: 1.6em;
    margin-top: 0; 
    color: #333;
}

/* Styling untuk sub-judul 'Ingredients' dan 'Instructions' */
.section-title {
    color: white;
    background-color: #A376A2; 
    padding: 10px 15px; 
    width: fit-content; /* Lebar mengikuti konten teks */
    border-radius: 5px; 
    font-size: 1.2em;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* ... Styling untuk p dan ul/li di kolom kiri ... */

.imageFood {
    width: 35%; 
    padding: 25px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: fit-content;
}

.imageFood img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Styling untuk Area Ringkasan Waktu/Porsi */

.recipe-summary {
    padding: 10px 0;
    margin-bottom: 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.recipe-summary p {
    text-align: left;
    margin: 8px 0;
    padding-left: 10px;
    font-size: 1em;
    color: #555;
}

/* Styling Tombol Print Recipe */
/* .print-button {
    background-color: purple;
    color: white;
    border: none;
    padding: 10px 30px;
    font-size: 1em;
    border-radius: 20px;
    cursor: pointer;
    margin-bottom: 25px;
    transition: background-color 0.3s;
}

.print-button:hover {
    background-color: #8a2be2;
}

/* Styling Tips & Variations */
/* .tips-section {
    padding-top: 15px;
    border-top: 1px solid #eee;
    text-align: left;
} */

/* .tips-section h4 {
    color: #333;
    margin-top: 0;
    font-size: 1.1em;
} */