/* --- VARIABLES --- */
:root {
  --bg-dark: #121113;
  --bg-card: rgba(30, 28, 32, 0.6);
  --bg-glass: rgba(255, 255, 255, 0.03);
  
  --accent-light: #ff8c00;
  --accent-dark: #e64a19;
  --accent-gradient: linear-gradient(135deg, var(--accent-light), var(--accent-dark));
  
  --text-main: #fcfcfc;
  --text-muted: #a09fa4;
  
  --border-glass: rgba(255, 255, 255, 0.08);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-glow: 0 0 20px rgba(255, 140, 0, 0.4);
  --shadow-drop: 0 10px 30px rgba(0, 0, 0, 0.5);
  --transition-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- RESET & TYPOGRAPHY --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, .logo-text, .badge {
  font-family: var(--font-heading);
}

.dot {
  color: var(--accent-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  display: block;
}

/* --- UTILITIES --- */
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
}

.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--accent-light);
}

.btn-text {
  font-weight: 600;
  color: var(--accent-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.btn-text i {
  transition: var(--transition-smooth);
}

.btn-text:hover i {
  transform: translateX(4px);
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255, 140, 0, 0.1);
  color: var(--accent-light);
  border: 1px solid rgba(255, 140, 0, 0.2);
}

.glow-badge {
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.2);
}

.section-header {
  margin-bottom: 4rem;
}

.section-header.center {
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
}
.section-header.center .section-sub {
  margin: 0 auto;
}

/* --- CANVAS BACKGROUND --- */
#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(18, 17, 19, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 15px 0;
  border-bottom: 1px solid var(--border-glass);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--text-main);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
  z-index: 10;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  margin: 24px 0;
  text-transform: uppercase;
}

.word-slider {
  display: inline-block;
  color: var(--accent-light);
  position: relative;
  vertical-align: top;
  overflow: hidden;
  height: clamp(3rem, 8vw, 5.5rem);
  width: auto;
  min-width: 200px; /* enough space for words */
}

.slide-word {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  font-weight: 900;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-word.active {
  top: 0;
  opacity: 1;
}

.slide-word.exit {
  top: -100%;
  opacity: 0;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.2rem;
  max-width: 450px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 20px;
}

.swiper-container-wrapper {
  flex: 1;
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.swiper {
  width: 340px;
  height: 440px;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background-color: var(--bg-card);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drag-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.8;
  pointer-events: none;
  z-index: 20;
}

.glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: var(--accent-light);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.15;
  z-index: 1;
}

/* --- FEATURES STRIP --- */
.features-strip {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: linear-gradient(90deg, transparent, rgba(255,140,0,0.02), transparent);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.1);
  color: var(--accent-light);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
}

.icon-glow {
  box-shadow: inset 0 0 10px rgba(255,140,0,0.2), 0 0 15px rgba(255,140,0,0.1);
}

/* --- CATEGORIES --- */
.categories {
  padding: 120px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.category-card {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  z-index: 2;
  transition: var(--transition-smooth);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 3;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.card-content h3 {
  font-size: 2rem;
  margin-bottom: 5px;
}

.card-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 20px;
  z-index: 4;
  pointer-events: none;
  transition: var(--transition-smooth);
}

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

.category-card:hover::after {
  background: linear-gradient(to top, rgba(18, 17, 19, 0.95), rgba(18, 17, 19, 0.2));
}

.category-card:hover .card-content {
  transform: translateY(0);
}

.category-card:hover .card-content p {
  opacity: 1;
}

.category-card:hover .card-glow {
  border-color: rgba(255, 140, 0, 0.5);
  box-shadow: inset 0 0 30px rgba(255, 140, 0, 0.2);
}

/* --- ABOUT --- */
.about {
  padding: 120px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 600px;
}

.img-wrapper {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-drop);
}

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

.main-img {
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  z-index: 1;
}

.sub-img {
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  z-index: 2;
  border: 4px solid var(--bg-dark);
}

