/* ==================================================================== */
/*                     Meet Our Chef Section Styles                    */
/* ==================================================================== */

#meet-our-chef-section {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #fffbf5 0%, #fff9ed 100%);
  position: relative;
  overflow: hidden;
}

#meet-our-chef-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23EFA765' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

#meet-our-chef-section .cs-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.chef-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.chef-text-content {
  padding: 2rem 0;
}

.chef-text-content .cs-topper {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-color-dark);
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
  padding-left: 2.5rem;
}

.chef-text-content .cs-topper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2px;
  background-color: var(--primary-color-dark);
}

.chef-text-content .cs-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
}

.chef-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.chef-highlights {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(239, 167, 101, 0.2);
}

.highlight-item i {
  font-size: 1.8rem;
  color: var(--primary-color-dark);
}

.highlight-item span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.chef-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chef-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  max-width: 400px;
  max-height: 400px;
  width: 100%;
}

.chef-image:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.chef-image img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.award-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #fffbf5 0%, #fff9ed 100%);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
}

.award-badge i {
  font-size: 1.5rem;
  color: #ffba43;
}

.award-badge span {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgb(56, 56, 56);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .chef-content-wrapper {
    gap: 3rem;
  }
  
  .chef-highlights {
    gap: 1.5rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  #meet-our-chef-section {
    padding: 4rem 1rem;
  }

  .chef-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .chef-text-content {
    order: 2;
    padding: 0;
  }

  .chef-image-wrapper {
    order: 1;
  }

  .chef-highlights {
    flex-direction: column;
    gap: 1rem;
  }

  .highlight-item {
    width: 100%;
    justify-content: center;
  }

  .chef-text-content .cs-title {
    font-size: 1.8rem;
  }

  .award-badge {
    top: 15px;
    right: 15px;
    padding: 0.6rem 1.2rem;
  }

  .award-badge i {
    font-size: 1.2rem;
  }

  .award-badge span {
    font-size: 0.75rem;
  }
  
  .chef-image {
    max-width: 350px;
    max-height: 350px;
  }
  
  .chef-image img {
    max-height: 350px;
  }
}

@media (max-width: 480px) {
  .chef-text-content .cs-topper {
    padding-left: 2rem;
    font-size: 0.8rem;
  }

  .chef-text-content .cs-topper::before {
    width: 1.5rem;
  }

  .chef-description {
    font-size: 1rem;
  }

  .highlight-item {
    padding: 0.75rem 1rem;
  }

  .highlight-item i {
    font-size: 1.5rem;
  }

  .highlight-item span {
    font-size: 0.9rem;
  }
  
  .chef-image {
   max-width: 300px;
    max-height: 300px;
  }
  
  .chef-image img {
    max-height: 300px;
  }
}
