*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
}

nav {
  display: flex;
  height: 60px;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;

}

.nav-title {
  font-size: 1.8rem;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding: 3px 7px;
  background-color: transparent;
  color:white;
  border-color: white;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
} 
.nav-links li a:hover {
  background-color: white;
  color: black;
}

.search-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 270, 0.15);
  border: 1.5px solid #ffffff80;
  border-radius: 50px;
  padding: 5px 10px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  width: 100%;
  height: 40px;
  max-width: 460px;
  margin: 0 auto;
}



.search-wrapper:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: #ffffffcc;
}

.search-box {
  flex: 1;
  border: none;
  height: 10px;
  outline: none;
  background: transparent;
  color: white;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 50px;
  
}

.search-box::placeholder {
  color: #ffffffcc;
  font-style: italic;
}

.search-btn {
  background-color:  rgba(255, 255, 255, 0.25);;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-btn:hover {
  background-color: #357ABD;
}

.hero {
  background: url("images/demo.png") center center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}


.hero-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
  transition: transform .3s ease;
}
.hero-content:hover{
   transform: scale(1.04);
}

.hero .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
  text-decoration: none;
  border-radius: 5px;
}
.menu-section{
  padding: 40px 20px;
  background: #fff;
  display: flex;
  flex-direction:column ;
}
.menu-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.menu-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, 250px);
  gap: 40px;
  background-color:	#f4f4f4;
  padding: 20px;
  justify-content: center;     
}

.menu-item {
  width: 250px;             
  height: 200px;
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);  
  transition: transform .3s ease;
  margin: 10px;
}

.menu-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6); /* dark overlay */
  color: white;
  padding: 10px;
  text-align: center;
}

.menu-overlay h3 {
  margin: 0;
  font-size: 18px;
}

.menu-overlay p {
  font-size: 12px;
  margin: 5px 0;
}

.menu-overlay button {
  margin-top: 5px;
  padding: 6px 12px;
  background: linear-gradient(45deg, #ff6a00, #ee0979);
  border: none;
  border-radius: 25px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.2s, box-shadow 0.2s;
}

.menu-overlay button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.6);
}



.menu-item:hover {
  transform: scale(1.04);
}

.menu-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  text-align: center;
}

.about, .contact {
  padding: 40px 20px;
  background: #eee;
  text-align: center;
}

.about-section {
  padding: 40px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.about-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.about-section p {
  max-width: 800px;
  margin: 10px auto;
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}
.login-box {
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      width: 280px;
      height: 380px;
      color: white;
    }

    h2 {
      margin-bottom: 20px;
    }

    input {
      width: 80%;
      padding: 10px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 5px;
    }

    .forgot-password {
      display: block;
      text-align: right;
      font-size: 12px;
      margin-bottom: 10px;
      color: #eee;
      text-decoration: none;
    }

    

footer {
  background: #0f2027;
  color: white;
  padding: 20px;
  text-align: center;
}

@media (max-width: 768px) {
   .nav-links {
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #203a43;
    width: 100%;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 10px 0;
    text-align: center;
  }

  .search-form {
    margin: 10px auto;
    width: 90%;
  }
 .search-wrapper {
    margin: 10px 0;
    width: 90%;
    max-width: 100%;

  }
  .nav-title{
    font-size: 15px;
  }

  .search-form input {
    width: 100%;
  }
  .nav-links.active {
    display: flex;
  }
  .hero{
    height: 550px;
  }

  .nav-links li {
    padding: 10px 0;
    text-align: center;
  }

 .menu-toggle {
  display: block;
  font-size: 28px;
  cursor: pointer;
  color: white;
  margin-left: 12px;
  }
}