* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  color: #222;
}
.navbar {
  background: #1e2b45;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo {
  font-size: 1.5rem;
}
.navbar ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}
.navbar ul li a {
  color: white;
  text-decoration: none;
  padding: 0.3rem 0.6rem;
}
.navbar ul li a.active,
.navbar ul li a:hover {
  background-color: #facc15;
  color: #1e2b45;
  border-radius: 5px;
}
.hero {
  height: 90vh;
  background-image: url("https://source.unsplash.com/1600x900/?textile,factory");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 3rem;
  text-align: center;
  color: white;
  border-radius: 10px;
}
.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}
.section h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  text-align: center;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  width: 300px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card p {
  padding: 1rem;
}
.about-content {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}
.about-content img {
  width: 50%;
  border-radius: 8px;
}
.about-values ul {
  list-style: square;
  margin-top: 1rem;
  margin-left: 2rem;
}
.menu-list .menu-item {
  padding: 1rem;
  background: #fff;
  margin: 0.5rem auto;
  max-width: 600px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}
.contact-info {
  margin: 2rem 0;
}
.footer {
  background: #1e2b45;
  color: white;
  text-align: center;
  padding: 2rem;
}
.about-img, .contact-img, .menu-img {
  width: 100%;
  max-width: 500px;
  margin: 1rem auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.menu-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.hero.full-bg {
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  color: white;
  position: relative;
  text-align: center;
}

.hero .overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 50px 30px;
  border-radius: 10px;
  display: inline-block;
}

.cta-button {
  margin-top: 20px;
  background-color: #facc15;
  color: #1e2b45;
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.cta-button:hover {
  background-color: #ffd700;
}

.banner {
  background: #f1f1f1;
  padding: 40px 20px;
  text-align: center;
  color: #333;
}
