:root {
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --bg-gradient: linear-gradient(135deg, #F7EFE5 0%, #F3D7B5 100%);
  --primary-btn: #F59E0B;
  --primary-btn-hover: #EA8C00;

  --heading-color: #2B2B2B;
  --text-color: #6B6B6B;

  --card-bg: #FFFFFF;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background: var(--bg-gradient);
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100vw;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
.price {
  font-family: var(--font-heading);
  color: var(--heading-color);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: transparent;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  opacity: 1;
  visibility: visible;
}

.navbar.hidden {
  opacity: 0;
  visibility: hidden;
}

.nav-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.location-btn i {
  font-size: 1.1rem;
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  order: 3;
}

.brand-logo {
  background: var(--primary-btn);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.nav-center h1 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  order: 2;
}

.nav-pill-btn {
  background: transparent;
  border: 2px solid var(--heading-color);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--heading-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-pill-btn:hover {
  background: var(--heading-color);
  color: white;
}

.order-online-btn {
  background: var(--primary-btn);
  color: white;
  border-color: var(--primary-btn);
}

.order-online-btn:hover {
  background: var(--primary-btn-hover);
  border-color: var(--primary-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.icon-btn {
  background: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--heading-color);
  cursor: pointer;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.icon-btn:hover {
  transform: translateY(-2px);
  color: var(--primary-btn);
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8rem 5% 6rem;
  text-align: center;
  position: relative;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  max-width: 800px;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 5rem;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  border: none;
}

.btn-primary {
  background: var(--primary-btn);
  color: white;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  background: var(--primary-btn-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--heading-color);
  border: 2px solid var(--heading-color);
}

.btn-secondary:hover {
  background: var(--heading-color);
  color: white;
}

/* Hero Images */
.hero-images {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-dish {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  animation: rotateDish 20s linear infinite;
  z-index: 2;
  border: 8px solid white;
}

.floating-dish {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--card-shadow);
  border: 5px solid white;
  animation: float 4s ease-in-out infinite;
  z-index: 1;
}

.dish-1 {
  top: -20%;
  left: -20%;
  animation-delay: 0s;
}

.dish-2 {
  bottom: -20%;
  right: -20%;
  animation-delay: 1.5s;
}

.dish-3 {
  top: 40%;
  left: 100%;
  animation-delay: 2.5s;
}

/* Menu Section */
.menu-section {
  padding: 2rem 5% 6rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 4rem auto 0;
}

.menu-card {
  background: var(--card-bg);
  border-radius: 30px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-card.floating-card {
  animation: floatCard 4s ease-in-out infinite;
}

.menu-card:hover {
  transform: scale(1.08) !important;
  animation-play-state: paused;
  z-index: 10;
}

.card-img-wrapper {
  width: 160px;
  height: 160px;
  margin-top: -4.5rem;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  background: white;
  padding: 5px;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.menu-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.3px;
}

.menu-card p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  white-space: nowrap;
}

.description-btn {
  background: transparent;
  color: var(--heading-color);
  border: 1px solid var(--heading-color);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.description-btn:hover {
  background: var(--heading-color);
  color: white;
  transform: scale(1.05);
}

/* Animations */
@keyframes rotateDish {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

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

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

@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }

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

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

/* Responsive */
@media (max-width: 1024px) {
  .nav-left .location-btn span {
    display: none;
  }

  .nav-left .location-btn {
    padding: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-left .location-btn i {
    font-size: 1.5rem;
  }

  .dish-3 {
    left: 80%;
  }
}

@media (max-width: 768px) {
  * {
    -webkit-tap-highlight-color: transparent;
  }

  .navbar {
    padding: 1.5rem 5%;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .nav-left,
  .nav-center {
    flex: none;
    width: auto;
    margin: 0;
  }

  .nav-right {
    display: none;
  }

  .nav-left {
    order: 1;
  }

  .nav-center {
    order: 2;
  }

  .nav-center h1 {
    display: none;
  }

  .brand-logo {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .nav-left .location-btn {
    width: 45px;
    height: 45px;
  }

  .nav-left .location-btn i {
    font-size: 1.5rem;
  }

  .icon-btn {
    display: none;
  }

  .hero {
    padding: 6rem 5% 3rem;
  }

  .hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    padding: 0 0.5rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    gap: 1rem;
    margin: 0 auto;
  }

  .btn {
    width: auto;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .hero-images {
    width: 260px;
    height: 260px;
    margin-top: 5rem;
  }

  .main-dish {
    width: 180px;
    height: 180px;
  }

  .floating-dish {
    width: 70px;
    height: 70px;
  }

  .dish-1 {
    top: -20%;
    left: -20%;
  }

  .dish-2 {
    bottom: -20%;
    right: -20%;
  }

  .dish-3 {
    left: 95%;
    right: auto;
    top: 40%;
  }

  .menu-grid {
    gap: 3.5rem;
    margin-top: 2rem;
  }

  .card-img-wrapper {
    width: 130px;
    height: 130px;
    margin-top: -3.5rem;
  }
}

@media (max-width: 480px) {
  .nav-center h1 {
    display: none;
  }

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

  .hero-images {
    width: 220px;
    height: 220px;
    margin-top: 3rem;
  }

  .main-dish {
    width: 150px;
    height: 150px;
  }

  .floating-dish {
    width: 60px;
    height: 60px;
  }

  .dish-1 {
    top: -20%;
    left: -20%;
  }

  .dish-2 {
    bottom: -20%;
    right: -20%;
  }

  .dish-3 {
    left: 95%;
    right: auto;
    top: 40%;
  }
}

/* About Section */
.about-section {
  padding: 4rem 5%;
  text-align: center;
  background: var(--card-bg);
  border-radius: 30px;
  margin: 0 auto 4rem;
  max-width: 1000px;
  box-shadow: var(--card-shadow);
  position: relative;
  z-index: 1;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  position: relative;
  display: inline-block;
}

.about-content h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-btn);
  border-radius: 2px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .about-section {
    padding: 3rem 5%;
    margin: 0 1rem 3rem;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}

/* Gallery Section */
.gallery-section {
  padding: 4rem 5%;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.gallery-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--heading-color);
  position: relative;
  display: inline-block;
}

.gallery-content h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-btn);
  border-radius: 2px;
}

.gallery-row {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 1rem 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-btn) rgba(0, 0, 0, 0.05);
}

.gallery-row::-webkit-scrollbar {
  height: 8px;
}

.gallery-row::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.gallery-row::-webkit-scrollbar-thumb {
  background-color: var(--primary-btn);
  border-radius: 10px;
}

.gallery-item {
  flex: 0 0 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.4s ease;
  background: white;
  padding: 10px;
}

.gallery-item:hover {
  transform: translateY(-10px);
}

.gallery-item img,
.coming-soon .placeholder {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}

.coming-soon .placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #f8f9fa;
  color: #888;
  border: 2px dashed #ddd;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
}

.coming-soon .placeholder i {
  font-size: 3rem;
  color: #ccc;
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 2rem 5%;
  }

  .gallery-content h2 {
    font-size: 2rem;
  }
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #f5f5f5;
  padding: 4rem 5% 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo i {
  color: var(--primary-btn);
  font-size: 2rem;
}

.footer-logo h2 {
  color: white;
  font-size: 1.5rem;
}

.brand-section p {
  color: #aaa;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--primary-btn);
  transform: translateY(-3px);
}

.footer-section h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-btn);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: #aaa;
}

.footer-section ul li i {
  color: var(--primary-btn);
  margin-top: 0.2rem;
  font-size: 1.2rem;
}

.footer-section ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-btn);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer {
    padding-top: 3rem;
  }
}

