/* menu page css */

.menu-container {
    background-color: rgb(236 236 236 / 65%);
}

.menu-title1 {
    text-align: center;
    padding-top: 26px;
}

.categories {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

}

.categories button {
    margin: 20px 10px;
    padding: 5px 10px;
    background-color: white;
    border-radius: 8px;
    font-weight: 500;
}

.categories button:hover {
    background-color: antiquewhite;
}

.categories button.active {
    background-color: orange;
}

.menu-item-list h3 {
    font-weight: 300;
}

.menu-item-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

}

.menu-items-row {
    display: flex;
    /* align-items: center; */
    flex-wrap: wrap;
    justify-content: center;

}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 25%;
    /* height: 11rem; */
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin: 10px;
    padding: 10px;
    cursor: pointer;
    min-height: 11rem;
    max-height: 15rem;
}

.menu-item:hover {
    box-shadow: 0 4px 8px 0 gainsboro;
}

.menu-item p {
    display: none;
}

.menu-item h5 {
    text-align: center;
}

.menu-content img {
    width: 70px;
    height: 70px;
}

.menu-content-info {
    display: block;
    /* margin: 0px 0px 0px 41px */
}

.menu-content-info h5 {
    text-align: center;
    /* margin: 0px 0px 0px 41px */
}

.menu-content-info p {
    display: none;
    /* margin: 0px 0px 0px 41px */
}

.all-menu {
    margin-top: 40px;
}

.all-menu-btn {
    margin: 1rem 0;
}

.all-menu h2 {
    margin: 35px 0px 25px 0px;
    text-align: center;
}

/* Seach box  */
.search-input {
    border: 1px solid gray;
    border-radius: 11px;
    padding: 0px 15px;
}

.search-button {
    border: none;
    background: none;
    font-size: 18px;
    color: gray;
}

.search-button:hover {
    color: black;

}

/* For item  details page  */
/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 100px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    display: flex;
    align-items: center;
    background-color: #fefefe;
    margin: 10% auto;
    /* padding: 20px; */
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    /* Limit maximum width of modal */
    border-radius: 5px;
    position: relative;

}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    /* left: 0; */
    top: 0;
    right: 14px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

.modal-content img {
    width: 300px;
    height: 300px;
}

.info-item1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
}

.item-details-info1 {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.item-details-info2 {
    margin: 1rem;
}

.item-details-info2 h4 {
    font-weight: 700;
}

.new-contact-cl-1 {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    border-radius: 12px;
}

.new-contact-cl-2 {
    margin: 2rem auto;
}

.new-contact-cl-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: blur(8px); */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.contact-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: rgba(0, 0, 0, 0.45);
    padding: 30px 25px;
    border-radius: 10px;
    width: 85%;
    max-width: 450px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form h2 {
    margin-bottom: 10px;
    text-align: center;
    font-family: auto;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid white;
    border-radius: 5px;
    outline: none;
    font-size: 1em;
    resize: none;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    color: white;
}

.contact-form textarea {
    min-height: 80px;
}

.contact-form button {
    padding: 10px 0;
    background: #ff9800;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form button:hover {
    background: #ff5c00;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #fff;
    opacity: 1;
}

.new-contact-cl-3 {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    margin: 5rem auto 3rem;
    gap: 2rem;
}

.new-contact-cl-4 h1 {
    font-family: auto;
    font-weight: 800;
}

.new-contact-cl-6 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 4rem;
}

.new-contact-cl-6 h1 {
    font-weight: 800;
    font-family: auto;
    margin-bottom: 1.5rem;
}

.new-contact-cl-6 iframe {
    width: 85%;
    height: 70vh;
}

.reservation-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #faf7f2;
}

.reserve-cl-1 {
    position: relative;
    width: 100%;
    height: 100vh;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.15);
}

.reserve-cl-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: blur(7px) brightness(0.8); */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Reservation Form Styling */
.reservation-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: rgba(0, 0, 0, 0.45);
    padding: 32px 28px;
    border-radius: 12px;
    width: 85%;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
    padding: 5rem;
}

.reservation-form h1 {
    margin-bottom: 8px;
    text-align: center;
    letter-spacing: 1px;
    font-family: auto;
    font-weight: 800;
}
.reservation-form h4 {
    text-align: center;
    font-family: auto;
    font-weight: 700;
}

.reservation-form p {
    text-align: center;
    font-family: auto;
}

.reserve-cl-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.reserve-cl-2 input {
    padding: 10px;
    border: 1px solid white;
    border-radius: 5px;
    outline: none;
    font-size: 1em;
    width: 100%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
}

.reserve-cl-2 input::placeholder {
    color: #fff;
    opacity: 0.85;
}

.reservation-form button {
    background: #ff9800;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
    max-width: 277px;
    margin: auto;
    padding: 0.6rem 2rem;
}

.reservation-form button:hover {
    background: #ff5c00;
}