/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Container */
.container {
    width: 80%;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header .logo h1 {
    font-size: 2.5rem;
    font-family: 'Brush Script MT', cursive;
}

/* Navigation */
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 10px;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
}

/* Banner Section */
.home-banner {
    text-align: center;
    padding: 40px 0;
}

.home-banner img {
    width: 80%;
    margin-top: 20px;
    border-radius: 10px;
}

/* Main Section */
main {
    padding: 40px 0;
}

/* Recipe List */
.recipe-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    list-style: none;
}

.recipe-list ul li {
    margin: 20px;
    text-align: center;
    width: 200px;
}

.recipe-list ul li a {
    text-decoration: none;
    color: #333;
}

.recipe-list ul li a img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.recipe-list ul li p {
    font-size: 1rem;
    margin-top: 10px;
}

/* Form */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

form input, form textarea, form button {
    padding: 10px;
    font-size: 1rem;
}

form button {
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #ff6347;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    margin-top: 50px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Media Queries */
@media (max-width: 768px) {
    .recipe-list ul {
        padding-left: 20px;
    }
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Container */
.container {
    width: 80%;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header .logo h1 {
    font-size: 2.5rem;
    font-family: 'Brush Script MT', cursive;
}

/* Navigation */
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 10px;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
}

/* Banner Section */
.home-banner {
    text-align: center;
    padding: 40px 0;
}

.home-banner img {
    width: 80%;
    margin-top: 20px;
    border-radius: 10px;
}

/* Featured Recipes Section */
.featured-recipes {
    text-align: center;
    padding: 40px 0;
}

.featured-recipes h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.recipe-list ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 20px;
}

.recipe-list ul li {
    margin: 0 20px;
    text-align: center;
    width: 200px;
}

.recipe-list ul li a {
    text-decoration: none;
    color: #333;
}

.recipe-list ul li a img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.recipe-list ul li p {
    font-size: 1rem;
    margin-top: 10px;
}

/* Reviews Section */
.reviews {
    text-align: center;
    padding: 40px 0;
    background-color: #f2f2f2;
}

.reviews h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.review-list {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.review {
    width: 250px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.review p {
    font-size: 1rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    margin-top: 50px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Media Queries */
@media (max-width: 768px) {
    .recipe-list ul {
        flex-direction: column;
        align-items: center;
    }

    .review-list {
        flex-direction: column;
        align-items: center;
    }
}
header .logo h1 {
    font-size: 2.5rem;
    font-family: 'Brush Script MT', cursive;
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Container */
.container {
    width: 80%;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Logo Image Styling */
header .logo img {
    width: 150px;  /* Adjust to your desired size */
    height: auto;
}

/* Navigation */
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 10px;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Container */
.container {
    width: 80%;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Navigation */
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 10px;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
}

/* Recipes List */
.recipes-list {
    text-align: center;
    padding: 40px 0;
}

.recipes-list h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.recipe {
    display: inline-block;
    width: 200px;
    margin: 20px;
    cursor: pointer;
    text-align: center;
}

.recipe img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.recipe p {
    margin-top: 10px;
    font-size: 1.1rem;
}

/* Modal (Hidden by default) */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    padding-top: 60px;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 70%;
    max-width: 900px;
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 20px;
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

#modal-recipe-title {
    text-align: center;
}

#modal-ingredients-list {
    list-style: none;
    padding-left: 20px;
}

#modal-ingredients-list li {
    font-size: 1.1rem;
    margin: 5px 0;
}

#modal-instructions {
    font-size: 1.1rem;
    margin-top: 10px;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 35px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    margin-top: 50px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Container */
.container {
    width: 80%;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Navigation */
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 10px;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
}

/* Recipes List */
.recipes-list {
    text-align: center;
    padding: 40px 0;
}

.recipes-list h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.recipe {
    display: inline-block;
    width: 200px;
    margin: 20px;
    cursor: pointer;
    text-align: center;
}

.recipe img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.recipe p {
    margin-top: 10px;
    font-size: 1.1rem;
}

.recipe a {
    text-decoration: none;
    color: inherit;
}

/* Recipe Details Section */
.recipe-details {
    padding: 40px;
    text-align: center;
    margin-top: 20px;
}

.recipe-details h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.recipe-details img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

.recipe-details ul {
    list-style: none;
    padding-left: 0;
    font-size: 1.1rem;
}

.recipe-details ul li {
    margin: 5px 0;
}

.recipe-details p {
    font-size: 1.1rem;
    margin-top: 10px;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    margin-top: 50px;
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Container */
.container {
    width: 80%;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Navigation */
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 10px;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
}

/* Blog Section */
.blog-section {
    padding: 40px;
    text-align: center;
}

.blog-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.blog-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Blog Post */
.blog-post {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.blog-post h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.blog-post img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

.blog-post p {
    font-size: 1.1rem;
    margin-top: 10px;
    margin-bottom: 20px;
}

.blog-post a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
}

.blog-post a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    margin-top: 50px;
}
/* About Recipes Section */
.about-recipes {
    padding: 40px;
    text-align: center;
    background-color: #f1f1f1;
}

.about-recipes h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-recipes p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #333;
}

/* Recipe Story */
.recipe-story {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-width: 800px;
    margin: 20px auto;
}

.recipe-story h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.recipe-story img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

.recipe-story p {
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    margin-top: 50px;
}

/* Location Page Styles */
.location {
    padding: 40px;
    text-align: center;
    background-color: #f1f1f1;
}

.location h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.location p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.location h3 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.location ul {
    list-style-type: none;
    padding: 0;
    font-size: 1.2rem;
    text-align: left;
    margin: 0 auto;
    max-width: 600px;
}

.location ul li {
    margin-bottom: 10px;
}

.map-container {
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
}

iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 10px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    margin-top: 50px;
}