.experience-badge {
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translateY(-50%);
  z-index: 3;
  padding: 20px;
  text-align: center;
}

.experience-badge .number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
  display: block;
}

.experience-badge .text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.rating {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.stars {
  color: var(--accent-light);
  font-size: 0.9rem;
}

.about-list {
  list-style: none;
  margin: 30px 0;
}

.about-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.about-list i {
  color: var(--accent-light);
}

/* --- MENU HIGHLIGHTS --- */
.menu-highlights {
  padding: 120px 40px;
  background: rgba(255,255,255,0.01);
}

.horizontal-scroll-wrapper {
  margin-top: 60px;
  overflow-x: auto;
  padding-bottom: 40px;
  /* hide scrollbar */
  -ms-overflow-style: none;  
  scrollbar-width: none;  
}

.horizontal-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.horizontal-scroll-container {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 0 40px;
}

.menu-item-card {
  width: 340px;
  padding: 20px;
  position: relative;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.menu-item-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,140,0,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.tag {
  position: absolute;
  top: -12px;
  left: 20px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
}

.top-quality {
  background: #ffaa00;
  color: #000;
}

.chef-choice {
  background: var(--accent-dark);
  color: #fff;
}

.menu-img {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.menu-item-card:hover .menu-img img {
  transform: scale(1.05);
}

.menu-info h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.ingredients {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  height: 48px; /* Fixed height for consistency */
}

.menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-glass);
  padding-top: 15px;
}

.price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-light);
}

.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.05);
  color: var(--text-main);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.menu-item-card:hover .btn-icon {
  background: var(--accent-gradient);
  color: #fff;
  transform: rotate(90deg);
}

/* --- TESTIMONIALS --- */
.testimonials {
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

/* Very subtle blur bg */
.testimonials::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: var(--accent-dark);
  filter: blur(250px);
  opacity: 0.1;
  z-index: -1;
}

.testimonial-slider {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  animation: scrollTestimonials 20s linear infinite;
  width: max-content;
}

.testimonial-card {
  width: 400px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-icon {
  font-size: 2rem;
  color: rgba(255,255,255,0.1);
}

.quote-text {
  font-size: 1.1rem;
  font-style: italic;
  flex: 1;
}

.author {
  font-weight: 600;
  color: var(--accent-light);
}

@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  /* Since we don't have infinite clone loop via JS yet, just slide back and forth */
  50% { transform: translateX(calc(-100% + 1400px)); }
  100% { transform: translateX(0); }
}

/* --- GALLERY --- */
.gallery {
  padding: 60px 0 120px;
}

.gallery-container {
  display: flex;
  gap: 20px;
  padding: 0 40px;
  height: 500px;
}

.gallery-item {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-item.tall {
  flex: 1.5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover {
  flex: 2;
}
.gallery-item.tall:hover {
  flex: 2.5;
}

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

/* --- FOOTER --- */
.footer {
  background: #0a090b;
  padding: 80px 40px 20px;
  border-top: 1px solid var(--border-glass);
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.footer-brand p {
  color: var(--text-muted);
  max-width: 300px;
  margin-bottom: 25px;
}

.socials {
  display: flex;
  gap: 15px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  justify-content: center;
  align-items: center;
}

.socials a:hover {
  background: var(--accent-gradient);
  transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 5px;
}

.footer-contact p {
  color: var(--text-muted);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--accent-light);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- ANIMATIONS (Micro-interactions & Reveals) --- */
.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, visibility;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-title { font-size: 4rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 500px; order: 2; }
  .about-content { order: 1; }
  .gallery-container { height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-menu-btn { display: block; }
  .hero { flex-direction: column; text-align: center; padding-top: 150px; }
  .hero-cta { justify-content: center; }
  .features-strip { flex-direction: column; gap: 20px; }
  .gallery-container { flex-direction: column; height: auto; }
  .gallery-item { height: 250px; }
  .footer-grid { grid-template-columns: 1fr; }
}
