.background-wrapper {
    background-image: url("background.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 20px 20px;
}

#container {
    width: 80%;
    margin: auto;
    background: rgba(255, 255, 255, 0.55);
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.2);
}

.recipe-title {
    text-align: center;
    font-size: 90px;
    color: #8b4d2d;
    font-family: "Caveat Brush", cursive;
    margin-bottom: 50px;
	text-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}

body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
}

.title-image {
    display: block;
    margin: 0 auto 20px;
    width: 60%;
    border-radius: 12px;
	transition: transform 0.22s ease;

}

.title-image:hover {
    transform: scale(1.03);
}

h2 {
    color: #7a3e1c;
    border-bottom: 2px solid #e6d4b6;
    padding-bottom: 4px;
    margin-top: 25px;
    font-family: "Caveat Brush", cursive;
	font-size: 40px;
}

.ingredient-list {
    list-style: none;
    padding: 20px;
    border: 2px solid #e6d4b6;
    border-radius: 12px;
    background: rgba(255,255,255,0.4);
    box-shadow: inset 0 0 8px rgba(0,0,0,0.1);
}

.ingredient-list li {
    padding: 6px 0;
    font-size: 18px;
    border-bottom: 1px dashed rgba(0,0,0,0.2);
}

.ingredient-list li:last-child {
    border-bottom: none;
}

.two-column {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.left-box,.right-box {
    flex: 1;
}

.right-box ol {
    list-style-position: inside;
    background: rgba(255,255,255,0.4);
    border: 2px solid #e6d4b6;
    border-radius: 12px;
    padding: 20px;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.1);
    font-size: 18px;
    line-height: 1.7;
}

.photo-grid {
    display: flex;
	flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px; 
}

.photo-grid img {
    width: calc(50% - 6px);
    border-radius: 10px;
    transition: transform 0.22s ease;
}

.photo-grid img:hover {
    transform: scale(1.03);
}