/* Chefs */
.chefs .main-chef-section {
  margin-bottom: 4rem;
  padding: 3rem 0;
  position: relative;
}

.chefs .main-chef-section:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 30%)
  );
  clip-path: polygon(0 0, 100% 0, 100% 70%, 30% 100%, 0 100%);
  opacity: 0.1;
}

.chefs .main-chef-section .chef-content {
  padding-right: 2rem;
}

@media (max-width: 991px) {
  .chefs .main-chef-section .chef-content {
    padding-right: 0;
    margin-bottom: 3rem;
    text-align: center;
  }
}

.chefs .main-chef-section .chef-content .chef-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 20%)
  );
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.chefs .main-chef-section .chef-content .chef-badge i {
  font-size: 1.1rem;
}

.chefs .main-chef-section .chef-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .chefs .main-chef-section .chef-content h2 {
    font-size: 2.2rem;
  }
}

.chefs .main-chef-section .chef-content .experience-years {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .chefs .main-chef-section .chef-content .experience-years {
    justify-content: center;
  }
}

.chefs .main-chef-section .chef-content .experience-years .number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
}

.chefs .main-chef-section .chef-content .experience-years .text {
  font-size: 1.1rem;
  color: var(--heading-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.chefs .main-chef-section .chef-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.chefs .main-chef-section .chef-content .achievements {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chefs .main-chef-section .chef-content .achievements .achievement-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--surface-color);
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
  transition: transform 0.3s;
}

.chefs .main-chef-section .chef-content .achievements .achievement-item:hover {
  transform: translateX(10px);
}

.chefs .main-chef-section .chef-content .achievements .achievement-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.chefs .main-chef-section .chef-content .achievements .achievement-item span {
  font-weight: 600;
  color: var(--heading-color);
}

.chefs .main-chef-section .chef-image-container {
  position: relative;
}

.chefs .main-chef-section .chef-image-container .image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.chefs .main-chef-section .chef-image-container .image-frame:before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid var(--accent-color);
  border-radius: 20px;
  z-index: -1;
}

.chefs .main-chef-section .chef-image-container .image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s;
}

.chefs .main-chef-section .chef-image-container .image-frame:hover img {
  transform: scale(1.05);
}

.chefs
  .main-chef-section
  .chef-image-container
  .image-frame
  .signature-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--surface-color);
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.chefs
  .main-chef-section
  .chef-image-container
  .image-frame
  .signature-overlay
  img {
  max-width: 120px;
  height: auto;
}

.chefs .team-grid .team-member {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.chefs .team-grid .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.chefs .team-grid .team-member:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.chefs .team-grid .team-member:hover .member-photo img {
  transform: scale(1.1);
}

.chefs .team-grid .team-member .member-photo {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.chefs .team-grid .team-member .member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.chefs .team-grid .team-member .member-photo .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(54, 144, 231, 0.9),
    rgba(54, 144, 231, 0.7)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.chefs .team-grid .team-member .member-photo .overlay .social-icons {
  display: flex;
  gap: 1rem;
}

.chefs .team-grid .team-member .member-photo .overlay .social-icons a {
  width: 45px;
  height: 45px;
  background-color: var(--surface-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.chefs .team-grid .team-member .member-photo .overlay .social-icons a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.chefs .team-grid .team-member .member-photo .overlay .social-icons a i {
  font-size: 1.1rem;
}

.chefs .team-grid .team-member .member-info {
  padding: 2rem 1.5rem;
  text-align: center;
}

.chefs .team-grid .team-member .member-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.chefs .team-grid .team-member .member-info .position {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 1rem;
}

.chefs .team-grid .team-member .member-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}