/* Reviews Section */
.reviews-section {
  padding: 5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.reviews-title {
  flex: 1;
  min-width: 300px;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.2;
}

.reviews-title em {
  font-style: italic;
  font-weight: 400;
}

.reviews-subtitle {
  flex: 1;
  min-width: 300px;
  font-size: 1rem;
  color: #777;
  line-height: 1.6;
  text-align: right;
}

.reviews-container {
  overflow-x: auto;
  padding: 2rem 1rem 3rem;
  margin: -2rem -1rem -3rem;
  /* Compensate for padding to show shadows */
  scrollbar-width: none;
  /* Firefox */
}

.reviews-container::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.reviews-row {
  display: inline-flex;
  gap: 1.5rem;
}

.review-card {
  width: 320px;
  height: 480px;
  background: #f5f5f7;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #fffcf6 0%, #ffdf9e 40%, #ff9800 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.review-card:hover {
  transform: scale(1.03) translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 143, 0, 0.2);
}

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

.review-content,
.review-meta {
  position: relative;
  z-index: 1;
}

.review-heading {
  font-size: 1.3rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.review-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  /* stylelint-disable-next-line property-no-unknown */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card:hover .review-text {
  color: #222;
}

.review-meta {
  margin-top: 1.5rem;
}

.review-context {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 1rem;
  font-weight: 500;
}

.review-card:hover .review-context {
  color: #555;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-btn);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  margin: 0;
}

.author-info span {
  font-size: 0.75rem;
  color: #777;
}

.review-card:hover .author-info span {
  color: #444;
}

@media (max-width: 768px) {
  .reviews-header {
    flex-direction: column;
    text-align: left;
    gap: 1rem;
  }

  .reviews-subtitle {
    text-align: left;
  }

  .review-card {
    width: 280px;
    height: 420px;
    padding: 2rem 1.5rem;
  }
}