* {
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}

body {
    background-color: whitesmoke;
}

.container {
    width: 90%;
    margin: 20px auto;
    background-color: white;
    padding: 20px;


}



nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 1000;
    padding: 50px;

}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: auto;
    height: 120px;
    margin-right: 10px;
}

.logo h2 {
    color: brown;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 20px;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    display: block;

    color: brown;
    font-weight: bold;
    transition: 0.5s ease;
}



nav ul li a:hover {
    color: orange;
}

.order {
    background-color: orange;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    display: block;
    transition: 0.5s ease;
}

.order:hover {
    background-color: brown;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 80px 60px;
    background-color: mistyrose;
}

.hero-text {
    width: 45%;
}

.hero-text h1 {
    font-size: 50px;
    color: brown;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 20px;
    color: black;
    margin-bottom: 20px;
}

.hero-text button {
    background-color: orange;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.5s ease;
}

.hero-text button:hover {
    background-color: brown;
}

.hero-image img {
    width: 550px;
    height: auto;
    border-radius: 20px;
}

.about {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 80px 60px;
}

.about-image img {
    width: 450px;
    height: auto;
    border-radius: 20px;
}

.about-text {
    width: 45%;
}

.about-text h3 {
    color: orange;
    font-size: 25px;
    margin-bottom: 10px;
    margin-top: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.about-text h2 {
    color: brown;
    font-size: 45px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
}

.learn {
    text-decoration: none;
    background-color: orange;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    transition: 0.5s ease;
}

.learn:hover {
    background-color: brown;
}

.specials {
    padding: 80px 40px;
    text-align: center;
    background-color: mistyrose;
}

.specials h3 {
    font-size: 45px;
    color: brown;
    margin-bottom: 15px;
    margin-top: 15px;

}

.special-text {
    font-size: 18px;
    color: gray;
    margin-bottom: 40px;
    line-height: 30px;
}

.special-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card {
    width: 300px;
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 5px 15px lightgray;
    margin-left: 30px;
    margin-bottom: 20px;
    height: auto;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.1);
}

.card img {
    width: 100%;
    height: 150px;
    border-radius: 15px;
    object-fit: cover;
}

.card h4 {
    color: brown;
    font-size: 25px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.card p {
    color: gray;
    line-height: 25px;
    margin-bottom: 15px;
}

.card h5 {
    color: orange;
    font-size: 22px;
}

#check {
    display: none;
}

.menu-button {
    display: none;
}

.gallery {
    padding: 80px 30px;
    background-color: pink;
    text-align: center;
    margin-top: 30px;
}

.gallery h2 {
    color: deeppink;
    margin-bottom: 30px;
    margin-top: 30px;
    font-size: 30px;
}

.gallery p {
    color: gray;
    text-align: center;
}

.gallery-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.gallery-card {
    width: 30%;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px gray;
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: scale(1.05);
}

.gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-card h4 {
    color: rgb(202, 108, 158);
    margin: 12px 0 5px;
    font-size: 30px;
}

.gallery-card p {
    color: gray;
}

.gallery-card h5 {
    color: deeppink;
    font-size: 20px;
}

.contact {
    padding: 80px 30px;
    background-color: pink;
    margin-top: 40px;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.contact-info {
    width: 50%;
}

.contact-info h2,
.contact-form h2 {
    color: deeppink;
    margin-bottom: 15px;
}

.contact-info>p {
    color: gray;
    line-height: 1.6;
    margin-bottom: 25px;
}

.info {
    margin-bottom: 18px;
}

.info h4 {
    color: deeppink;
    margin-bottom: 5px;
}

.info p {
    color: gray;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid lightgray;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
}

.contact-form textarea {
    height: 140px;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: deeppink;
}

.contact-form button {
    width: 150px;
    padding: 12px;
    border: none;
    border-radius: 20px;
    background-color: deeppink;
    color: white;
    transition: 0.5s ease;
}

.contact-form button:hover {
    background-color: mistyrose;
    color: deeppink;
    
}

.Order1 {
    padding: 80px 30px;
    background-color: pink;
    margin-top: 40px;
}

.order-container {
    max-width: 600px;
    margin: auto;
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.order-container h2 {
    color: deeppink;
    margin-bottom: 10px;
}

.order-container p {
    color: gray;
    margin-bottom: 25px;
}

.order-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.order-container input,
.order-container select,
.order-container textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid lightgray;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
}

.order-container textarea {
    height: 120px;
    resize: none;
}

.order-container input:focus,
.order-container select:focus,
.order-container textarea:focus {
    border-color: deeppink;
}

.order-container button {
    padding: 12px;
    border: none;
    border-radius: 20px;
    background-color: deeppink;
    color: white;
    transition: 0.5s ease;
}

.order-container button:hover {
    background-color: mistyrose;
    color: deeppink;
}

.footer {
    width: 100%;
    background-color: rgb(231, 122, 141);
    color: white;
    padding: 40px 20px 0;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-box h2,
.footer-box h3 {
    margin-bottom: 10px;
}

.footer-box a {
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-box a:hover {
    color: orange;
}

.footer-bottom {
    text-align: center;
    margin-top: 35px;
    padding: 15px;
    border-top: 1px solid white;
}




@media screen and (max-width:768px) {

    .menu-button {
        display: block;
        font-size: 30px;
    }

    nav ul {
        position: absolute;
        top: 70px;
        left: -100%;
        width: 220px;
        background: white;
        display: block;
        padding: 20px;
    }

    nav ul li {
        margin: 20px 0;
    }

    nav ul li a {
        display: block;
    }

    #check:checked~ul {
        left: 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-box {
        align-items: center;
    }

    .hero {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 70px 50px;
        background-color: mistyrose;
    }

    .hero-text {
        width: 45%;
    }

    .hero-text h1 {
        font-size: 30px;
        color: brown;
        margin-bottom: 15px;
        margin-top: 40px;
    }

    .hero-text p {
        font-size: 15px;
        color: black;
        margin-bottom: 15px;
    }

    .hero-text button {
        background-color: orange;
        color: white;
        border: none;
        padding: 10px 15px;
        font-size: 10px;
        border-radius: 25px;
        cursor: pointer;
        margin-bottom: 10px;
        transition: 0.5s ease;
    }

    .hero-text button:hover {
        background-color: brown;
    }

    .hero-image img {
        width: 300px;
        height: auto;
        border-radius: 20px;
    }

    .about{
        flex-direction: column-reverse;
        padding: 50px 20px;
        gap: 30px;
        text-align: center;
    }

    .about-text{
        width: 100%;
    }

    .about-text h3{
        margin-top: 60px;
    }

    .about-image img{
        width: 300px;
    }

    .about-text h3{
        font-size: 20px;
    }

    .about-text h2{
        font-size: 30px;
    }

    .about-text p{
        font-size: 15px;
        line-height: 24px;
    }

    .specials h3{
        margin-top: 20px;
        font-size: 50px;
    }
    

    .gallery {
        padding: 50px 20px;
    }

    .gallery h2{
        margin-top: 60px;
    }

    .gallery-container{
        gap: 20px;
    }

    .gallery-card{
        width: 42%;
        padding: 12px;
    }

    .gallery-card img{
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .gallery-card h4{
        font-size: 16px;
    }

    .gallery-card p{
        font-size: 14px;
    }

    .contact {
        padding: 60px 20px;
    }

    .contact-container {
        flex-direction: column;
        padding: 25px;
        gap: 30px;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }

    .contact-form button {
        width: 100%;
    }



}