/* Hero section */

.carousel {
  height: 110vh;
  margin-top: -50px;
  margin-bottom: 30px;
  width: 100vw;
  overflow: hidden;
  position: relative;
  border-bottom-right-radius: 30%;
  border-bottom-left-radius: 30%;
}

.carousel .list .item {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0 0 0 0;
}
.carousel .list .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel .list .item .content {
  position: absolute;
  top: 20%;
  width: 1140px;
  max-width: 80%;
  left: 50%;
  transform: translateX(-50%);
  padding-right: 30%;
  box-sizing: border-box;
  color: #fff;
  text-shadow: 0 5px 10px #0004;
  z-index: 2;
}
.carousel .list .item .author {
  font-weight: bold;
  letter-spacing: 10px;
}
.carousel .list .item .title,
.carousel .list .item .topic {
  font-size: 4em;
  font-weight: bold;
  line-height: 1.3em;
  font-family: "Cinzel Decorative", cursive;
  margin-top: 20px;
}

.carousel .list .item .topic {
  color: var(--secondary-color);
}

.carousel .list .item .buttons {
  display: grid;
  grid-template-columns: repeat(2, 140px);
  grid-template-rows: 48px;
  gap: 12px;
  margin-top: 24px;
}

.carousel .list .item .buttons button {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #f8fafc;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.025em;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel .list .item .buttons button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s;
}

.carousel .list .item .buttons button:hover {
  background: linear-gradient(135deg, var(--secondary-color), #f59e0b);
  border: 1.5px solid #fbbf24;
  color: #1f2937;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.carousel .list .item .buttons button:hover::before {
  left: 100%;
}

.carousel .list .item .buttons button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.2);
}

.carousel .list .item .buttons button:nth-child(2) {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #e2e8f0;
  position: relative;
}

.carousel .list .item .buttons button:nth-child(2):hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid #ffffff;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.carousel .list .item .buttons button:nth-child(2):active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* Focus states for accessibility */
.carousel .list .item .buttons button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.4);
}

.carousel .list .item .buttons button:nth-child(2):focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

.thumbnail {
  position: absolute;
  bottom: 50px;
  left: 52%;
  width: max-content;
  z-index: 100;
  display: flex;
  gap: 20px;
}
.thumbnail .item {
  width: 150px;
  height: 220px;
  flex-shrink: 0;
  position: relative;
}
.thumbnail .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.thumbnail .item .content {
  color: #fff;
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.thumbnail .item .content .title {
  font-weight: 500;
}
.thumbnail .item .content .description {
  font-weight: 300;
}

.arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 100;
  transform: translateY(-50%);
}

.arrows button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  color: #fff;
  font-size: 20px;
  font-family: monospace;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.arrows button:hover {
  background-color: #fff;
  color: #000;
}

