* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Alata", sans-serif;
}

body {
    background-color: white;
    background-size: cover;
    margin-bottom: 50px;
}
header {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
  }

/*----FOOTER-----*/

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: #21522f;
    color: rgb(255, 255, 255);
    padding: 10px;
}

/* ------ NAVBAR ------- */

nav {
    display: flex;
    justify-content: end;
    align-items: center;
    background-color: #21522f;
    opacity: 1;
    padding: 10px 20px;
    height: 80px;
    width: 100%;
}

.logo_container {
    margin: 10px;
    display: flex;
    align-items: center;
    position: fixed;
}

.logo_container img {
    width: 50x;
    height: 50px;
    display: inline-block;
}

.logo_name {
    font-size: 40px;
    color: #FFA500;
    margin-left: 15px; 
    font-weight: bold;
    display: inline-block;
    font-family: "Delicious Handrawn", cursive;
    font-weight: 400;
    font-style: normal;
    
}

main {
    margin-top: 140px;
}

ul {
    padding: 0;
    list-style: none;
    display: flex; 
    align-items: center;
    margin: 0;
}

li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: white;
    text-align: center;;
    font-size: 22px;
    margin-right: 60px;
}


a:hover {
    color: #f0f0f0;
    background: gray;
}

/*-----BODY-----*/


.recipe_info_cont {
    background-color: rgba(255, 166, 0, 0.226);
    outline: 2px solid orange;
    border: 2px solid rgb(180, 117, 0);
    border-radius: 8px;
    border-spacing: 10px;
    padding: 20px;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 140px;
}

.recipe_info_list {
    list-style-type: none; 
    padding: 0;
    margin: 0;
    max-width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;

}

.recipe_title {
    font-size: 90px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    font-family: "Bebas Neue", sans-serif;
}

.recipe_date {
    font-size: 20px; 
    color: #555;
    margin-bottom: 8px;
    font-style: italic;
}

.recipe_extra {
    font-size: 15px;
    color: #777;
    line-height: 1.5; 
}

.ingredients_container, .equipment_container {
    flex: 1;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
}

.equipment_ingredients_container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex: 0 0 50%;
        flex-direction: row;
        width: 100%;
        margin-left: 30px;
        margin-top: 10px;

    }

 .recipe_equipment_list, .recipe_ingredients_list {
        list-style-type: none; 
        flex: 1;
        padding: 0;
        margin: 30px;
        max-width: 45%;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 0 10px;
 }


.ingredients_title {
    font-size: 40px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.recipe_ingredients_notes_list {
    list-style-type: none; 
    padding: 0;
    margin: 0;
    max-width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
    margin-left: 30px;
    margin-right: 30px;
}

.recipe_method_list {
    list-style-type: none; 
    padding: 0;
    margin: 0;
    max-width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 20px;
}

.method_step_header {
    font-size: larger;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}

/*----CHUTNEY IMAGES----*/

.chutney_row_image {
    padding: 25px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.image {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

.image_desc {
    font-size: medium;
    color: gray;
    margin-top: 7px;
}

.img_display {
    flex:1;
    text-align: center;
    margin: 0 15px;
}

.recipe_additional_list {
    list-style-type: none; 
    padding: 0;
    margin: 0;
    max-width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 20px;
}

@media print {
    .noprint {
        display: none;
    }
}

h2 {
    margin-left: 28px;
    margin-top: 10px;
    font-size: 40px;
}



