* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
  color: #333;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('kulcha-bg.jpg') center/cover no-repeat;
  position: relative;
}

.overlay {
  /* background: rgba(0,0,0,0.6); */
  height: 100%;
  width: 100%;

  background-image: 
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url("images/ChatGPT\ Image\ Jan\ 25\,\ 2026\,\ 03_15_02\ AM.png");

  background-size: cover;       /* FULL SCREEN */
  background-position: center;  /* CENTER */
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  color: #fff;
  text-align: center;

  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.overlay h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  background: #ff9800;
  color: #000;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
}

/* About */
.about {
  padding: 60px 20px;
  text-align: center;
}

.about h2 {
  margin-bottom: 15px;
  color: #ff9800;
}

/* Menu */
.menu {
  background: #f8f8f8;
  padding: 60px 20px;
  text-align: center;
  color: #f8f8f8;
}

.menu h2 {
  margin-bottom: 30px;
  color: #ff9800;
}

/* .menu-items {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
} */
.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}


.card span {
  display: block;
  margin-top: 10px;
  color: #ff9800;
  font-weight: bold;
}

.card.highlight {
  border: 2px solid #ff9800;
  box-shadow: 0 0 15px rgba(255,152,0,0.4);
}

/* .card {
  background: #fff;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #ff9800;
} */

/* Info */
.info {
  padding: 60px 20px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
}

.info h3 {
  margin-bottom: 10px;
  color: #ff9800;
}
.map {
  padding: 60px 20px;
  background: #0e0e0e;
  color: #fff;
  text-align: center;
}

.map h2 {
  color: #ff9800;
  margin-bottom: 20px;
}
.order {
  padding: 60px 20px;
  text-align: center;
  background: #000;
}

.order h2 {
  color: #ff9800;
  margin-bottom: 25px;
}

.order-btn {
  display: inline-block;
  margin: 10px;
  padding: 14px 28px;
  background: #ff9800;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
}

.order-btn.secondary {
  background: transparent;
  border: 2px solid #ff9800;
  color: #ff9800;
}
/* body {
  background: #0b0b0b;
  color: #eaeaea;
}
.card {
  background: #141414;
  color: #fff;
}*/

.menu {
  background: #0f0f0f;
}

/* .about {
  background: #000;
} */ 


/* Footer */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}