.arrows button:disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.carousel .list .item:nth-child(1) {
  z-index: 1;
}

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons {
  transform: translateY(50px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.5s 1s linear 1 forwards;
}
@keyframes showContent {
  to {
    transform: translateY(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
.carousel .list .item:nth-child(1) .content .title {
  animation-delay: 1.2s !important;
}
.carousel .list .item:nth-child(1) .content .topic {
  animation-delay: 1.4s !important;
}
.carousel .list .item:nth-child(1) .content .des {
  animation-delay: 1.6s !important;
}
.carousel .list .item:nth-child(1) .content .buttons {
  animation-delay: 1.8s !important;
}

.des {
  font-size: 18px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: white;
}

.hero-content p {
  font-size: 1.125em;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 600;
  line-height: 1.7;
  color: var(--secondary-color);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
  max-width: 65ch;
  margin-top: 20px;
}

.highlight {
  color: var(--secondary-color);
  font-style: italic;
  font-weight: 600;
  background: var(--secondary-color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(251, 191, 36, 0.15);
  position: relative;
}

.carousel.next .list .item:nth-child(1) img {
  width: 150px;
  height: 220px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  border-radius: 30px;
  animation: showImage 0.5s linear 1 forwards;
}
@keyframes showImage {
  to {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}

.carousel.next .thumbnail .item:nth-last-child(1) {
  overflow: hidden;
  animation: showThumbnail 0.5s linear 1 forwards;
}
.carousel.prev .list .item img {
  z-index: 100;
}
@keyframes showThumbnail {
  from {
    width: 0;
    opacity: 0;
  }
}
.carousel.next .thumbnail {
  animation: effectNext 0.5s linear 1 forwards;
}

@keyframes effectNext {
  from {
    transform: translateX(150px);
  }
}

.carousel .time {
  position: absolute;
  z-index: 1000;
  width: 0%;
  height: 3px;
  background-color: #f1683a;
  left: 0;
  top: 0;
}

.carousel.next .time,
.carousel.prev .time {
  animation: runningTime 3s linear 1 forwards;
}
@keyframes runningTime {
  from {
    width: 100%;
  }
  to {
    width: 0;
  }
}

.carousel.prev .list .item:nth-child(2) {
  z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img {
  animation: outFrame 0.5s linear 1 forwards;
  position: absolute;
  bottom: 0;
  left: 0;
}
@keyframes outFrame {
  to {
    width: 150px;
    height: 220px;
    bottom: 50px;
    left: 50%;
    border-radius: 20px;
  }
}

.carousel.prev .thumbnail .item:nth-child(1) {
  overflow: hidden;
  opacity: 0;
  animation: showThumbnail 0.5s linear 1 forwards;
}

.carousel.next .arrows button,
.carousel.prev .arrows button {
  pointer-events: auto; /* Changed from none to auto */
  opacity: 1; /* Changed from 0.6 to 1 */
}

.carousel.next .time,
.carousel.prev .time {
  animation: runningTime 0.5s linear 1 forwards; /* Reduced from 3s to 0.5s */
}

.carousel.next .list .item:nth-child(1) img {
  width: 150px;
  height: 220px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  border-radius: 30px;
  animation: showImage 0.5s ease-out 1 forwards; /* Made smoother */
}

.carousel.next .thumbnail .item:nth-last-child(1) {
  overflow: hidden;
  animation: showThumbnail 0.5s ease-out 1 forwards; /* Made smoother */
}

.carousel.next .thumbnail {
  animation: effectNext 0.5s ease-out 1 forwards; /* Made smoother */
}

.carousel.prev .list .item:nth-child(2) img {
  animation: outFrame 0.5s ease-out 1 forwards; /* Made smoother */
  position: absolute;
  bottom: 0;
  left: 0;
}

.carousel.prev .thumbnail .item:nth-child(1) {
  overflow: hidden;
  opacity: 0;
  animation: showThumbnail 0.5s ease-out 1 forwards; /* Made smoother */
}

.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons {
  animation: contentOut 0.5s ease-out 1 forwards !important; /* Faster and smoother */
}

.carousel .list .item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

@keyframes contentOut {
  to {
    transform: translateY(-150px);
    filter: blur(20px);
    opacity: 0;
  }
}

@media (max-width: 1400px) {
  .carousel {
    height: 100vh;
  }

  .carousel .list .item .title,
  .carousel .list .item .topic {
    font-size: 3.6em;
  }

  .carousel .list .item .content {
    padding-right: 20%;
  }

  .thumbnail .item {
    width: 120px;
    height: 180px;
  }
}

@media (max-width: 1300px) {
  .carousel {
    height: 100vh;
  }

  .carousel .list .item .title,
  .carousel .list .item .topic {
    font-size: 3.2em;
  }

  .carousel .list .item .content {
    padding-right: 20%;
  }

  .thumbnail .item {
    width: 120px;
    height: 180px;
  }
}

@media (max-width: 1200px) {
  .carousel {
    height: 100vh;
  }

  .carousel .list .item .title,
  .carousel .list .item .topic {
    font-size: 2.5em;
  }

  .carousel .list .item .content {
    padding-right: 20%;
  }

  .thumbnail .item {
    width: 120px;
    height: 180px;
  }
}

@media (max-width: 1024px) {
  .carousel {
    height: 90vh;
  }

  .carousel .list .item .title,
  .carousel .list .item .topic {
    font-size: 2.5em;
  }

  .carousel .list .item .title {
    margin-top: 40px;
  }

  .carousel .list .item .content {
    padding-right: 10%;
  }

  .carousel .list .item .des {
    font-size: 14px;
  }

  .carousel .list .item .buttons {
    grid-template-columns: repeat(2, 120px);
    grid-template-rows: 35px;
  }

  .thumbnail {
    bottom: 30px;
    gap: 15px;
  }

  .thumbnail .item {
    width: 100px;
    height: 150px;
  }
}

@media (max-width: 800px) {
  .carousel {
    height: 85vh;
    border-bottom-right-radius: 20%;
    border-bottom-left-radius: 20%;
  }

  .carousel .list .item .title,
  .carousel .list .item .topic {
    font-size: 1.8em;
    line-height: 1.2em;
  }

  .carousel .list .item .title {
    margin-top: 70px;
  }

  .carousel .list .item .topic {
    margin-top: -1px;
  }

  .carousel .list .item .des {
    margin-top: 10px;
  }

  .carousel .list .item .buttons {
    grid-template-columns: 1fr;
    grid-template-rows: 38px;
    gap: 10px;
    width: 150px;
  }

  .carousel .list .item .buttons button {
    font-size: 13px;
  }

  .thumbnail {
    bottom: 30px;
    gap: 5px;
  }

  .thumbnail .item {
    width: 100px;
    height: 120px;
  }

  .arrows button {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .thumbnail {
    display: none;
  }
}

@media (max-width: 480px) {
  .carousel {
    height: 80vh;
    margin-top: -30px;
  }

  .carousel .list .item .title,
  .carousel .list .item .topic {
    font-size: 1.5em;
  }

  .carousel .list .item .title {
    margin-top: 20px;
  }

  .carousel .list .item .topic {
    margin-top: -1px;
  }

  .carousel .list .item .des {
    font-size: 12px;
    margin-top: 10px;
  }

  .carousel .list .item .buttons {
    width: 120px;
    grid-template-rows: 35px;
  }

  .carousel .list .item .buttons button {
    font-size: 12px;
    padding: 5px;
  }

  .arrows {
    padding: 0 10px;
  }

  .arrows button {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/* About  */

.about-section {
  overflow: hidden;
  margin-top: 250px;
}

.about-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(253, 224, 86, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(253, 224, 86, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(253, 224, 86, 0.03) 0%,
      transparent 50%
    );
  animation: rotate-bg 20s linear infinite;
  z-index: 1;
}

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

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 20px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.left-section {
  position: relative;
  height: 600px;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.main-image {
  position: absolute;
  width: 400px;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  top: 50px;
  left: 0;
  z-index: 3;
  transform: rotateY(-10deg) rotateX(5deg);
  transition: all 0.5s ease;
  border: 4px solid rgba(253, 224, 86, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(253, 224, 86, 0.1);
}

.main-image:hover {
  transform: rotateY(-15deg) rotateX(8deg) translateZ(20px);
  border-color: rgba(253, 224, 86, 0.6);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(253, 224, 86, 0.2);
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.main-image:hover img {
  transform: scale(1.1);
}

.chef-avatar {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  top: 0;
  right: 50px;
  z-index: 5;
  border: 6px solid var(--secondary-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(253, 224, 86, 0.2),
    inset 0 0 0 2px rgba(255, 255, 255, 0.1);
  animation: float-chef 4s ease-in-out infinite;
  background: linear-gradient(45deg, var(--secondary-color), #f9d71c);
  padding: 4px;
}

@keyframes float-chef {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(2deg);
  }
  50% {
    transform: translateY(-25px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-2deg);
  }
}

.chef-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.experience-badge {
  position: absolute;
  bottom: 50px;
  right: 0;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f9d71c 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: bold;
  box-shadow: 0 20px 40px rgba(253, 224, 86, 0.3),
    inset 0 -5px 10px rgba(0, 0, 0, 0.2);
  animation: pulse-badge 3s ease-in-out infinite;
  z-index: 4;
  position: relative;
}

.experience-badge::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    var(--secondary-color),
    transparent,
    var(--secondary-color)
  );
  animation: rotate-border 4s linear infinite;
  z-index: -1;
}

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

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

.experience-badge .years {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

.experience-badge .text {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.right-section {
  position: relative;
  z-index: 3;
  padding-left: 40px;
}

.section-label {
  display: inline-block;
  background: linear-gradient(90deg, var(--secondary-color), #f9d71c);
  color: #000;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.section-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: label-shine 3s ease-in-out infinite;
}

@keyframes label-shine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.main-heading {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--secondary-color);
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: "Cinzel Decorative", cursive;
}

.highlight {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    #f9d71c,
    var(--secondary-color)
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-text 3s ease-in-out infinite;
  position: relative;
}

@keyframes gradient-text {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(253, 224, 86, 0.9);
  margin-bottom: 40px;
  position: relative;
  padding-left: 30px;
}

.description::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--secondary-color),
    rgba(253, 224, 86, 0.3)
  );
  border-radius: 2px;
}

.features-list {
  list-style: none;
  margin-bottom: 50px;
}

.features-list li {
  position: relative;
  padding: 15px 0 15px 60px;
  font-size: 1.1rem;
  color: rgba(253, 224, 86, 0.9);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(253, 224, 86, 0.1);
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li::before {
  content: "✨";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--secondary-color), #f9d71c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.features-list li:hover {
  color: var(--secondary-color);
  transform: translateX(10px);
}

.features-list li:hover::before {
  transform: translateY(-50%) scale(1.2) rotate(360deg);
  box-shadow: 0 10px 20px rgba(253, 224, 86, 0.3);
}

.buttons-container {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
}

.btn {
  padding: 16px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color), #f9d71c);
  color: #000;
  border: none;
  box-shadow: 0 10px 30px rgba(253, 224, 86, 0.3);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(253, 224, 86, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid rgba(253, 224, 86, 0.5);
}

.btn-secondary:hover {
  background: rgba(253, 224, 86, 0.1);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.animated-dancer {
  margin-left: 30px;
  width: 80px;
  height: 80px;
  position: relative;
}

.animated-dancer img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  animation: dance-chef 2s ease-in-out infinite;
}

@keyframes dance-chef {
  0%,
  100% {
    transform: rotate(-10deg) scale(1);
  }
  25% {
    transform: rotate(10deg) scale(1.1);
  }
  50% {
    transform: rotate(-5deg) scale(1.05);
  }
  75% {
    transform: rotate(5deg) scale(1.1);
  }
}

@media (max-width: 1200px) {
  .about-section {
    gap: 60px;
    padding: 100px 20px;
  }

  .main-heading {
    font-size: 2.8rem;
  }

  .chef-avatar {
    right: -10px;
    top: -100px;
  }

  .btn-primary,
  .btn-secondary {
    width: 160px;
  }
}

@media (max-width: 1024px) {
  .main-image {
    width: 340px;
    height: 500px;
  }
}

@media (max-width: 900px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 80px;
    text-align: center;
  }

  .left-section {
    height: 400px;
    margin: 0 auto;
  }

  .main-image {
    width: 300px;
    height: 400px;
    left: 50%;
    transform: translateX(-50%);
  }

  .chef-avatar {
    width: 120px;
    height: 120px;
    right: -20px;
    top: 100px;
  }

  .experience-badge {
    width: 140px;
    height: 140px;
    bottom: 20px;
    right: 20px;
  }

  .right-section {
    padding-left: 0;
  }

  .main-heading {
    font-size: 2.2rem;
  }

  .buttons-container {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .main-image {
    width: 280px;
    height: 350px;
  }

  .main-heading {
    font-size: 1.8rem;
  }

  .description {
    font-size: 1rem;
    padding-left: 20px;
  }

  .features-list li {
    padding-left: 50px;
    font-size: 1rem;
  }

  .animated-dancer {
    display: none;
  }
}

/* Feature */

.feature {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  margin-top: 40px;
}

.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.feature::after {
  content: "✦ ✧ ✦ ✧ ✦";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(253, 224, 86, 0.2);
  font-size: 1.5rem;
  letter-spacing: 20px;
  animation: sparkle-float 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes sparkle-float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0px);
    opacity: 0.2;
  }
  25% {
    transform: translateX(-50%) translateY(-10px);
    opacity: 0.4;
  }
  50% {
    transform: translateX(-50%) translateY(-20px);
    opacity: 0.6;
  }
  75% {
    transform: translateX(-50%) translateY(-10px);
    opacity: 0.4;
  }
}

.feature-section-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;
}

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

.feature-section-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(253, 224, 86, 0.5),
    transparent
  );
  border-radius: 1px;
}

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

.feature-item {
  text-align: center;
  position: relative;
  padding: 40px 20px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 20px;
  overflow: visible;
}

.feature-item:nth-child(1)::after,
.feature-item:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 60px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(253, 224, 86, 0.3),
    rgba(253, 224, 86, 0.1),
    transparent
  );
  transform: translateY(-50%);
  animation: line-pulse 3s ease-in-out infinite;
}

.feature-item:nth-child(2)::after {
  animation-delay: 1s;
}

@keyframes line-pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(-50%) scaleX(1);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-50%) scaleX(1.2);
  }
}

.feature-item:hover {
  transform: translateY(-15px) scale(1.02);
}

.feature-item:hover::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 30px;
  border: 2px solid rgba(253, 224, 86, 0.2);
  background: linear-gradient(
    135deg,
    rgba(253, 224, 86, 0.02),
    rgba(253, 224, 86, 0.05)
  );
  z-index: -1;
  animation: glow-border 2s ease-in-out infinite;
}

