/* Hero positioned card */

.paralax-chef-card {
  display: flex;
  gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 20px;
  max-width: 900px;
  height: auto;
  margin: -80px auto 0 auto;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
  position: relative;
}

.paralax-chef-highlight {
  color: #eec90e;
  font-weight: 600;
}

.paralax-chef-img img {
  width: 200px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.paralax-chef-info {
  flex: 1;
  color: #333;
}

.paralax-chef-info h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.paralax-chef-info .chef-role {
  font-size: 1rem;
  color: #999;
}

.paralax-chef-info p {
  margin-bottom: 10px;
  line-height: 1.5;
}

@media (max-width: 1000px) {
  .paralax-chef-card {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .paralax-chef-card {
    flex-direction: column;
    text-align: center;
    width: 90%;
  }
  .paralax-chef-img img {
    width: 150px;
  }
}

/* Our chef */

.about-chef-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px;
  gap: 40px;
  flex-wrap: wrap;
}

.about-chef-content {
  flex: 1;
}

.about-chef-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: "Cinzel Decorative", cursive;
  color: var(--secondary-color);
}

.about-chef-content h3 {
  margin-top: 20px;
}

.about-chef-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  margin-top: 20px;
}

.about-chef-image {
  width: 300px;
  height: 400px;
  z-index: 1;
}

.about-chef-image img {
  height: 500px;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary-color);
  position: relative;
}

@media (max-width: 480px) {
  .about-chef-image {
    width: 280px;
    margin-left: -10px;
  }
}

/* Meet our chef */

.chefs-section {
  text-align: center;
  padding: 50px 20px;
  margin-top: 100px;
}

.chefs-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-family: "Cinzel Decorative", cursive;
  color: white;
}

.chefs-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.chef-card {
  position: relative;
  width: 300px;
  height: 400px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.chef-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.chef-card:hover img {
  transform: scale(1.1);
}

.chef-overlay {
  position: absolute;
  inset: 0;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.chef-card:hover .chef-overlay {
  transform: translateX(0);
}

.chef-overlay h3 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  font-family: "Cinzel Decorative", cursive;
}

.chef-overlay p {
  font-weight: bold;
  margin-bottom: 10px;
  font-family: Arial, Helvetica, sans-serif;
}

.chef-overlay span {
  font-size: 0.95rem;
  line-height: 1.4;
  font-family: Arial, Helvetica, sans-serif;
}

.chefs-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.chefs-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(253, 224, 86, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(253, 224, 86, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(253, 224, 86, 0.03) 0%,
      transparent 40%
    );
  animation: drift-bg 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes drift-bg {
  0%,
  100% {
    transform: translateX(0px) translateY(0px);
  }
  33% {
    transform: translateX(20px) translateY(-10px);
  }
  66% {
    transform: translateX(-15px) translateY(15px);
  }
}

.chefs-section h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -1px;
}

@keyframes chef-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

.chefs-section h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
  border-radius: 2px;
}

.chefs-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.chef-card {
  position: relative;
  height: 450px;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(
    135deg,
    rgba(253, 224, 86, 0.1),
    rgba(253, 224, 86, 0.05)
  );
  border: 2px solid rgba(253, 224, 86, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(253, 224, 86, 0.1);
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease forwards;
}

.chef-card:nth-child(1) {
  animation-delay: 0.2s;
}
.chef-card:nth-child(2) {
  animation-delay: 0.4s;
}
.chef-card:nth-child(3) {
  animation-delay: 0.6s;
}

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

.chef-card:hover {
  transform: translateY(-20px) scale(1.03);
  border-color: var(--secondary-color);
  box-shadow: 0 40px 80px rgba(253, 224, 86, 0.2),
    0 0 0 1px rgba(253, 224, 86, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.chef-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.chef-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.7) contrast(1.1);
}

/* Chef Overlay - Creative Animation */
.chef-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    transparent 100%
  );
  color: var(--secondary-color);
  padding: 30px 25px;
  transform: translateY(100%);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
  backdrop-filter: blur(10px);
}

.chef-card:hover .chef-overlay {
  transform: translateY(0);
}

.chef-overlay::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 25px;
  right: 25px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color), #f9d71c);
  border-radius: 15px 15px 0 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease 0.2s;
}

.chef-card:hover .chef-overlay::before {
  opacity: 1;
  transform: translateY(0);
}

.chef-overlay h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--secondary-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}

.chef-card:hover .chef-overlay h3 {
  transform: translateY(0);
  opacity: 1;
}

.chef-overlay p {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s ease 0.2s;
}

.chef-card:hover .chef-overlay p {
  transform: translateY(0);
  opacity: 1;
}

.chef-overlay span {
  font-size: 1rem;
  line-height: 1.5;
  display: block;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s ease 0.3s;
}

