* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.hero-content {
    margin-top: auto;
    margin-bottom: 10%;
}

.hero-content h2 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 1em;
}

.btn-hero {
    background-color: #ff5c00;
    color: white;
    padding: 0.75em 2em;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
}

li {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
}

.navbar {
    display: flex;
    background-color: #d35400;
    color: white;
    padding: 15px 30px;
}

.about-section {
    background: red;
    padding: 3em 1em;
    text-align: center;
}

.featured-meals {
    background: steelblue;
    padding: 3em 1em;
    text-align: center;
    color: #2c3e50;
}

.meal-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    margin-top: 2em;
}

.meal-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
    overflow: hidden;
}

.meal-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.meal-card h3 {
    margin: 1em 0 0.5em;
}

.meal-card p {
    margin-bottom: 1em;
    font-weight: bold;
    color: #ff5c00;
}


.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

.hero {
    background: url('https://via.placeholder.com/1200x400') no-repeat center center/cover;
    color: #2c3e50;
    text-align: center;
    padding: 4rem 2rem;
    background-color:#fef5e7 ;
}

.hero h2 {
    font-size: 3rem;
}

.hero .btn {
    display: inline-block;
    margin-top: 1rem;
    background: #d35400;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
}

/* body {
    background-color: goldenrod;
} */

header {
    background: #d35400;
    color: white;
    padding: 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

@media (max-width: 768px) {
    .meal-grid {
        flex-direction: column;
        align-items: center;
    }

    .hamburger {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        background: #ff4d4d;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        text-align: center;
        padding: 1rem 0;
    }

    nav.show {
        display: flex;
    }

    nav a {
        margin: 0.5rem 0;
    }
}

.meal-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.meal-card {
    background: #f9f9f9;
    padding: 1rem;
    margin: 1rem;
    border-radius: 10px;
    width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.meal-card img {
    width: 100%;
    border-radius: 10px;
}

a {
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    margin-right: 20px;
}

.btn:hover {
    background-color: black;
    transition: 0.5s;
}

.span {
    font-style: italic;
    color: #000;
}

h1 {
    color: red;
}

/* Reset some styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ff4d4d;
    padding: 1rem 2rem;
    color: white;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background-color: white;
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #34495e;
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 1rem;
        border-radius: 8px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}