@keyframes glow-border {
  0%,
  100% {
    border-color: rgba(253, 224, 86, 0.2);
    box-shadow: 0 0 20px rgba(253, 224, 86, 0.1);
  }
  50% {
    border-color: rgba(253, 224, 86, 0.4);
    box-shadow: 0 0 40px rgba(253, 224, 86, 0.2);
  }
}

.feature-icon-circle {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color), #f9d71c);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(253, 224, 86, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  overflow: hidden;
}

.feature-icon-circle::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #fde056,
    #f9d71c,
    #fde056,
    #f9d71c,
    #fde056
  );
  animation: rotate-gradient 4s linear infinite;
  z-index: -1;
}

.feature-icon-circle::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.feature-item:hover .feature-icon-circle {
  transform: scale(1.1) rotateY(10deg);
  box-shadow: 0 30px 60px rgba(253, 224, 86, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.feature-item:hover .feature-icon-circle::after {
  opacity: 1;
}

.feature-icon-circle i {
  font-size: 2.2rem;
  color: #000;
  z-index: 2;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-item:hover .feature-icon-circle i {
  transform: scale(1.1) rotate(10deg);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.feature-item h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 15px;
  position: relative;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  font-family: "Cinzel Decorative", cursive;
}

.feature-item:hover h3 {
  color: #f9d71c;
  transform: translateY(-5px);
}

.feature-item h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
  transition: transform 0.3s ease;
}

.feature-item:hover h3::after {
  transform: translateX(-50%) scaleX(1);
}

.feature-item p {
  font-size: 1rem;
  color: rgba(253, 224, 86, 0.8);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
  transition: all 0.3s ease;
  position: relative;
}

.feature-item:hover p {
  color: rgba(253, 224, 86, 0.95);
  transform: translateY(-3px);
}

.feature-item {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease forwards;
}

.feature-item:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
  animation-delay: 0.3s;
}

.feature-item:nth-child(3) {
  animation-delay: 0.5s;
}

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

.feature-item:nth-child(1)::before {
  content: "01";
}
.feature-item:nth-child(2)::before {
  content: "02";
}
.feature-item:nth-child(3)::before {
  content: "03";
}

.feature-item::before {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(253, 224, 86, 0.3);
  background: rgba(253, 224, 86, 0.1);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(253, 224, 86, 0.2);
  transition: all 0.3s ease;
  z-index: 1;
}

.feature-item:hover::before {
  color: var(--secondary-color);
  background: rgba(253, 224, 86, 0.2);
  border-color: rgba(253, 224, 86, 0.4);
  transform: scale(1.1);
}

@media (max-width: 968px) {
  .features-container {
    grid-template-columns: 1fr;
    gap: 80px;
    max-width: 500px;
  }

  .section-title {
    font-size: 3rem;
    margin-bottom: 60px;
  }

  .feature-item:nth-child(1)::after,
  .feature-item:nth-child(2)::after {
    display: none;
  }

  .feature-item::before {
    top: 15px;
    right: 20px;
  }
}

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

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }

  .features-container {
    gap: 60px;
    padding: 0 30px;
  }

  .feature-icon-circle {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
  }

  .feature-icon-circle i {
    font-size: 1.8rem;
  }

  .feature-item h3 {
    font-size: 1.6rem;
  }

  .feature-item p {
    font-size: 1rem;
  }
}

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

  .features-container {
    gap: 50px;
    padding: 0 20px;
  }

  .feature-item {
    padding: 30px 15px;
  }

  .feature::after {
    font-size: 1.2rem;
    letter-spacing: 15px;
  }
}

