/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("top.jpeg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.tagline {
  color: #d4a94f;
  letter-spacing: 3px;
  font-size: 12px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 300;
}

.hero h1 span {
  color: #d4a94f;
  font-style: italic;
}

.subtitle {
  color: #ddd;
}

.btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
}

.primary {
  background: #d4a94f;
  color: #000;
}

.secondary {
  border: 1px solid #fff;
  color: #fff;
}

/* MENU */
.menu-section {
  padding: 60px 20px;
  text-align: center;
  background: #f6f6f6;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.menu-item {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
}

.menu-item img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
}

.menu-item span {
  color: #d4a94f;
}

/* STORY */
.story {
  padding: 60px 20px;
  text-align: center;
}

.story img {
  max-width: 600px;
  width: 100%;
  border-radius: 15px;
}

/* BOTTOM */
.bottom-section {
  background: #f4e36c;
  padding: 60px 20px;
}

.bottom-top {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.bottom-image img {
  width: 100%;
  border-radius: 15px;
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.cta-btn {
  background: red;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
}

/* FORM */
.form-section {
  padding: 50px;
  text-align: center;
}

input, textarea {
  width: 300px;
  padding: 10px;
  margin: 10px;
}

.whatsapp-btn {
  background: green;
  color: #fff;
  padding: 10px 20px;
}

/* FOOTER */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* MOBILE */
@media(max-width:768px){
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-cards {
    grid-template-columns: 1fr;
  }
}