* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: white;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
        rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.navbar-links {
    display: flex;
    column-gap: 20px;
}

.navbar-links a {
    text-decoration: none;
    color: #1d232c;
}

.navbar-links a:hover {
    text-decoration: underline;
    color: #1d232c;
}

.navbar-menu-toggle {
    display: none;
}

@media screen and (max-width: 700px) {
    .navbar-menu-toggle {
        display: block;
    }

    .navbar-links {
        display: none;
    }

    .side-navbar {
        width: 100%;
        left: -100%;
    }
}

.side-navbar {
    background-color: #1d232c;
    width: 35%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: -60%;
    padding: 20px;
    color: white;
    transition: 0.5s;
    z-index: 1;
}


.side-navbar-link {
    margin-bottom: 30px;
}

.side-navbar-links a {
    text-decoration: none;
    color: #ffffff;
}

.side-navbar-links a:hover {
    text-decoration: underline;
}

.hero {
    background-image: url("./images/hero-background1.jpg");
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    text-align: left;
    color: #fff;
    margin-top: 20px;
}

.hero-content {
    max-width: 600px;
    padding: 20px;
    margin: 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #ff0000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    margin: auto;
}

.about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 80px 0;
}

.about-content {
    flex: 1;
    max-width: 600px;
    padding-right: 50px;
    color: #1d232c;
    margin: auto;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    margin-bottom: 20px;
}

.about-image {
    max-width: 50%;
    margin-right: 5%;
    display: block;
    margin: auto;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.gallery {
    padding: 80px 0;
    text-align: center;
    background-color: #1d232c;
}

.image-item:hover {
    transform: translateY(-10px);
}

.gallery h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #fff;
    margin-top: -20px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 20px;
    margin-left: 5%;
    margin-right: 5%;
}

.image-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-top: 30px;
}

.contact {
    background-color: #333;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.info-item {
    margin: 0 20px;
    text-align: center;
}

.info-item i {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: none;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button ,.menu-item_container_button {
    display: inline-block;
    background-color: #ff0000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    border: 2px solid #ffffff;
}

.contact-form button:hover {
    background-color: #5e0d0d;
    cursor: pointer;
}

.footer {
    background-color: #070e16;
    padding: 40px 0;
    color: #fff;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.footer-social a {
    color: #fff;
    margin: 0 5px;
    text-decoration: none;
}

.footer-text {
    font-size: 14px;
}

@media screen and (max-width:700px) {
    .about-image {
        display: none;
    }
}

@media screen and (max-width:430px) {
    .hero {
        background-image: none;
        background-color: #080e15;
        height: 70vh;

    .hero-content {
        max-width: 600px;
        padding: 20px;
        margin: auto;
        }
    }
}

.gallery-para{
    color: whitesmoke;
    margin: auto 15px;
    padding: 20px ;
    display: flex;
    border: 2px solid beige;
    border-radius: 25px;
    text-align: justify;
}

/* menu*/
.menu {
  padding: 80px 0;
  text-align: center;
}

.menu h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #070e16;
  text-decoration: underline;
  top: -20px;
}

.menu-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 25px;
}

.menu-item {
  max-width: 300px;
  margin: 0 20px;
  text-align: left;
  border: 2px solid #002855;
  border-radius: 15px;
  margin-bottom: 20px;
  background-color: #070e16;
  padding: 10px;
}

.menu-item_container{
    text-align: center;

}

.menu-item:hover{
    transform: translateY(-15px);
}

.menu-item img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}

@media screen and (max-width:700px) {
    .menu-item {
        flex-wrap: wrap;
    }
}
.menu-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffffff;
}

.menu-item p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #ffffff;
}

.input-box{
    width: 60vw;
    border-radius: 100px;
    border: 2px solid #070e16;
    padding: 10px;
    margin: 20px auto;
}

.reservations {
  padding: 80px 0;
  text-align: center;
}

.reservation-form {
  max-width: 500px;
  margin: 0 auto;
  background-color: #333;
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.reservation-form h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
}

.reservation-form form input,
.reservation-form form textarea {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: none;
}

.reservation-form form button {
  display: inline-block;
  background-color: #ff0000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.reservation-form form button:hover {
  background-color: #e60000;
}

.price {
    display: inline;
}
 
.menu-item h2{
    color: red;
    display: inline;
}
