* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

header {
    background: #d35400;
    color: white;
    padding: 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

a {
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    margin-right: 20px;
}

section {
    display: block;
}


li {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
}

.navbar {
    display: flex;
}

span {
    font-style: italic;
    color: red;
}

.span {
    color: #000;
}

h4 {
    color: rgb(190, 187, 187);
}

h1 {
    color: red;
}

/* .order-form{
    display: inline-block;
} */


.section1 {
    display: flex;
    padding: 20px;
}

.section2 {
    display: flex;
    padding: 20px;
}

.section3 {
    display: flex;
    padding: 20px;
}

.sec1-img,
.sec2-img,
.sec3-img {
    margin-right: 10px;
}

@media (min-width:360px) {
    .mg {
        height: 200px;
        width: 100%;
        border-radius: 20px;
    }


}

@media (min-width:768px) {
    .mg {
        height: 350px;
        width: 100%;
        border-radius: 20px;
    }




}

.btn {
    border-radius: 10px;
    display: grid;
    display: flex;
    padding: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: black;
    color: white;
}



body {
    font-family: Arial, sans-serif;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

li {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
}

.navbar {
    display: flex;
}

span {
    font-style: italic;
    color: red;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ff4d4d;
    padding: 1rem 2rem;
    color: white;
    position: relative;
}

.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;
}

@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;
    }
}