/* Reset some default */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Verdana', Geneva, Tahoma, sans-serif;
    background-color: #f0e6d2;
    color: #4a3b1a;
    padding: 40px 20px;
}

header {
    text-align: center;
    margin-bottom: 50px;
}

header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #d2691e; /* chocolate-ish orange */
    letter-spacing: 3px;
    text-transform: uppercase;
    border-bottom: 4px solid #d2691e;
    display: inline-block;
    padding-bottom: 8px;
}

.recipe-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.recipe-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background: #fff8f0;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.recipe-card figure {
    margin: 0;
    position: relative;
}

.recipe-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.recipe-card figcaption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(210, 105, 30, 0.8);
    color: white;
    padding: 5px 10px;
    font-size: 0.9rem;
    border-radius: 8px;
    font-style: italic;
}

.recipe-info {
    padding: 30px 35px;
}

.recipe-info h2 {
    font-size: 1.8rem;
    margin-bottom: 18px;
    color: #b35200;
}

.recipe-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #6b4b00;
}

.recipe-info h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #a24300;
}

.recipe-info ul, .recipe-info ol {
    margin-left: 20px;
    margin-bottom: 15px;
    color: #6b4b00;
}

.recipe-info li {
    margin-bottom: 8px;
    font-size: 1.05rem;
}