.chef-card:hover .chef-overlay span {
  transform: translateY(0);
  opacity: 1;
}

.chef-card::before {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  z-index: 3;
  opacity: 0;
  transform: scale(0) rotate(0deg);
  transition: all 0.5s ease;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(253, 224, 86, 0.3);
}

.chef-card:hover::before {
  opacity: 1;
  transform: scale(1) rotate(360deg);
}

.chef-card::after {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 1.8rem;
  z-index: 3;
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s ease 0.2s;
  background: rgba(253, 224, 86, 0.9);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(253, 224, 86, 0.3);
}

.chef-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.chef-card {
  position: relative;
}

.chef-card::before {
  content: "";
  position: absolute;
  inset: -3px;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(253, 224, 86, 0.4),
    transparent,
    rgba(253, 224, 86, 0.4),
    transparent
  );
  border-radius: 28px;
  animation: rotate-border 6s linear infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.chef-card:hover::before {
  opacity: 1;
}

@keyframes rotate-border {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.chef-overlay::after {
  position: absolute;
  top: -25px;
  right: 25px;
  font-size: 1.5rem;
  /* background: rgba(253, 224, 86, 0.9); */
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0) rotate(0deg);
  transition: all 0.5s ease 0.4s;
  box-shadow: 0 10px 20px rgba(253, 224, 86, 0.3);
}

.chef-card:hover .chef-overlay::after {
  opacity: 1;
  transform: scale(1) rotate(360deg);
}

@media (max-width: 968px) {
  .chefs-container {
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 400px;
  }

  .chefs-section h2 {
    font-size: 3.2rem;
    margin-bottom: 60px;
  }

  .chef-card {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .chefs-section {
    padding: 80px 0;
  }

  .chefs-section h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
  }

  .chefs-container {
    gap: 50px;
    padding: 0 30px;
  }

  .chef-card {
    height: 450px;
  }

  .chef-overlay {
    padding: 25px 20px;
  }

  .chef-overlay h3 {
    font-size: 1.6rem;
  }

  .chef-overlay p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .chefs-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .chefs-container {
    gap: 40px;
    padding: 0 20px;
  }

  .chef-card {
    height: 400px;
    margin-left: 20px;
  }

  .chef-overlay {
    padding: 20px 18px;
  }

  .chef-overlay h3 {
    font-size: 1.5rem;
  }

  .chef-overlay p {
    font-size: 1rem;
  }

  .chef-overlay span {
    font-size: 0.9rem;
  }

  .chefs-section h2::before {
    font-size: 1.5rem;
    top: -30px;
  }
}

/* Chef Philosophy Section */
.chef-philosophy {
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.chef-philosophy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(253, 224, 86, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.philosophy-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.philosophy-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -1px;
  font-family: "Cinzel Decorative", cursive;
}

.philosophy-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
  border-radius: 2px;
}

.philosophy-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.philosophy-card {
  background: rgba(253, 224, 86, 0.05);
  border: 1px solid rgba(253, 224, 86, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.philosophy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(253, 224, 86, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.philosophy-card:hover::before {
  left: 100%;
}

.philosophy-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-color);
  box-shadow: 0 20px 40px rgba(253, 224, 86, 0.1);
}

.philosophy-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.philosophy-card h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-family: "Cinzel Decorative", cursive;
}

.philosophy-card p {
  color: var(--light-text-color);
  line-height: 1.6;
}

/* Interactive Chef Stats */
.chef-stats {
  background: var(--primary-color);
  padding: 10px 20px;
  position: relative;
}

.stats-container {
  max-width: 1000px;
  margin: 0 auto;
}

.stats-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -1px;
  font-family: "Cinzel Decorative", cursive;
}

.stats-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
  border-radius: 2px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(
    135deg,
    rgba(253, 224, 86, 0.1),
    rgba(253, 224, 86, 0.05)
  );
  border-radius: 15px;
  border: 1px solid rgba(253, 224, 86, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.stat-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(253, 224, 86, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--light-text-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Chef Awards Section */
.chef-awards {
  padding: 10px 20px;
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.awards-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.awards-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -1px;
  font-family: "Cinzel Decorative", cursive;
}

.awards-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
  border-radius: 2px;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.award-item {
  background: linear-gradient(
    135deg,
    rgba(253, 224, 86, 0.1),
    rgba(253, 224, 86, 0.05)
  );
  border: 1px solid rgba(253, 224, 86, 0.2);
  border-radius: 15px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  position: relative;
}

.award-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(253, 224, 86, 0.1);
  border-color: var(--secondary-color);
}

.award-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.award-title {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: bold;
  font-family: "Cinzel Decorative", cursive;
}

.award-year {
  font-size: 1rem;
  color: var(--light-text-color);
  margin-bottom: 15px;
}

.award-description {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.5;
}
