body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: lightcyan;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    background-color: lightcyan;
}

/* Welcome Page */
.body.welcome {
    background-color: lightcyan;
}

.container.welcome {
    background-color: lightcyan;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: rebeccapurple;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-right: 10px;
}

.button:hover {
    background-color: gold;
}

.card-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.card {
    width: calc(50% - 40px);
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.card-content {
    padding: 20px;
}

.card h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.card p {
    margin: 10px 0;
    font-size: 1rem;
}

.card a {
    color: lightyellow;
    text-decoration: none;
}

.card a:hover {
    text-decoration: underline;
}

.footer {
    background-color: lightcyan;
    padding: 10px;
    text-align: right;
}

/* About Us Page */
body.about {
    background-color: lightcyan;
}

.container.about {
    background-color: lightcyan;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}
.team-member {
    margin: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: lightyellow;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-width: 300px;
}

/* Recipes Page */
body.recipes {
    background-color: lightcyan;
}

.container.recipes {
    background-color: lightcyan;
}

.recipe {
    background-color: lightyellow;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 600px;
    padding: 20px;
    text-align: left;
}

.recipe h3 {
    color: #333;
    margin-bottom: 10px;
}

.recipe img {
    display: block;
    max-width: 100%;
    margin: 0 auto 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.recipe p {
    color: #666;
    margin-bottom: 10px;
}

.recipe iframe {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

/* Blog Page */
body.blog {
    background-color: lightyellow;
}

.container.blog {
    background-color: lightyellow;
}

.blog-post {
    background-color: lightyellow;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    margin-bottom: 20px;
}

.blog-post h2 {
    color: #333;
    margin-bottom: 10px;
}

.blog-post p {
    color: #666;
    margin-bottom: 10px;
}

.blog-post img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-post a {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.blog-post a:hover {
    background-color: #0056b3;
}

/* Cooking Tips Page */
body.cooking-tips {
    background-color: lightcyan;
}

.container.cooking-tips {
    background-color: lightcyan;
}

.tip {
    background-color: lightyellow;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    margin-bottom: 20px;
}

.tip h2 {
    color: #333;
    margin-bottom: 10px;
}

.tip p {
    color: #666;
    margin-bottom: 10px;
}

.tip img {
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
    width: 400px;
}

.tip a {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.tip a:hover {
    background-color: #0056b3;
}

/* Contact Us Page */
body.contact {
    background-color: lightcyan;
}

.container.contact {
    background-color: lightcyan;
}

.contact-form {
    background-color: lightyellow;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.contact-form input[type="submit"]:hover {
    background-color: #0056b3;
}
.hidden {
    display: none;
}
