* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Abhaya Libre', serif;
  background-color: #ddd;
}


.navbar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: url('https://www.transparenttextures.com/patterns/concrete-wall.png');
  background-color: #f4f4f4;
  z-index: 10;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links li {
  font-size: 16px;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
  color: black;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #555;
}

.nav-links .active a {
  background: black;
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
}

.signin {
  display: flex;
  align-items: center;
  gap: 10px;
}

.signin-link {
  background: black;
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 800;
}

.signin-link:hover {
  opacity: 0.8;
}


.hero {
  text-align: center;
  padding: 60px 20px;
  background: #f4f4f4;
}

.hero h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  color: #444;
}


.menu-category {
  padding: 40px 60px;
}

.menu-category h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 20px;
  border-left: 5px solid black;
  padding-left: 10px;
}


.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.menu-item {
  background: #f4f4f4;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.menu-item img {
  width: 150px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
}

.menu-item h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 5px;
}

.menu-item p {
  font-size: 14px;
  margin: 4px 0;
}


footer {
  background-image: url('images/1fd332eb-6529-41f6-bd13-a37853e23afa (1).jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 20px;
  color: #fff;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-content div {
  flex: 1;
  min-width: 220px;
  max-width: 250px;
}

.footer-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 6px;
}

.footer-content p,
.footer-content a {
  font-size: 15px;
  color: #f1f1f1;
  text-decoration: none;
  line-height: 1.6;
  margin: 4px 0;
}

.footer-content a:hover {
  text-decoration: underline;
  color: #ddd;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 10px;
  padding-top: 15px;
  font-size: 13px;
  color: #ccc;
}