.menu-section {
  position: relative;
  padding: 20px 0;
  overflow: hidden;
}

.menu-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse at 20% 30%,
      rgba(253, 224, 86, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 70%,
      rgba(253, 224, 86, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 50% 50%,
      rgba(253, 224, 86, 0.04) 0%,
      transparent 60%
    );
  animation: float-bg 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes float-bg {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.1) rotate(2deg);
    opacity: 0.8;
  }
}

/* Top Notch */

.menu-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 2;
}

.menu-header .section-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 25px;
  position: relative;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -1px;
  font-family: "Cinzel Decorative", cursive;
}

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

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

.section-description {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(253, 224, 86, 0.85);
  position: relative;
  padding: 0 20px;
}

.section-description::before,
.section-description::after {
  content: '"';
  position: absolute;
  font-size: 4rem;
  color: rgba(253, 224, 86, 0.3);
  font-family: serif;
  line-height: 1;
}

.section-description::before {
  top: -10px;
  left: -10px;
}

.section-description::after {
  bottom: -30px;
  right: -10px;
  transform: rotate(180deg);
}

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

.menu-item {
  position: relative;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease forwards;
}

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

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

.menu-item:hover {
  transform: translateY(-20px) scale(1.03);
}

.menu-box {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 25px;
  background: linear-gradient(
    135deg,
    rgba(253, 224, 86, 0.1),
    rgba(253, 224, 86, 0.05)
  );
  border: 3px solid rgba(253, 224, 86, 0.2);
  transition: all 0.5s ease;
  transform-style: preserve-3d;
}

