@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

.page-container {
  display: flex;
  flex-direction: column;
  max-width: clamp(20rem, 90%, 90rem);

  margin: 10px auto;
  width: 100%;
  background: url(img/bg-hero.jpg) center/cover;
  padding: clamp(1rem, 2vw, 2rem);

  border-bottom-left-radius: clamp(20px, 4vw, 40px);
  border-bottom-right-radius: clamp(20px, 4vw, 40px);
  border-top-left-radius: clamp(20px, 4vw, 40px);
  border-top-right-radius: clamp(20px, 4vw, 40px);
}

.header {
  background: linear-gradient(90deg, #ff6b3f 0%, #ffb245 100%);
  border-radius: clamp(0.3rem, 0.625vw, 0.625rem);
  padding: clamp(0.3rem, 0.625vw, 0.625rem);
  position: sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

.fa-bars {
  width: clamp(20px, 3vw, 30px);
  height: clamp(20px, 3vw, 30px);
  cursor: pointer;
  color: white;
  transition: transform 0.3s ease;
  display: none;
}

.fa-bars:hover {
  transform: rotate(90deg);
}

nav {
  display: flex;
  gap: clamp(0.5rem, 1vw, 1rem);
  justify-content: space-between;
  max-width: clamp(20rem, 90%, 90rem);
  margin: 0 auto;
  position: relative;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: clamp(20rem, 90%, 90rem);
  margin: 0 auto;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.5vw, 1.5rem);
  padding: clamp(0.3rem, 0.5vw, 0.5rem);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo:hover {
  transform: scale(1.05);
}

.brand-logo img {
  width: clamp(2rem, 3vw, 3rem);
  height: auto;
  animation: pulse 2s infinite ease-in-out;
}

.brand-name {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fea116, #ffd700, #ff8c00);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
  letter-spacing: clamp(0.5px, 1vw, 1px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.navigation {
  display: flex;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
  padding: clamp(0.3rem, 0.5vw, 0.5rem);
}

.nav-item {
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  z-index: 1;
}

.nav-link {
  color: #fff;
  font-weight: 600;
  padding: clamp(0.5rem, 0.75vw, 0.75rem);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ffd700;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.submenu {
  position: absolute;
  min-width: clamp(150px, 20vw, 200px);
  padding: clamp(0.8rem, 1vw, 1rem);
  border-radius: clamp(0.8rem, 1vw, 1rem);
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(254, 161, 22, 0.95) 100%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
}

.nav-item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px);
  display: block;
}

.submenu a,
.submenu2 a {
  display: block;
  padding: clamp(0.6rem, 0.8vw, 0.8rem) clamp(0.8rem, 1.2vw, 1.2rem);
  color: #333;
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.submenu a:hover,
.submenu2 a:hover {
  background: rgba(254, 161, 22, 0.1);
  transform: translateX(10px);
  color: #ff8c00;
}

.cta-button {
  background: linear-gradient(135deg, #fea116, #ff8c00);
  color: white;
  padding: clamp(0.8rem, 1vw, 1rem) clamp(1.5rem, 2vw, 2rem);
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: clamp(1px, 1.5vw, 1.5px);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(254, 161, 22, 0.2);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(254, 161, 22, 0.4);
  background: linear-gradient(135deg, #ff8c00, #fea116);
}

.submenu2 {
  position: absolute;
  min-width: clamp(180px, 22vw, 220px);
  padding: clamp(1rem, 1.2vw, 1.2rem);
  border-radius: clamp(0.8rem, 1vw, 1rem);
  backdrop-filter: blur(12px);
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(254, 161, 22, 0.95) 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  right: 0;
  top: 100%;
}

.submenu2.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px) scale(1);
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(2rem, 3vw, 3rem) 0;
  max-width: clamp(20rem, 90%, 90rem);
  margin: 0 auto;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
  animation: slideIn 1s ease-out;

}

.hero-heading {
  font-size: clamp(2.5rem, 4.375vw, 4.375rem);
  background: linear-gradient(135deg, #ffd65a, #ff8c00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
  font-size: clamp(1rem, 1.375vw, 1.375rem);
  color: #fdf5e6;
  line-height: 1.8;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: clamp(0.8rem, 1vw, 1rem);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  max-width: clamp(30rem, 40vw, 40rem);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-content .cta-button {
  width: fit-content;
  padding: clamp(1rem, 1.2vw, 1.2rem) clamp(2rem, 2.5vw, 2.5rem);
  border-radius: 50px;
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, #fea116, #ff8c00);
  transition: all 0.4s ease;
}

.hero-content .cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(254, 161, 22, 0.3);
}

.hero-visual {
  position: relative;
  perspective: 1000px;
}

.hero-visual img {
  width: 100%;
  height: auto;
  animation: floatAndRotate 40s infinite ease-in-out, slideIn 1s ease-out;
  margin-top: clamp(1.5rem, 2.5vw, 2.5rem);
  object-fit: contain;
  transform-origin: center;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.25));
  -webkit-animation: floatAndRotate 40s infinite ease-in-out, slideIn 1s ease-out;
}

@keyframes floatAndRotate {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) rotate(180deg);
  }

  100% {
    transform: translateY(0) rotate(360deg);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: clamp(1rem, 2vw, 2rem);
  padding: clamp(1rem, 2vw, 2rem);
  margin: clamp(1rem, 2vw, 2rem) auto;
  max-width: clamp(300px, 90vw, 1400px);
}

.service-card {
  flex: 1;
  min-width: clamp(250px, 30vw, 280px);
  text-align: center;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(255, 255, 255, 0.95);
  border-radius: clamp(1rem, 1.5vw, 1.5rem);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card-icon {
  background: linear-gradient(135deg, #fea116, #ff8c00);
  width: clamp(60px, 8vw, 80px);
  height: clamp(60px, 8vw, 80px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto clamp(1rem, 1.5vw, 1.5rem);
  transition: all 0.4s ease;
}


.service-card img {
  width: clamp(30px, 4vw, 40px);
  height: clamp(30px, 4vw, 40px);
  filter: brightness(0) invert(1);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #fea116, #ff8c00);
  color: #fff;
}

.service-card:hover .card-icon {
  background: #fff;
}

.service-card:hover img {
  transform: scale(1.2) rotate(10deg);
  filter: brightness(0) saturate(100%) invert(0);
}

.service-card h3 {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-weight: 700;
  margin: clamp(0.8rem, 1vw, 1rem) 0;
  transition: all 0.3s ease;
}

.service-card p {
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  margin: clamp(0.8rem, 1vw, 1rem) 0;
  transition: all 0.3s ease;
}

.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 3vw, 3rem);
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.95),
      rgba(255, 255, 255, 0.85));
  border-radius: clamp(1.5rem, 2vw, 2rem);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin: clamp(2rem, 3vw, 3rem) auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 1.5vw, 1.5rem);
  width: 48%;
  padding: clamp(1rem, 1.5vw, 1.5rem);
  animation: slideIn 1s ease-out;
}


