body {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e5e2aa;
}


header {
    background-color: rgba(214, 143, 56, 0.77);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    font-size: 35px;
    font-weight: bold;
    color: #333;
}
#about p{
    font-size:large;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    font-size: 30x;
}
header-section{
    gap: 20px;
}
nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}
#blog-text{
    justify-content: center;
    align-items: center;
    text-align: center;

}
nav ul li a:hover {
    color: #be401a;
    transform: scale(1.1);

}
.hero-section {
    background: url('new1.jpg') no-repeat center center/cover;
    height: 80vh;
    color: #292727;
    border: #f0f9c3;
    display: flex;
    justify-content: left;
    align-items: center;
    text-align: center;
}

.hero-content {
    background-color:rgba(214, 143, 56, 0.77);
    padding: 20px;
    border-radius: 20px;
}

.hero-buttons button {
    background-color: #ff6923d1;
    color: #242424;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.hero-buttons button:hover {
    background-color: #f44610;
    transform: scale(1.1);
}

section {
    padding: 40px 20px;
    text-align: center;
}

section h2 {
    margin-bottom: 20px;
}
.dishes-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content:space-around;
    gap: 20px;
}

.dish-tile {
    position:relative;
    display: inline-block;
    width: 30%;
    margin: 10px;
    overflow: hidden;
    border-radius: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.dish-tile img {
    width: 100%;
    height: 50vh;
    display: block;
}

.dish-tile:hover {
    transform: scale(1.05);
}

.dish-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.dish-tile:hover .dish-info {
    transform: translateY(0);
}

.dropdown-menu {
    display: none;
    margin-top: 10px;
    background-color: #bb7979;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#orderNowButton {
    background-color: #ff5722; /* orange color */
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease; 
  }
  
  #orderNowButton:hover {
    background-color: #e64a19; 
    transform: scale(1.05);
  }
  
  #orderNowButton:active {
    background-color: #ff5722; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); 
  }
  
  #orderForm {
    background-color: #b4c9d8;
    padding: 20px;
    border: 1px solid #382323;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none; 
  }
  
  #orderForm label {
    display: block;
    margin-bottom: 10px;
  }
  
  #orderForm select {
    width: 100%;
    padding: 10px;
    border: 1px solid #b4ccf4;
    border-radius: 5px;
  }
  
  #orderForm button[type="submit"] {
    background-color: #ff5722; 
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  #orderForm button[type="submit"]:hover {
    background-color: #e64a19; 
    transform: scale(1.05);
  }
  
  #orderForm button[type="submit"]:active {
    background-color: #ff5722; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); 
  }
.reservation-section {
    background-color: #f7f7f7;
    padding: 20px;
  }
  
  .reservation-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  #bookSeatButton {
    background-color: #ff5722;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  #bookSeatButton:hover {
    background-color: #e64a19;
    transform: scale(1.05);
  }
  
  #bookSeatButton:active {
    background-color: #ff5722;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); 
  }
  
  #blogs {
    margin-top: 20px;
  }
  
  #blogs h3 {
    margin-top: 0;
    font-size: 18px;
    color: #666;
  }
  
  #blog-text {
    width: 85%;
    height: 200px;
    padding: 40px;
    margin: 30px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    border: 1px solid #ccc;
    border-radius: 10px;
    resize: vertical;
    background-color:#c7d486de;
  }
  
  #blog-text:focus {
    border-color: #aaa;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  #submit-blog {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    margin-top: 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
  }
  
  #submit-blog:hover {
    background-color: #3e8e41;
  }
  
  #popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #dcd4d4;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    animation: fadeOut 3s forwards;
    animation-delay: 3s;
  }
  
  #popup p {
    font-size: 18px;
    color: #333;
  }

footer {
    background-color: #c7d486;
    color: #646562;
    text-align: center;
    padding: 10px 0;
}

@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
    }
    
    header nav ul li {
        margin: 10px 0;
    }
    
    .hero-section {
        height: auto;
        padding: 20px;
    }
    
    .hero-buttons button {
        width: 100%;
        margin: 10px 0;
    }
    
    .dish-grid {
        grid-template-columns: 1fr;
    }
    
    .dish-tile {
        margin-bottom: 20px;
    }
}

@keyframes fadeOut {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