.menu-item:hover .menu-box {
  border-color: rgba(253, 224, 86, 0.6);
  box-shadow: 0 25px 50px rgba(253, 224, 86, 0.2),
    0 0 0 1px rgba(253, 224, 86, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: rotateX(5deg) rotateY(5deg);
}

.pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
  filter: hue-rotate(40deg) sepia(100%) saturate(150%);
  transition: all 0.5s ease;
}

.menu-item:hover .pattern {
  opacity: 0.6;
  transform: scale(1.1) rotate(5deg);
  filter: hue-rotate(40deg) sepia(100%) saturate(200%) brightness(1.2);
}

.image-wrapper {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 2;
  background: linear-gradient(45deg, var(--secondary-color), #f9d71c);
  padding: 3px;
  transition: all 0.5s ease;
}

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

.menu-item:hover .image-wrapper::before {
  opacity: 1;
}

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

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 17px;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.menu-item:hover .image-wrapper img {
  transform: scale(1.1);
  filter: brightness(1.1) contrast(1.1);
}

.image-wrapper::after {
  content: "View Details";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(0, 0, 0, 0.8);
  color: var(--secondary-color);
  padding: 15px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 3;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(253, 224, 86, 0.3);
}

.menu-item:hover .image-wrapper::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.item-title {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: "Cinzel Decorative", cursive;
  color: var(--secondary-color);
  margin-bottom: 15px;
  position: relative;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.menu-item:hover .item-title {
  color: #f9d71c;
  transform: translateY(-5px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.item-title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
  transition: transform 0.3s ease;
}

.menu-item:hover .item-title::before {
  transform: translateX(-50%) scaleX(1);
}

.view-menu {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: var(--secondary-color);
  text-decoration: none;
  border: 2px solid rgba(253, 224, 86, 0.4);
  border-radius: 50px;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}

.view-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--secondary-color), #f9d71c);
  transition: left 0.4s ease;
  z-index: -1;
}

.menu-item:hover .view-menu {
  color: #000;
  border-color: var(--secondary-color);
  transform: translateY(-3px);

  padding-right: 45px;
}

.menu-item:hover .view-menu::before {
  left: 0;
}

.menu-item:hover .view-menu::after {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

.menu-item:hover::before {
  opacity: 1;
  transform: scale(1) rotate(360deg);
  animation: sparkle-bounce 1s ease-in-out infinite;
}

@keyframes sparkle-bounce {
  0%,
  100% {
    transform: scale(1) rotate(360deg) translateY(0px);
  }
  50% {
    transform: scale(1.2) rotate(360deg) translateY(-5px);
  }
}

.menu-item:nth-child(1):hover::after {
  content: "Fresh Start";
}

.menu-item:nth-child(2):hover::after {
  content: "Midday Delight";
}

.menu-item:nth-child(3):hover::after {
  content: "Evening Feast";
}

.menu-item::after {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: var(--secondary-color);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(253, 224, 86, 0.3);
}

.menu-item:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-10px);
}

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

  .menu-header .section-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
  }

  .section-description {
    font-size: 1.2rem;
    padding: 0 10px;
  }
}

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

  .menu-header {
    margin-bottom: 60px;
  }

  .menu-header .section-title {
    font-size: 2.8rem;
  }

  .menu-box {
    height: 250px;
  }

  .item-title {
    font-size: 1.8rem;
  }

  .section-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .topnotch-section {
    width: 90%;
    margin: 0 auto;
  }

  .menu-header .section-title {
    font-size: 2.2rem;
  }

  .menu-items {
    gap: 40px;
    padding: 0 15px;
  }

  .menu-box {
    height: 220px;
  }

  .item-title {
    font-size: 1.6rem;
  }

  .section-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .section-description::before,
  .section-description::after {
    font-size: 3rem;
  }
}

/* Menu card */

.menucard-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 100px;
  padding: 3rem 2rem;
  position: relative;
  background-color: #111;
}

.menucard-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.menucard-header::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(253, 224, 86, 0.9) 50%,
    transparent 100%
  );
  border-radius: 2px;
}

.menucard-header p {
  font-size: 1rem;
  color: rgba(253, 224, 86, 0.9);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  position: relative;
}

.menucard-header p::before,
.menucard-header p::after {
  content: "◆";
  color: var(--secondary-color);
  font-size: 0.8rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.menucard-header p::before {
  left: -40px;
}

.menucard-header p::after {
  right: -40px;
}

.menucard-title {
  font-family: "Cinzel Decorative", cursive;
  font-size: 3rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 0 20px rgba(253, 224, 86, 0.3), 0 4px 20px rgba(0, 0, 0, 0.8);
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(253, 224, 86, 0.9) 50%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.menucard-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(253, 224, 86, 0.9) 50%,
    transparent 100%
  );
  border-radius: 1px;
}

.menucard-section {
  margin-bottom: 3rem;
  position: relative;
}

.menucard-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100px;
  width: 200px;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(253, 224, 86, 0.02) 50%,
    transparent 100%
  );
  z-index: -1;
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 1.5rem 0;
}

.section-content.reverse {
  direction: rtl;
}

.section-content.reverse > * {
  direction: ltr;
}

.text-content {
  padding: 1rem;
}

.section-title {
  font-family: "Cinzel Decorative", cursive;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  position: relative;
  text-shadow: 0 2px 10px rgba(253, 224, 86, 0.3);
}

.section-title::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(253, 224, 86, 0.9) 50%,
    transparent 100%
  );
  border-radius: 2px;
}

.menucard-items {
  list-style: none;
  space-y: 2rem;
}