.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: clamp(1rem, 1.5vw, 1.5rem);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-item:first-child {
  grid-column: 1;
  grid-row: 1 / 3;
}

.gallery-item:last-child {
  grid-column: 2;
  grid-row: 2 / 4;
}

.about-content {
  width: 48%;
  padding: clamp(2rem, 3vw, 3rem);
}


.about-title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  color: #333;
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1vw, 1rem);
}

.about-title::after {
  content: "";
  position: absolute;
  bottom: clamp(-0.8rem, -1vw, -1rem);
  left: 0;
  width: clamp(3rem, 5vw, 5rem);
  height: clamp(0.2rem, 0.25vw, 0.25rem);
  background: linear-gradient(90deg, #fea116, #ff8c00);
  border-radius: 1rem;
}

.brand-icon {
  width: clamp(2rem, 3vw, 3rem);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  animation: float 3s ease-in-out infinite;
}

.about-text {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.8;
  color: #555;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  text-align: justify;
  transition: all 0.3s ease;
}

.about-text:last-child {
  position: relative;
  background: linear-gradient(90deg,
      rgba(254, 161, 22, 0.1),
      transparent);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-left: 3px solid #fea116;
  padding: clamp(1.5rem, 2vw, 2rem);
  padding-left: clamp(1.5rem, 2vw, 2rem);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.menu-section {
  width: 100%;
  max-width: clamp(300px, 90vw, 1400px);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 2vw, 2rem);
  border-radius: clamp(1.5rem, 2vw, 2rem);
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95));
}

.menu-section h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  text-align: center;
  margin: clamp(1.5rem, 2vw, 2rem) 0;
  padding: clamp(0.8rem, 1vw, 1rem);
  color: #2c3e50;
  position: relative;
  text-transform: uppercase;
  letter-spacing: clamp(1px, 2vw, 2px);
}

