* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #111;
  color: white;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.goldColor {
    color: #ffc61c !important;
}



/*
HERO EDITING
*/
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-overlay {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 3rem;
  color: white;
}

.hero-overlay h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Mobile */
@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2.9rem;
  }

  .hero-overlay p {
    font-size: 1.3rem;
    padding: 0 1rem;
  }

}

@media (max-width: 426px) {
  .hero-overlay h1 {
    font-size: 2.1rem;
  }

    .hero-overlay p {
    font-size: 1.3rem;
    padding: 0 1rem;
  }
}

@media (max-width: 321px) {
  .hero-overlay h1 {
    font-size: 2rem;
  }

    .hero-overlay p {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
}


/*
MENU STYLIGN
*/
.menu-categories {
  text-align: center;
  margin: 3rem 1rem;
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.category-btn {
  padding: 0.7rem 1.2rem;
  border: 2px solid #cf2e36;
  background-color: transparent;
  color: #cf2e36;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.category-btn.active,
.category-btn:hover {
  background-color: #cf2e36;
  color: white;
}

.menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.category-header {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.category-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffc61c;
}

.category-header p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 600px;
  margin: 0.5rem auto 0 auto;
}


.menu-card {
  background-color: white;
  color: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  width: 300px;
}

.menu-card:hover {
  transform: translateY(-5px);
}

.menu-card-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heat-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 6px;
  color: white;
}

.heat-tag.mild {
  background-color: #f4c542;
}

.heat-tag.medium {
  background-color: #f27706;
}

.heat-tag.hot {
  background-color: #cf2e36;
}

.menu-card-body {
  padding: 1rem;
}

.menu-card-body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
}

.menu-card-body p {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.5rem;
}

.card-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.spice-level {
  font-size: 1.2rem;
  color: #cf2e36;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #cf2e36;
}




/*
ORDER CTA ececec
*/
.order-cta-wrapper {
  background-color: #ffffff;
  padding: 3rem 1rem;
}

.order-cta {
  background-color: #ececec;
  padding: 2.5rem 2rem;
  border-radius: 14px;
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}


.order-cta h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.order-cta .highlight {
  color: #111;
  font-weight: 600;
}

.order-cta .highlight-red {
  color: #b71c1c;
  font-weight: 700;
}

.order-cta p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #444;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.call-btn {
  background-color: #da2323;
  color: #fff;
}

.call-btn:hover {
  background-color: #b71717;
}

.visit-btn {
  background-color: #f69711;
  border: 1px solid #f69711;
  color: #ffffff;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.visit-btn:hover {
  background-color: #d87f0d;
  border-color: #d87f0d;
}



.order-online-btn {
  display: inline-block;
  margin-top: 1.25rem;
  background-color: #000;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.order-online-btn i {
  margin-left: 0.5rem;
}

.order-online-btn:hover {
  background-color: #333;
}