.menucard-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.menucard-item:hover {
  background: linear-gradient(
    90deg,
    rgba(253, 224, 86, 0.05) 0%,
    transparent 100%
  );
  padding-left: 1rem;
  border-bottom-color: rgba(253, 224, 86, 0.3);
}

.menucard-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: rgba(253, 224, 86, 0.9);
  transition: width 0.3s ease;
}

.menucard-item:hover::before {
  width: 4px;
}

.item-info {
  flex: 1;
  padding-right: 2rem;
}

.item-name {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  position: relative;
}

.item-name.special {
  color: rgba(253, 224, 86, 0.9);
  position: relative;
}

.item-name.special::after {
  content: "★";
  color: rgba(253, 224, 86, 0.9);
  font-size: 1rem;
  margin-left: 0.5rem;
  text-shadow: 0 0 10px rgba(253, 224, 86, 0.5);
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.item-description {
  color: #b0b0b0;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 300;
}

.item-price {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-shadow: 0 2px 10px rgba(253, 224, 86, 0.3);
  white-space: nowrap;
}

.image-content {
  position: relative;
}

.menucard-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 2px rgba(253, 224, 86, 0.2);
  transition: all 0.4s ease;
}

.menucard-image:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 0 2px rgba(253, 224, 86, 0.4),
    0 0 40px rgba(253, 224, 86, 0.1);
}

.menucard-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(253, 224, 86, 0.1) 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
  transition: opacity 0.3s ease;
}

.menucard-image:hover::before {
  opacity: 0.7;
  animation: shine 1.2s ease forwards;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }
  100% {
    transform: translateX(100%) rotate(25deg);
  }
}

.menucard-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.9) saturate(1.1);
}

.menucard-image:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.2);
}

.bottom-corner {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle at bottom right,
    rgba(253, 224, 86, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.menucard-section:nth-child(even) .text-content::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(253, 224, 86, 0.6) 100%
  );
}

@media (max-width: 1024px) {
  .section-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section-content.reverse {
    direction: ltr;
  }

  .menucard-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .menucard-image img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .menucard-container {
    padding: 2rem 1.5rem;
  }

  .menucard-header {
    margin-bottom: 3rem;
  }

  .menucard-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .text-content {
    padding: 1rem;
  }

  .menucard-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 0;
  }

  .item-info {
    padding-right: 0;
    margin-bottom: 1rem;
  }

  .item-price {
    font-size: 1.4rem;
  }

  .menucard-image img {
    height: 280px;
  }

  .menucard-header p::before,
  .menucard-header p::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .menucard-container {
    width: 90%;
    margin: 0 auto;
  }
  .menucard-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .item-name {
    font-size: 1.2rem;
  }

  .item-description {
    font-size: 0.9rem;
  }

  .menucard-image img {
    height: 240px;
  }
}

/* Must try */

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

.food-card-section-heading::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(253, 224, 86, 0.5),
    transparent
  );
  border-radius: 1px;
}

.food-cards-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 70px;
}

.cards-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: nowrap;
  overflow: hidden;
  scroll-behavior: smooth;
}

.food-card {
  flex: 0 0 auto;
  width: 380px;
  height: 520px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 45px 35px;
  text-align: center;
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(15px);
  overflow: hidden;
  clip-path: polygon(
    15% 0%,
    85% 0%,
    100% 15%,
    100% 70%,
    95% 85%,
    85% 100%,
    15% 100%,
    5% 85%,
    0% 70%,
    0% 15%
  );
  border: 2px solid transparent;
  background-clip: padding-box;
}

.food-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  clip-path: inherit;
  transform: scale(1.02);
}

.food-card::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: linear-gradient(
    145deg,
    rgba(212, 175, 55, 0.1),
    rgba(244, 228, 188, 0.05)
  );
  clip-path: inherit;
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.food-card:hover {
  transform: translateY(-15px) rotateX(5deg);
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3),
    0 15px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.food-card:hover::after {
  opacity: 1;
}

.food-card-section .category-label {
  position: absolute;
  top: 25px;
  font-size: 11px;
  font-weight: 600;
  color: Cinzel Decorative;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 15px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.food-image {
  width: 200px;
  height: 200px;
  position: relative;
  overflow: hidden;
  margin: 35px 0 25px 0;
  clip-path: polygon(
    50% 0%,
    83% 12%,
    100% 43%,
    94% 78%,
    68% 100%,
    32% 100%,
    6% 78%,
    0% 43%,
    17% 12%
  );
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.food-image::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: conic-gradient(
    from 0deg,
    #d4af37,
    #f4e4bc,
    #d4af37,
    #f4e4bc,
    #d4af37
  );
  z-index: -1;
  clip-path: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: rotate 4s linear infinite paused;
}

.food-card:hover .food-image::before {
  opacity: 1;
  animation-play-state: running;
}

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

.food-card:hover .food-image {
  transform: scale(1.1) rotateZ(5deg);
  filter: brightness(1.1) contrast(1.1) saturate(1.2);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4),
    inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.food-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
  filter: sepia(10%) contrast(1.1);
}

.food-card:hover .food-image img {
  transform: scale(1.05);
  filter: sepia(20%) contrast(1.2) brightness(1.1);
}

.dish-name {
  font-family: "Cinzel Decorative", cursive;
  font-size: 22px;
  font-weight: 700;
  color: #f4e4bc;
  margin: 25px 0 15px 0;
  text-transform: capitalize;
  letter-spacing: 1.5px;
  position: relative;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.dish-name::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  transition: width 0.3s ease;
}

.food-card:hover .dish-name::after {
  width: 80px;
}

.dish-description {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 300px;
  font-weight: 300;
  font-style: italic;
}

.dish-price {
  font-family: "Cinzel Decorative", cursive;
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
  position: relative;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.dish-price::before {
  content: "♦";
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary-color);
  font-size: 12px;
}