.menu-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #f39c12, #ff8c00);
  border-radius: 2px;
}

.category-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin: clamp(2rem, 3vw, 3rem) 0;
  flex-wrap: wrap;
}

.category-item {
  display: flex;
  align-items: center;
  padding: clamp(0.8rem, 1vw, 1rem) clamp(1.5rem, 2vw, 2rem);
  border-bottom: 3px solid #e0e0e0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  border-radius: clamp(0.8rem, 1vw, 1rem);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.category-icon {
  background: linear-gradient(135deg, #f39c12, #ff8c00);
  padding: clamp(0.8rem, 1vw, 1rem);
  border-radius: clamp(0.8rem, 1vw, 1rem);
  margin-right: clamp(1rem, 1.5vw, 1.5rem);
}

.category-item img {
  width: clamp(2rem, 2.5vw, 2.5rem);
  height: clamp(2rem, 2.5vw, 2.5rem);
  filter: brightness(0) invert(1);
  transition: transform 0.4s ease;



}

.category-item:hover {
  border-bottom-color: #f39c12;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(243, 156, 18, 0.2);


}

.grid-container {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 30vw, 320px), 1fr));
  gap: clamp(1.5rem, 2vw, 2rem);
  padding: clamp(1.5rem, 2vw, 2rem);
  width: 100%;
  margin: 0 auto;
}

.card {
  display: flex;
  align-items: center;
  background: white;
  border-radius: clamp(1rem, 1.5vw, 1.5rem);
  padding: clamp(1rem, 1.5vw, 1.5rem);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(243, 156, 18, 0.1);

}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(243, 156, 18, 0.15);
}

.card-image {
  position: relative;
  overflow: hidden;
  border-radius: clamp(0.8rem, 1vw, 1rem);
  width: clamp(8rem, 10vw, 10rem);
  height: clamp(5rem, 6vw, 6rem);
  margin-right: clamp(1rem, 1.5vw, 1.5rem);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.card-title {
  font-size: clamp(1.1rem, 1.25vw, 1.25rem);
  font-weight: 700;
  color: #2c3e50;
  font-size: clamp(1.1rem, 1.25vw, 1.25rem);
}

.card-description {
  font-size: clamp(0.9rem, 0.95vw, 0.95rem);
  color: #666;
  line-height: 1.6;
}

.card-price {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-weight: 800;
  color: #f39c12;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}


.reservation-container {
  background: linear-gradient(145deg, #1a1f35, #111827);
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: clamp(1rem, 1.5vw, 1.5rem);
  width: 100%;
  max-width: clamp(300px, 45rem, 45rem);
  margin: clamp(2rem, 3vw, 3rem) auto;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.reservation-container h2 {
  margin-bottom: clamp(2rem, 2.5vw, 2.5rem);
  color: white;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: clamp(1px, 2vw, 2px);
  position: relative;
}

.reservation-container h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b, #ff8c00);
  border-radius: 2px;
}

.form-group {
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
  text-align: left;
}

.reservation-form label {
  display: block;
  text-align: left;
  margin-bottom: clamp(0.3rem, 0.5vw, 0.5rem);
  color: #f8f9fa;
  font-weight: 500;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: clamp(0.8rem, 1vw, 1rem);
  border-radius: clamp(0.6rem, 0.8vw, 0.8rem);
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #f59e0b;
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.form-select {
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.5rem;
  padding-right: 2.5rem;
  color: #000;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #f59e0b, #ff8c00);
  color: white;
  border: none;
  padding: clamp(1rem, 1.2vw, 1.2rem);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  font-weight: 600;
  border-radius: clamp(0.8rem, 1vw, 1rem);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: clamp(0.8rem, 1vw, 1rem);
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
  background: linear-gradient(135deg, #ff8c00, #f59e0b);
}

.chef-section {
  padding: clamp(3rem, 4vw, 4rem) clamp(1.5rem, 2vw, 2rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
  border-radius: clamp(1.5rem, 2vw, 2rem);
}

.chef-section h2 {
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  color: #1f2937;
  margin-bottom: clamp(2rem, 3vw, 3rem);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.chef-section h2::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #ff8c00);
  border-radius: 2px;
}

.chef-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 280px, 300px), 1fr));
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
  padding: clamp(0.8rem, 1vw, 1rem);
  max-width: clamp(300px, 90vw, 1400px);
  margin: 0 auto;
}

.chef-card {
  background: white;
  border-radius: clamp(1rem, 1.5vw, 1.5rem);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;

}

.chef-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.chef-image {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}

.chef-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.chef-over {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

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

.chef-info {
  padding: clamp(1.5rem, 2vw, 2rem);
  text-align: center;
}

.chef-card h3 {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: clamp(0.3rem, 0.5vw, 0.5rem);
}

.chef-card p {
  color: #f59e0b;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.chef-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.chef-social a {
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.chef-social a:hover {
  color: #f59e0b;
  transform: translateY(-5px);
}

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

.reviews-section {
  padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 2vw, 2rem);
  background: linear-gradient(135deg, #fff5e6, #fff);
  border-radius: clamp(1.5rem, 2vw, 2rem);
  margin: 4rem auto;
  max-width: clamp(300px, 90vw, 1400px);
}

.reviews-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #1f2937;
  margin-bottom: 3rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.reviews-section h2::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #ff8c00);
  border-radius: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 300px, 320px), 1fr));
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
  padding: clamp(1.5rem, 2vw, 2rem);
}

