* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    color: #333;
    background: #fafafa;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.75);
    z-index: 1000;
}

.nav-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin-bottom: 4px;
}

/* HERO */
.hero {
    margin-top: 60px;
    height: 80vh;
    background: url("images/banner.jpg") center/cover no-repeat;
}

.hero-overlay {
    background: rgba(0,0,0,0.5);
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 60px 0;
}

.hero h1 {
    font-size: 2.8rem;
}

.btn {
    background: #e67e22;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    border-radius: 4px;
}

/* ABOUT */
/* ABOUT GRID */
.about {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }
}

.about-image img {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-box {
    background: #f8f8f8;
    padding: 25px;
    text-align: center;
    border-radius: 6px;
}

.feature-box span {
    font-size: 2rem;
}

/* RECIPES */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.recipe {
    background: #fff;
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.recipe img {
    width: 40%;
    object-fit: cover;
}

.recipe-content {
    padding: 25px;
}

.meta {
    color: #777;
    margin-bottom: 15px;
}

/* CTA */
.cta {
    background: #e67e22;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.btn-light {
    background: #fff;
    color: #e67e22;
}

/* FOOTER WITH POLICIES */
.footer {
    background: #111;
    color: #fff;
    padding: 30px 20px;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links{
        flex-direction: column;
    }
}


/* MOBILE */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: #111;
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 15px 0;
    }

    .recipe {
        flex-direction: column;
    }

    .recipe img {
        width: 100%;
        height: 220px;
    }
}


/* CONTACT */
.contact {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info ul {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.contact-info li {
    margin-bottom: 10px;
}

/* FORM */
.contact-form form {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-group label {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e67e22;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