.dish-price::after {
  content: "♦";
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary-color);
  font-size: 12px;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(
    145deg,
    rgba(26, 26, 26, 0.9),
    rgba(45, 45, 45, 0.9)
  );
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.nav-arrow:hover {
  background: linear-gradient(
    145deg,
    rgba(212, 175, 55, 0.2),
    rgba(244, 228, 188, 0.1)
  );
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.3),
    0 0 20px rgba(212, 175, 55, 0.2);
  border-color: #f4e4bc;
}

.nav-arrow.prev {
  left: 20px;
}

.nav-arrow.next {
  right: 20px;
}

.nav-arrow::before {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--secondary-color);
  border-right: 3px solid var(--secondary-color);
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.nav-arrow:hover::before {
  border-color: #f4e4bc;
}

.nav-arrow.prev::before {
  transform: rotate(-135deg);
}

.food-card-section {
  position: relative;
  background: radial-gradient(
    ellipse at center,
    rgba(212, 175, 55, 0.03) 0%,
    transparent 70%
  );
}

@media (max-width: 1200px) {
  .food-card {
    width: 340px;
    height: 500px;
    padding: 40px 30px;
  }

  .food-image {
    width: 180px;
    height: 180px;
  }

  .food-card-section-heading {
    font-size: 2.8rem;
  }

  .cards-wrapper {
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .food-cards-container {
    padding: 40px 40px;
  }

  .food-card {
    width: 300px;
    height: 460px;
    padding: 30px 25px;
  }

  .food-image {
    width: 150px;
    height: 150px;
  }

  .dish-name {
    font-size: 20px;
  }

  .dish-description {
    font-size: 14px;
  }

  .dish-price {
    font-size: 18px;
  }

  .nav-arrow {
    width: 45px;
    height: 45px;
  }

  .nav-arrow::before {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }
}

@media (max-width: 768px) {
  .food-cards-container {
    padding: 30px 20px;
  }

  .cards-wrapper {
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .cards-wrapper::-webkit-scrollbar {
    display: none;
  }

  .food-card {
    width: 260px;
    height: 420px;
    padding: 25px 20px;
  }

  .food-image {
    width: 130px;
    height: 130px;
  }

  .food-card-section-heading {
    font-size: 2rem;
  }

  .nav-arrow {
    width: 40px;
    height: 40px;
  }

  .nav-arrow::before {
    width: 9px;
    height: 9px;
  }
}

@media (max-width: 768px) {
  .food-card {
    width: 320px;
    height: 480px;
    padding: 35px 25px;
  }

  .food-image {
    width: 160px;
    height: 160px;
  }

  .food-card-section-heading {
    font-size: 2.5rem;
  }

  .nav-arrow {
    width: 50px;
    height: 50px;
  }

  .nav-arrow::before {
    width: 12px;
    height: 12px;
    border-width: 2px;
  }
}

@media (max-width: 480px) {
  .food-card {
    width: 280px;
    height: 380px;
    padding: 20px 15px;
    margin-top: 20px;
  }

  .food-image {
    width: 110px;
    height: 110px;
  }

  .dish-name {
    font-size: 18px;
  }

  .dish-description {
    font-size: 13px;
  }

  .dish-price {
    font-size: 16px;
  }

  .nav-arrow {
    width: 35px;
    height: 35px;
  }

  .nav-arrow::before {
    width: 8px;
    height: 8px;
  }
}

/* Booking form */

.booking-container {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  height: auto;
}

.left-panel {
  background-color: #222;
  color: var(--secondary-color);
  padding: 20px;
  width: 100%;
  border: 2px solid var(--secondary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left-panel span {
  font-family: "Cinzel Decorative", cursive;
}

.left-panel h2 {
  font-size: 2em;
  margin-bottom: 5px;
  font-family: "Cinzel Decorative", cursive;
}

.left-panel p {
  font-size: 0.9em;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: "Cinzel Decorative", cursive;
}

.form-group1,
.form-group2 {
  display: flex;
  gap: 10px;
}

.form-group1 input,
.form-group2 input,
.form-group select {
  width: 100%;
  padding: 10px;
  background-color: #111;
  border: none;
  outline: none;
  color: var(--secondary-color);
  margin-bottom: 10px;
  box-sizing: border-box;
}

.full-width-input {
  width: 100%;
  padding: 10px;
  background-color: #111;
  border: none;
  outline: none;
  color: var(--secondary-color);
  margin-bottom: 15px;
  box-sizing: border-box;
}

.form-group1 input:focus,
.form-group2 input:focus,
.form-group select:focus,
.full-width-input:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px rgba(253, 224, 86, 0.2);
  background-color: rgba(17, 17, 17, 0.9);
}

.form-group1 input::placeholder,
.form-group2 input::placeholder,
.left-panel textarea::placeholder {
  color: var(--secondary-color);
}

.booking-button {
  background-color: var(--secondary-color);
  color: #111;
  padding: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  width: 100%;
  box-sizing: border-box;
  font-family: "Cinzel Decorative", cursive;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.booking-button:hover {
  background-color: #ffea7d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(253, 224, 86, 0.4);
}

.booking-button:active {
  transform: translateY(0);
}

.booking-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.booking-button:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

.right-panel {
  width: 100%;
  background-color: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  color: #e0e0e0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url("../images/about-demo.jpg");
  background-size: cover;
  background-position: center;
}

.right-panel-content {
  background: none;
  padding: 0;
  text-align: left;
}

.right-panel h3 {
  font-size: 1em;
  color: #ffffff;
  margin: 0;
}

.right-panel h3 span {
  color: #b8860b;
}

.open-hours-table {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.open-hours-table p {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .booking-container {
    flex-direction: row;
    height: 100%;
  }

  .left-panel {
    padding: 40px;
    width: 50%;
  }

  .left-panel h2 {
    font-size: 3em;
  }

  .left-panel p {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .form-group1,
  .form-group2 {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .form-group1 input {
    width: 48%;
    margin-bottom: 0;
  }

  .form-group2 input,
  .form-group2 select {
    width: 32%;
    margin-bottom: 0;
  }

  .full-width-input {
    padding: 15px;
    margin-bottom: 20px;
  }

  .booking-button {
    width: auto;
  }

  .right-panel {
    width: 50%;
    padding: 40px;
  }

  .right-panel h2 {
    font-size: 3em;
  }

  .right-panel h3 {
    font-size: 1.5em;
    margin-top: 40px;
  }

  .open-hours-table {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .booking-container {
    width: 90%;
    margin: 0 auto 30px auto;
    margin-top: 30px;
  }
}

/* Testimonial Section */

.testimonials-section {
  position: relative;
  width: 100%;
  height: 500px;
  background-color: #1a1a1a;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 70px;
}

.background-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 500"><rect width="800" height="500" fill="%23d4a574"/><circle cx="600" cy="250" r="150" fill="%23c49660" opacity="0.3"/><rect x="500" y="200" width="300" height="200" rx="20" fill="%23b8854d" opacity="0.2"/></svg>')
    center/cover;
  opacity: 0.8;
}

.content-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.testimonial-content {
  flex: 1;
  max-width: 500px;
  border-radius: 0 100px 0 0;
}

.reviews-label {
  color: var(--secondary-color);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-title {
  color: white;
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.2;
  font-family: "Cinzel Decorative", cursive;
}

.testimonial-text {
  color: #a8c4b8;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  min-height: 120px;
  transition: all 0.8s ease;
}

.customer-avatars {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex: 0 0 auto;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  border: 3px solid transparent;
}

.avatar.active {
  width: 80px;
  height: 80px;
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(226, 228, 101, 0.3);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-name {
  color: var(--secondary-color);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 20px;
  opacity: 0;
  transition: all 0.5s ease;
}

.customer-name.active {
  opacity: 1;
}

.progress-bar {
  position: absolute;
  bottom: 20px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--secondary-color);
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 1px;
}

.dining-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: url("https://plus.unsplash.com/premium_photo-1681841594224-ad729a249113?q=80&w=454&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D")
    center/cover;
  opacity: 0.9;
  border-radius: 100px 0 0 100px;
}

@media (max-width: 1900px) {
  .progress-bar {
    width: 48%;
  }
}

@media (max-width: 1100px) {
  .testimonial-text {
    font-size: 16px;
  }

  .dining-image {
    width: 40%;
  }
}

@media (max-width: 900px) {
  .content-container {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
    text-align: center;
  }
  .testimonial-title {
    font-size: 36px;
  }
  .testimonial-text {
    font-size: 16px;
    min-height: 100px;
  }
  .dining-image {
    display: none;
  }
  .background-image {
    width: 100%;
    opacity: 0.3;
  }

  .progress-bar {
    width: 90%;
  }
}

/* Chefs */

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

.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: rgba(253, 224, 86, 0.6);
  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 {
  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;
  color: rgba(253, 224, 86, 0.9);
  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: 10px;
  }

  .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;
  }
}

/* Blog section  */

.blog-section {
  padding: 60px 0;
  color: #ffffff;
  text-align: center;
  margin-top: 80px;
}

.blog-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-heading span {
  color: var(--secondary-color);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 40px;
  font-family: "Cinzel Decorative", cursive;
}

.section-heading 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;
  font-family: "Cinzel Decorative", cursive;
}

.section-heading h2::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
  border-radius: 2px;
}

.blog-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0 20px;
  align-items: stretch;
}

.blog-card {
  border-radius: 20px;
  overflow: hidden;
  background-color: #111;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  width: calc(33.33% - 20px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  text-align: left;
  height: 500px;
}

.card-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 20px 20px 0 100px;
  margin-bottom: -60px;
  flex-shrink: 0;
}

.card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

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

.blog-card .card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.5s ease;
}

