@font-face {
  font-family: "OleoScript";
  src: url(../fonts/OleoScript-Regular.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "OleoScript";
}
a {
  text-decoration: none;
}
header {
  background-color: #0a0908;
  color: #ffba08;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 25px;
  border-bottom: 1px dotted #f48c06;
}
.intro {
  height: 90vh;
  background: url(../images/ea52a629-a8ca-40db-a27a-0af708fb2333.jpg)
    center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: white;
}

.intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
}
.intro-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 20px;
}

.intro-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.intro-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
nav {
  width: 200px;
  display: flex;
  justify-content: space-around;
  font-size: 25px;
}
nav a {
  color: #ffba08;
  font-weight: 800;
}
h1 {
  font-size: 35px;
  text-align: center;
  color: #ffba08;
  text-transform: capitalize;
}
.orderbox {
  /* background-color: yellow; */
  width: 80%;
  margin: 110px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* border: 2px solid #f48c06; */
  padding: 10px;
  position: relative;
  box-shadow: 0 4px 6px #f48c06;
}
.orderBox-img {
  width: 30%;
}
.orderBox-img img {
  width: 100%;
}
.orderBox-form {
  width: 50%;
  /* background-color: aqua; */
}
#order-form {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  gap: 50px;
}
#order-form input {
  display: inline-block;
  width: 100%;
  outline: none;
  /* height: 50px; */
  border-radius: 10px;
  border: none;
  border-bottom: 1px solid #9d0208;
  padding: 10px;
}
#order-form h2 {
  text-align: center;
  color: #6a040f;
  text-transform: uppercase;
  letter-spacing: 2px;
}
#mealPreview {
  /* background-color: #9d0208; */
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  width: 100%;
}
.upload-label {
  padding: 10px 20px;
  background: #03071e;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  width: 250px;
  transition: all 0.5s;
}
.upload-label:hover {
  background: #ff4500;
}
#place-order-btn {
  background: linear-gradient(135deg, #ff7f50, #ff4500);
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#place-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
#userOrder-list {
  /* background-color: aqua; */
  height: 350px;
  width: 70%;
  margin: 100px auto 10px auto;
  box-shadow: 0 6px 12px #03071e;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
th,
td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}
th {
  background-color: #dc2f02;
  color: #f9f9f9;
}

tr:hover {
  background-color: #f9f9f9;
}

#clearOrders {
  background: linear-gradient(135deg, #9d0208, #dc2f02);
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin: 0 auto 90px auto;
  width: 200px;
  display: block;
}

#clearOrders:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px #f48c06;
}
footer {
  width: 100%;
  background-color: #0a0908;
  color: #ddd;
  text-align: center;
  letter-spacing: 5px;
  height: 50px;
  line-height: 50px;
}

/* Menu style*/
.menu {
  margin-right: auto;
  border-radius: 20px;
  display: flex;
  height: auto;
}
.menu-item {
  background-color: #f48c06;
  height: 100hv;
  width: 20%;
  text-align: center;
  padding: 20px 0;
}
.menu-item h2 {
  letter-spacing: 6px;
  padding: 5px;
  margin: 5px 0;
  color: #f9f9f9;
}
.menu-img {
  width: 50%;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  text-align: center;
  margin: 20px auto;
}
.menu-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 6px #dc2f02;
  cursor: pointer;
  transition: all 0.5s;
}
.menu-img img:hover {
  box-shadow: 0 4px 6px #03071e;
  transform: scale(1.1);
}
.meals-menu {
  width: 70%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-left: auto;
  padding: 10px;
}
.menu-details {
  width: 20%;
  margin: 0 5px;
  position: relative;
  height: 300px;
}
.meal-img {
  padding-top: 5px;
  width: 80%;
  margin: 0 auto;
  /* background-color: orange; */
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.meal-img img {
  width: 100%;
  /* border: 2px solid #f48c06; */
  border-radius: 5px 95px 0 139px;
  box-shadow: 0 4px 6px #f48c06;
  cursor: pointer;
  transition: border 0.5s;
}
.meal-img img:hover {
  border: 2px solid #f48c06;
}
.meal-info {
  /* margin-top: 25px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  /* font-weight: 600; */
  text-transform: capitalize;
  font-size: 18px;
  background: linear-gradient(to right, #f48c06, #ff4500);
  height: 220px;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  padding: 80px 0 0 5px;
  text-align: center;
  border-top-left-radius: 100px;
  box-shadow: 0 4px 6px #f48c06;
}
.line {
  width: 99.8%;
  background-color: #03071e;
  height: 2px;
  margin-left: 1px;
  position: absolute;
  top: 165px;
  left: 0;
  z-index: 2;
}
