/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica', 'Arial', sans-serif;
    background-color: #fdf7f2;
    color: #333;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Header Styles */
.header {
    background-color: #ff7043; /* Vibrant orange */
    padding: 1rem;
}

.header .logo img {
    width: 60px;
    vertical-align: middle;
}

.header h1 {
    display: inline-block;
    margin-left: 10px;
    font-size: 1.8rem;
    color: #fff;
}

.nav {
    text-align: right;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    display: inline-block;
    margin-left: 20px;
}

.nav-list a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #ffcc80; /* Lighter orange on hover */
}

/* Featured Recipe Section */
.featured-recipe {
    background: linear-gradient(135deg, #ffa726, #ff7043);
    color: #fff;
    padding: 3rem 0;
    margin-bottom: 2rem;
    text-align: center;
}

.featured-recipe h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.featured-recipe-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.featured-recipe-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.featured-recipe-details {
    max-width: 500px;
    text-align: left;
}

.featured-recipe-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.featured-recipe-details p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-recipe-details ol {
    margin: 0 0 1.5rem 20px;
    font-size: 1rem;
}

.featured-recipe-details .btn {
    display: inline-block;
    background-color: #fff;
    color: #ff7043;
    font-weight: bold;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.featured-recipe-details .btn:hover {
    background-color: #ffcc80;
    transform: translateY(-5px); /* Lift animation */
}

/* Recipe Grid Section */
.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.recipe-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.recipe-card img {
    width: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.recipe-card h3 {
    font-size: 1.5rem;
    color: #ff7043;
    margin: 1rem;
}

.recipe-card p {
    font-size: 1rem;
    color: #666;
    margin: 0 1rem 1rem 1rem;
}

.recipe-card a {
    text-decoration: none;
    color: #ff7043;
    font-weight: bold;
    padding: 1rem;
    display: block;
    text-align: center;
    border-top: 1px solid #f2f2f2;
    background-color: #ffcc80;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    transition: background-color 0.3s ease;
}

.recipe-card a:hover {
    background-color: #ffa726;
}

/* Section Headings */
h2 {
    font-size: 2.5rem;
    color: #ff7043;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Ingredient Spotlight Section */
.ingredient-spotlight {
    background-color: #f5f5f5;
    padding: 3rem 0;
    text-align: center;
}

.ingredient-spotlight h2 {
    color: #ff7043;
}

.ingredient-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.ingredient-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.ingredient-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ff7043;
}

.ingredient-details ul {
    list-style: none;
    padding-left: 0;
}

.ingredient-details ul li {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    padding: 0.5rem 0;
}

.ingredient-details .btn {
    display: inline-block;
    background-color: #ff7043;
    color: #fff;
    font-weight: bold;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.ingredient-details .btn:hover {
    background-color: #ffcc80;
    transform: translateY(-5px);
}

/* About Chef Section */
.about-chef {
    background-color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.about-chef .chef-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.about-chef .chef-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 50%;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.about-chef .chef-details h2 {
    font-size: 2.5rem;
    color: #ff7043;
    margin-bottom: 1.5rem;
}

.about-chef .chef-details p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.footer .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-nav, .footer-subscribe {
    margin-bottom: 1.5rem;
}

.footer-nav h5, .footer-subscribe h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li {
    margin-bottom: 0.5rem;
}

.footer-nav ul li a {
    color: #ffcc80;
    text-decoration: none;
}

.footer-nav ul li a:hover {
    color: #fff;
}

.footer-subscribe input[type="email"] {
    padding: 0.7rem;
    border-radius: 25px;
    border: none;
    width: 250px;
    margin-bottom: 1rem;
}

.footer-subscribe button {
    background-color: #ff7043;
    color: #fff;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-subscribe button:hover {
    background-color: #ffcc80;
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.recipe-card {
    animation: fadeIn 0.6s ease-in-out;
}

.featured-recipe-image img {
    animation: fadeIn 0.8s ease-in-out;
}
/* About Page Styles */

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
    text-align: left;
}

.about-section h2 {
    font-size: 2.5rem;
    color: #ff7043;
    margin-bottom: 2rem;
    text-align: center;
}

.about-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.8s ease-in-out;
}

.about-text {
    flex: 1;
    margin-left: 2rem;
}

.about-text h3 {
    font-size: 2rem;
    color: #ff7043;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.about-text ul li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.about-text ul li:before {
    content: '•';
    color: #ff7043;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

.about-text .btn {
    display: inline-block;
    background-color: #ff7043;
    color: #fff;
    font-weight: bold;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-text .btn:hover {
    background-color: #ffcc80;
    transform: translateY(-5px);
}

/* Mission and Values */
.about-text h3 {
    margin-top: 2rem;
    font-size: 2rem;
    color: #ff7043;
}

.about-text ul li strong {
    color: #333;
}

.about-text ul li {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
}

.about-text ul li:before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ff7043;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.35rem;
}

.about-text ul li strong {
    color: #ff7043;
    margin-right: 0.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Responsive Design for About Page */
@media (max-width: 900px) {
    .about-content-wrapper {
        flex-direction: column;
    }

    .about-text {
        margin-left: 0;
        margin-top: 2rem;
    }

    .about-text ul {
        padding-left: 0;
    }
}
/* Contact Page Styles */

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
    text-align: left;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #ff7043;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info {
    max-width: 400px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.contact-info h4 {
    font-size: 1.8rem;
    color: #ff7043;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-info ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.contact-info ul li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-info ul li strong {
    color: #ff7043;
}

.contact-info .social-icons a {
    color: #ff7043;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.contact-info .social-icons a:hover {
    color: #ffcc80;
}

/* Contact Form */
.contact-form {
    flex: 1;
    background-color: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    font-size: 1.1rem;
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #ff7043;
    outline: none;
}

.contact-form textarea.form-control {
    height: auto;
    resize: vertical;
}

.contact-form .btn {
    display: inline-block;
    background-color: #ff7043;
    color: #fff;
    font-weight: bold;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.contact-form .btn:hover {
    background-color: #ffcc80;
    transform: translateY(-5px);
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
    background-color: #fff;
}

.faq-section h3 {
    font-size: 2rem;
    color: #ff7043;
    text-align: center;
    margin-bottom: 2rem;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1.2rem;
    background-color: #ff7043;
    color: #fff;
    padding: 1rem;
    text-align: left;
    width: 100%;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #ffcc80;
}

.faq-answer {
    padding: 1rem;
    font-size: 1.1rem;
    color: #666;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
}

/* Responsive Design for Contact Page */
@media (max-width: 900px) {
    .contact-content-wrapper {
        flex-direction: column;
    }

    .contact-info {
        margin-bottom: 2rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .faq-answer {
        font-size: 1rem;
    }
}
/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5 {
    color: #ff6347; /* Tomato Color */
    text-transform: capitalize;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: #ff6347;
}

a:hover {
    text-decoration: underline;
}

/* Header */
.header {
    background-color: #ff6347;
    padding: 20px 0;
    color: white;
}

.header .logo h1 {
    font-size: 2.5rem;
    margin-left: 15px;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
    font-size: 1.1rem;
}

.nav-list li a {
    color: white;
    transition: 0.3s ease;
}

.nav-list li a:hover {
    color: #f5f5f5;
}

/* Recipe Grid for Recipe Index Page */
.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.recipe-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: 0.3s ease;
}

.recipe-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recipe-card h3 {
    font-size: 1.5rem;
    margin: 15px;
}

.recipe-card p {
    font-size: 1rem;
    margin: 15px;
    color: #666;
}

.recipe-card:hover {
    transform: translateY(-5px);
}

/* Search Bar & Filters */
.input-group {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}

.input-group input {
    padding: 10px;
    font-size: 1.1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 60%;
}

.custom-select {
    padding: 10px;
    font-size: 1.1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Recipe Hero Section for Individual Recipe Page */
.recipe-hero {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 50px 0;
}

.recipe-hero-image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    height: auto;
}

.recipe-hero-facts {
    flex: 1;
    padding: 10px 20px;
}

.recipe-hero-facts h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.recipe-hero-facts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recipe-hero-facts ul li {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

/* Preparation and Instructions Section */
.recipe-preparation {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.recipe-preparation h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.recipe-preparation h4 {
    font-size: 1.5rem;
    margin-top: 25px;
    color: #ff6347;
}

.recipe-preparation ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 15px 0;
}

.recipe-preparation p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Comments Section */
.recipe-comments {
    margin-top: 40px;
}

.recipe-comments h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.comment {
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.comment .rating span {
    color: #ffcd3c;
}

/* Buttons */
.btn {
    background-color: #ff6347;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e5533a;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 0;
}

.footer-nav {
    margin-bottom: 20px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li {
    margin-bottom: 8px;
}

.footer-nav ul li a {
    color: #f5f5f5;
    transition: 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #ff6347;
}

.footer-subscribe input {
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    margin-right: 10px;
    border: none;
}

.footer-subscribe button {
    padding: 10px 20px;
    background-color: #ff6347;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.text-center {
    text-align: center;
}

.footer p {
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .recipe-hero {
        flex-direction: column;
        text-align: center;
    }

    .recipe-hero-image img {
        width: 100%;
    }

    .input-group input {
        width: 100%;
    }

    .custom-select {
        margin-top: 10px;
        width: 100%;
    }

    .recipe-grid {
        grid-template-columns: 1fr;
    }
}