.blog-card:hover .card-image::after {
  background: rgba(0, 0, 0, 0.5);
}

.card-content {
  padding: 80px 20px 30px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-title a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 15px;
  min-height: 56px;
}

.post-title a:hover {
  color: var(--secondary-color); /* highlight color */
  text-decoration: underline;
}

.post-date {
  color: var(--secondary-color);
  font-size: 16px;
  margin-bottom: 10px;
}

.post-date span {
  display: block;
  font-weight: bold;
}

.post-category {
  color: #b8b8b8;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .blog-card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .blog-card {
    width: 100%;
  }
}

/* Parallax section */

.parallax-section {
  background-image: url("../images/hero-demo1.jpg");
  min-height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.video-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.video-text {
  font-size: 1rem;
  margin-bottom: 10px;
}

.play-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.play-button::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  margin-left: 3px;
  z-index: 2;
  position: relative;
}

.play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  animation: echo-ripple 1.5s infinite;
  z-index: 1;
}

@keyframes echo-ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.parallax-heading {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
  font-family: "Cinzel Decorative", cursive;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: #000;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  position: relative;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 480px) {
  /* .parallax-section{
  width: 95%;
  margin: 0 auto;
} */

  .stat-number {
    font-size: 1.2rem;
    font-weight: bold;
  }

  .stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
  }
}

/* Booking success */

.successMessage {
  display: none;
  color: #000;
  background-color: #fff9c4;
  border: 1px solid #ffec3d;
  width: 80%;
  padding: 15px;
  border-radius: 8px;
  margin: 0 auto;
  margin-top: 20px;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 236, 61, 0.6);
  transition: all 0.3s ease;
}
