/* Custom Order Now Button with btn-shape.png background */
.order-now-btn {
  display: inline-block;
  position: relative;
  padding: 15px 40px;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 180px;
  text-align: center;
  background-color: #c3663f;
  border: none;
  transition: all 0.3s ease;
  -webkit-mask-image: url("../img/theme-img/btn-shape.png");
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("../img/theme-img/btn-shape.png");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  overflow: hidden;
}

/* Reflection/Shine effect */
.order-now-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: left 1s ease;
}

.order-now-btn:hover {
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  transform: scale(1.05);
}

.order-now-btn:hover::after {
  left: 150%;
}

.header-button-left {
  display: flex;
  align-items: center;
}

/* Move hero-1-3 image above the ring and to the right */
.hero-shape-1-3 {
  top: 8% !important;
  right: 5% !important;
}

/* Visit Our Restaurant button - longer width for single line text */
.visit-restaurant-btn {
  min-width: 280px;
  padding: 15px 50px;
  white-space: nowrap;
}