.review-card {
  background: white;
  padding: clamp(2rem, 2.5vw, 2.5rem);
  border-radius: clamp(1rem, 1.5vw, 1.5rem);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #f59e0b, #ff8c00);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.review-card:hover::before {
  transform: scaleX(1);
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.15);
}

.quote-icon {
  background: linear-gradient(135deg, #f59e0b, #ff8c00);
  width: clamp(40px, 50px, 60px);
  height: clamp(40px, 50px, 60px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
}

.quote-icon i {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  color: white;
}

.review-text {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.review-content {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.reviewer-image {
  position: relative;
}

.reviewer-image img {
  width: clamp(60px, 70px, 80px);
  height: clamp(60px, 70px, 80px);
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f59e0b;
  transition: transform 0.3s ease;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.reviewer-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
}

.reviewer-info span {
  color: #f59e0b;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rating {
  color: #f59e0b;
  font-size: 0.9rem;
}

.rating i {
  margin-right: 2px;
}


.footer {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: white;
  padding: clamp(3rem, 4vw, 4rem) clamp(1.5rem, 2vw, 2rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(2rem, 3vw, 3rem);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #fea116, #ff8c00);
}

.footer-section {
  padding: clamp(0.8rem, 1vw, 1rem);
}

.footer-section-title {
  font-size: clamp(1.5rem, 1.8vw, 1.8rem);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  color: #ffa500;
  position: relative;
  padding-bottom: clamp(0.8rem, 1vw, 1rem);
  font-weight: 600;
}

.footer-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(30px, 5vw, 50px);
  height: clamp(2px, 0.3vw, 3px);
  background: linear-gradient(90deg, #fea116, #ff8c00);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 1vw, 1rem);
}

.footer-links a,
.footer-links p {
  color: #e5e7eb;
  text-decoration: none;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  padding: clamp(0.4rem, 0.5vw, 0.5rem) 0;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.footer-links i {
  margin-right: clamp(0.8rem, 1vw, 1rem);
  font-size: clamp(1.1rem, 1.2vw, 1.2rem);
  color: #ffa500;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffa500;
  transform: translateX(10px);
}

.footer-links a:hover i {
  transform: rotate(90deg);
  color: #ff4500;
}

.social-links {
  display: flex;
  gap: clamp(0.8rem, 1vw, 1rem);
  margin-top: clamp(1.5rem, 2vw, 2rem);
}

.social-icon {
  width: clamp(35px, 4.5vw, 45px);
  height: clamp(35px, 4.5vw, 45px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-icon i {
  font-size: clamp(1.3rem, 1.5vw, 1.5rem);
  color: #fff;
}

.social-icon:hover {
  transform: translateY(-5px);
  background: #ffa500;
  box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 1vw, 1rem);
}

.footer-form input {
  padding: clamp(0.8rem, 1vw, 1rem);
  border-radius: clamp(6px, 0.8vw, 8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.footer-form input:focus {
  outline: none;
  border-color: #ffa500;
}

.fta-button {
  background: linear-gradient(135deg, #fea116, #ff8c00);
  color: white;
  padding: clamp(0.8rem, 1vw, 1rem);
  border-radius: clamp(6px, 0.8vw, 8px);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: clamp(0.8px, 1vw, 1px);
}

.fta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

.hours p {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1vw, 1rem);
  color: #e5e7eb;
}