* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
}

.header {
    width: 100%;
    background: #deb887;
    padding: 15px 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.container {
    width: 80%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    border-radius: 50%;
}

.site-name {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-right: 300px;
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navigation ul li {
    display: inline;
}

.navigation ul li a {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    padding: 5px 10px;
    transition: 0.3s ease;
}

.navigation ul li a:hover {
    color: #fff;
    background: #8b5a2b;
    border-radius: 5px;
}

.hero {
    text-align: center;
    padding: 40px 20px;
    background: #f4e1d2;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 28px;
    margin-bottom: 25px;
}

.hero img {
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 30%;
    max-width: 500px;
    height: auto;
}

.hero p{
    margin-top: 40px;
}

.recipes {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.recipe-item {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 30%;
}

.recipe-item h2{
    margin-bottom: 10px;
}

.recipe-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.footer {
    text-align: center;
    padding: 20px;
    background: #deb887;
    margin-top: 20px;
}

.toggle-button {
    background-color: #8b5a2b;
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.hidden {
    display: none;
}

.toggle-button:hover {
    background-color: #5c3c1e;
}

.ingredients {
    margin-top: 30px;
    list-style-type: square;
    padding-left: 20px;
    text-align: start;
}
