/* Reset + font */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Hero Section */
#hero {
  height: 80vh;
  background: url('assets/food.jpg') center/cover no-repeat;
  position: relative;
}
nav {
      background-color: #fff5e6 !important;
}
#hero .overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  position: absolute;
}

#hero .content {
  z-index: 2;
}

/* Menu Cards */
.menu-card {
  background-color: #fff;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.25);
}

.menu-card .card-img-top {
  height: 200px;
  object-fit: cover;
}


/* Sections background */
#menu, #contact {
  min-height: 60vh;
  background-color: #fff5e6 !important;
}

/* Primary color override */
.btn-primary {
  background-color: #e63946 !important;
  border-color: #e63946 !important;
}

.btn-primary:hover {
  background-color: #c5303f !important;
  border-color: #b52a38 !important;
}

/* Link hover */
a:hover {
  color: #e63946 !important;
}

/* Footer */
footer {
  background-color: #fff5e6 !important;
}

/* Form styling */
.form-control:focus {
  border-color: #e63946;
  box-shadow: none;
}
