body {
  font-family: "Lato", sans-serif;
  color: #8b0000;
}

.container {
  margin: 0 auto;
}

/* hero */
.hero {
  background: url("https://kentuckycurryhouse.com/assets/images/hero-min.png") no-repeat center center;
  background-size: cover;
  color: #ffffff;
  text-align: center;
  padding: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero h1 {
  font-size: 5rem;
  margin: 0.5em 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero p {
  font-size: 2rem;
  margin: 0.5em 0;
  max-width: 80%;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.button {
  background-color: #ff5722;
  color: #ffffff;
  padding: 12px 30px;
  border: none;
  border-radius: 20px;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.button:hover {
  background-color: #e64a19;
  transform: translateY(-2px);
  color: #fff;
}

/* end of hero */

@keyframes bounceIn {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.section {
  padding: 50px 20px;
}

.specials-heading {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.special-title {
  cursor: pointer;
  color: #8b0000;
  position: relative;
  font-family: sans-serif;
  padding: 10px;
}

.special-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background-color: #e64a19;
  border-radius: 50%;
  display: none;
}

.special-title.active::after {
  display: block;
}

.order-now {
  display: inline-block;
  margin-top: 10px;
  color: #ff5722;
  text-decoration: none;
  transition: color 0.3s ease;
}

.order-now:hover {
  color: #e64a19;
}

.special-title:hover,
.special-title.active {
  color: #ff5722;
  font-weight: bold;
}

#specials .dishes-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 20px;
  justify-content: center;
}
.dish {
  padding: 20px;
}

#specials .dish img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.3s ease;
  aspect-ratio: 4/5;
}

#specials .dish:hover img {
  transform: scale(1.05);
}

#specials .dish h3,
#specials .dish p {
  text-align: center;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  #specials .dishes-grid {
    grid-template-columns: 1fr;
  }

  .specials-heading {
    gap: 10px;
  }

  .special-title {
    font-size: 22px;
  }
}