#hero {
  background-color: var(--secondary);
  color: var(--white);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 1;
}

/* Mobile rotated background overlay */
#hero.mobile-rotated-bg::after {
  content: '';
  position: absolute;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(90deg);
  transform-origin: center center;
  width: 150vh;
  height: 150vw;
  left: 50%;
  top: 50%;
  margin-left: -75vh;
  margin-top: -75vw;
  z-index: 0;
}

/* Mobile blur overlay - needs to be above the rotated background */
#hero.mobile-rotated-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  max-width: 850px;
}

#hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#hero p {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.awards-container {
  margin: 2.5rem 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.8s ease-out;
}

.awards-title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

.award-title-icon {
  color: #FFD700; /* Gold color */
  font-size: 1.3rem;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.awards-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
  position: relative;
}

.awards-category {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

.category-label {
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.3rem 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
  position: relative;
}

.category-label::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  opacity: 0.7;
}

.winner-label {
  color: #FFD700; /* Gold color */
}

.winner-label i {
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
}

.finalist-label {
  color: #C0C0C0; /* Silver color */
}

.finalist-label i {
  filter: drop-shadow(0 0 5px rgba(192, 192, 192, 0.6));
}

.awards-row {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.award-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  backdrop-filter: blur(2px);
  transition: all 0.3s ease;
  min-width: 60px;
  position: relative;
  overflow: hidden;
}

.award-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  z-index: 0;
}

.award-item:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(255, 255, 255, 0.15);
}

.award-item.winner {
  background: rgba(255, 215, 0, 0.15); /* Gold with transparency */
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.award-item.winner:hover {
  background: rgba(255, 215, 0, 0.25);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.award-item.finalist {
  background: rgba(192, 192, 192, 0.15); /* Silver with transparency */
  border: 1px solid rgba(192, 192, 192, 0.2);
}

.award-item.finalist:hover {
  background: rgba(192, 192, 192, 0.25);
  border: 1px solid rgba(192, 192, 192, 0.3);
}

.award-year {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.award-item.winner .award-year {
  color: #FFD700; /* Gold color */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.award-item.finalist .award-year {
  color: #E0E0E0; /* Light silver for better readability */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

#about {
  background-color: var(--white);
  padding: 6rem 2rem;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
}

#menu-highlights {
  padding: 6rem 2rem;
  background-color: var(--light);
}

.menu-overview {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 1rem;
  text-align: center;
}

.menu-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.menu-tag {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border-radius: 50px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  gap: 0.4rem;
  box-shadow: var(--shadow-soft);
}

.menu-tag i {
  color: var(--primary);
}

#menu-highlights .menu-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

#menu-highlights .menu-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  flex: 1 1 300px;
  max-width: 350px;
  transition: var(--transition);
  text-align: center;
}

#menu-highlights .menu-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.menu-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: inline-block;
}

/* New styles for the chicken image */
.chicken-image-container {
  margin: -2rem -2rem 1.5rem -2rem;
  overflow: hidden;
  position: relative;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.chicken-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), transparent 70%);
  z-index: 1;
}

.chicken-image-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to top,
      rgba(255, 255, 255, 1) 50%,
      rgba(255, 255, 255, 0.9) 70%,
      rgba(255, 255, 255, 0.7) 85%,
      rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.chicken-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: all 0.6s ease;
  transform-origin: center;
  filter: saturate(1.1) contrast(1.05);
}

.chicken-image:hover {
  transform: scale(1.03);
}

#reviews {
  background-color: var(--gray-100);
  padding: 6rem 2rem;
}

#reviews .review-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

#reviews .review {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  flex-basis: 300px;
  flex-grow: 1;
  max-width: 400px;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-top: 0.5rem;
  box-shadow: var(--shadow-soft);
}

.review-content {
  flex-grow: 1;
  text-align: left;
}

.review-text {
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.review .stars {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #FFD700;
}

.review .customer {
  font-weight: 700;
  color: var(--primary);
}

.review-attribution {
  text-align: center;
  margin-top: 1.5rem;
}

.review-loading {
  text-align: center;
  padding: 2rem;
  color: var(--text-light);
}

.loading-spinner {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: var(--primary);
  animation: spin 1s ease-in-out infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#cta {
  background-color: var(--primary);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}

#cta .cta-content {
  max-width: 800px;
  margin: 0 auto;
}

#cta h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

#cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

@media (max-width: 992px) {
  #hero h1 {
    font-size: 3rem;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  #hero {
    padding: 6rem 1.5rem;
  }

  #hero h1 {
    font-size: 2.5rem;
  }
  


  .awards-container {
    margin: 2rem 0;
  }
  
  .awards-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .awards-section {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .category-label {
    font-size: 0.85rem;
  }
  
  .awards-row {
    gap: 0.6rem;
  }
  
  .award-item {
    padding: 0.3rem 0.8rem;
    min-width: 50px;
  }
  
  .award-year {
    font-size: 0.85rem;
  }

  .review-container {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  #hero {
    min-height: 70vh;
    padding: 5rem 1.5rem;
  }

  #hero h1 {
    font-size: 2.5rem;
  }

  #about,
  #menu-highlights,
  #reviews {
    padding: 4rem 1.5rem;
  }

  .menu-tags {
    gap: 0.5rem;
  }

  .menu-tag {
    padding: 0.3rem 0.7rem;
    font-size: 0.8rem;
  }
}

/* @media (min-width: 992px) {
  .awards-mini {
    flex-direction: row;
    gap: 1.5rem;
  }
} *//
* Catering Preview Section */
#catering-preview {
  background-color: var(--white);
  padding: 6rem 2rem;
}

.catering-preview-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.catering-text {
  flex: 1;
  text-align: left;
}

.catering-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--text-main);
}

.catering-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.catering-highlight {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  color: var(--text-main);
}

.catering-highlight i {
  color: var(--primary);
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.catering-image-preview {
  flex: 1;
  max-width: 400px;
}

.catering-preview-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.catering-preview-img:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  #catering-preview {
    padding: 4rem 1.5rem;
  }
  
  .catering-preview-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .catering-text {
    text-align: center;
  }
  
  .catering-highlights {
    align-items: center;
  }
  
  .catering-highlight {
    justify-content: center;
  }
}