
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: #800020; /* Deep Magenta/Burgundy */
}

header {
    background-color: white;
    padding: 20px 0;
    text-align: left;
    color: Green;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo img {
    height: 50px;
}

nav ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 20px;
    
}

nav ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

nav ul li img {
    height: 20px;
}

nav ul li a {
    color: green;
    text-decoration: none;
    font-size: 18px;
}

.category-ribbon {
    background-color: green;
    padding: 10px;
    text-align: center;
}

.category-ribbon ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    color: yellow;
}

.category-ribbon ul li a {
    color: yellow;
    text-decoration: none;
    font-size: 16px;
}

.home-banner {
    background-image: url('banner-image.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.home-banner h2 {
    font-size: 48px;
}

.home-banner p {
    font-size: 24px;
}

.btn {
    padding: 10px 20px;
    background-color: #ff6347;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.featured-recipes {
    padding: 50px 20px;
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

.recipe-item h4 {
    text-align: center;
    margin-top: 10px;
    font-size: 20px;
}

footer {
    background-color: green;
    text-align: center;
    padding: 20px;
    color: white;
}

footer .social-links a {
    margin: 0 10px;
    color: yellow;
    text-decoration: none;
}
