/* ============================================================
   YELLOW PAPRIKA — Homepage Styles
   ============================================================ */

/* ── Hero ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../../assets/hero_cinematic.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 0.1s linear;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.55) 0%,
    rgba(8,8,8,0.3) 40%,
    rgba(8,8,8,0.7) 80%,
    rgba(8,8,8,1) 100%
  );
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 var(--space-lg);
  max-width: 900px;
}
.hero-label {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeIn 1s 1s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero-title .accent { color: var(--gold); font-style: italic; }
.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: rgba(245,237,216,0.75);
  font-style: italic;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 1s 0.8s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s 1s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.hero-scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

/* Floating ingredient emojis (CSS-based 3D) */
.hero-ingredients {
  position: absolute;
  inset: 0; z-index: 2;
  pointer-events: none;
}
.hero-ingr {
  position: absolute;
  font-size: 2.5rem;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.6));
  opacity: 0.85;
  user-select: none;
}

/* ── Section: Ingredients Story ── */
#ingredients-section {
  padding: var(--space-3xl) 0;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--black) 0%, var(--charcoal) 100%);
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-xl);
}
.ingredient-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--border-radius-md);
  padding: 2rem 1.5rem;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-spring);
  position: relative;
  overflow: hidden;
  height: 200px;
  display: flex;
  align-items: flex-end;
}
.ingredient-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 0;
}
.ingredient-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.2) 100%);
  z-index: 1;
}
.ingredient-content {
  position: relative;
  z-index: 2;
}
.ingredient-card:hover .ingredient-bg { transform: scale(1.1); }
.ingredient-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(201,168,76,0.15);
}
.ingredient-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.ingredient-origin { font-size: 0.8rem; color: var(--gold); }

/* ── Section: Chef's Special ── */
#chefs-special {
  padding: var(--space-3xl) 0;
  background: var(--black);
  overflow: hidden;
}
.chefs-special-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1.5rem 0;
}
.chefs-special-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}
.chefs-special-slide {
  width: 100%;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.chefs-dish-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chefs-dish-glow {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, transparent 70%);
  animation: goldPulse 4s ease-in-out infinite;
}
.chefs-dish-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  position: relative;
  z-index: 1;
  transition: transform var(--transition-slow);
}
.chefs-dish-wrap:hover .chefs-dish-img { transform: scale(1.03) translateY(-8px); }
.chefs-dish-badge {
  position: absolute;
  top: -1rem; right: -1rem;
  background: var(--gold);
  color: var(--black);
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.2;
  z-index: 2;
  animation: goldPulse 3s ease-in-out infinite;
}

.chefs-info { max-width: 500px; }
.chefs-price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  font-weight: 300;
  margin: 1rem 0;
}
.chefs-ingredients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.ingr-tag {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--cream);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
}

/* Carousel Dots */
.chefs-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3.5rem;
}
.chefs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.chefs-dot:hover {
  background: rgba(201, 168, 76, 0.6);
}
.chefs-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
  box-shadow: 0 0 10px var(--gold-glow);
}

/* ── Section: Experience Cards ── */
#experience {
  padding: var(--space-3xl) 0;
  background: var(--charcoal);
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-xl);
}
.experience-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.experience-card:hover {
  transform: translateY(-10px) rotateY(-4deg);
  box-shadow: 30px 30px 60px rgba(0,0,0,0.5);
}
.experience-card:first-child { grid-row: span 2; height: auto; min-height: 500px; }
.experience-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  filter: brightness(0.7);
}
.experience-card:hover .experience-card-bg { transform: scale(1.08); }
.experience-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.1) 60%);
}
.experience-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
}
.experience-card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  display: block;
}
.experience-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.experience-card-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ── Section: Menu Preview ── */
#menu-preview {
  padding: var(--space-3xl) 0;
  background: var(--black);
}
.menu-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 2.5rem 0;
  padding-bottom: 0.25rem;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  flex-shrink: 0;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
  transition: all var(--transition-fast);
  cursor: pointer;
}
.menu-tab:hover { border-color: var(--gold); color: var(--gold); }
.menu-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.food-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 0.5rem;
}
.food-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
}
.food-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), var(--shadow-gold-sm);
}
.food-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--charcoal-3);
}
.food-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.food-card:hover .food-img img { transform: scale(1.1); }
.food-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--charcoal-3), var(--charcoal-4));
}
.food-card-body { padding: 1.25rem; }
.food-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.food-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.3;
}
.food-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}
.food-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.food-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.food-add-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all var(--transition-spring);
}
.food-add-btn:hover { background: var(--gold-light); transform: scale(1.15) rotate(90deg); }

/* ── Section: Why Choose Us ── */
#why-us {
  padding: var(--space-3xl) 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
#why-us::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: var(--space-xl);
}
.why-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--charcoal-2);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-base);
  cursor: default;
}
.why-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}
.why-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  transition: all var(--transition-base);
}
.why-card:hover .why-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}
.why-icon svg { width: 30px; height: 30px; fill: var(--gold); transition: fill var(--transition-fast); }
.why-card:hover .why-icon svg { fill: var(--black); }
.why-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.why-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.why-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }

/* ── Section: Reviews ── */
#reviews {
  padding: var(--space-3xl) 0;
  background: var(--black);
  overflow: hidden;
}
.reviews-carousel { overflow: hidden; margin-top: var(--space-xl); position: relative; }
.reviews-carousel::before,
.reviews-carousel::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.reviews-carousel::before { left: 0; background: linear-gradient(to right, var(--black), transparent); }
.reviews-carousel::after  { right: 0; background: linear-gradient(to left, var(--black), transparent); }
.reviews-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}
.review-card {
  width: 340px;
  flex-shrink: 0;
  background: var(--charcoal-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  position: relative;
  transition: border-color var(--transition-fast);
  backdrop-filter: blur(10px);
}
.review-card:hover { border-color: rgba(201,168,76,0.2); }
.review-quote {
  font-size: 3.5rem;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 0.6;
  margin-bottom: 1rem;
  opacity: 0.4;
}
.review-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--burgundy));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  flex-shrink: 0;
}
.review-name { font-size: 0.9rem; font-weight: 600; color: var(--cream); }
.review-meta { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }
.review-stars { display: flex; gap: 2px; color: var(--gold); font-size: 0.75rem; }

/* ── Section: Gallery ── */
#gallery-preview {
  padding: var(--space-3xl) 0;
  background: var(--charcoal);
}
.gallery-grid {
  columns: 3;
  column-gap: 1rem;
  margin-top: var(--space-xl);
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.85);
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg { width: 36px; height: 36px; fill: white; }

/* ── Section: Offers ── */
#offers {
  padding: var(--space-3xl) 0;
  background: var(--black);
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-xl);
}
.offer-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-base);
}
.offer-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 40px rgba(201,168,76,0.12);
}
.offer-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base);
}
.offer-card:hover .offer-card-bg { opacity: 0.25; transform: scale(1.08) rotate(2deg); }
.offer-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.offer-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.offer-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.offer-discount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}

/* ── Section: CTA ── */
#cta-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 50%, var(--charcoal) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 70%);
}
#cta-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cta-title .accent { color: var(--gold); font-style: italic; }
.cta-desc {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .chefs-special-slide { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .chefs-info { max-width: 100%; }
  .chefs-dish-wrap { justify-content: center; }
  .food-grid { grid-template-columns: repeat(3, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .experience-card:first-child { grid-column: span 2; }
  .offers-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .food-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 2; }
  .offers-grid { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card:first-child { grid-column: span 1; }
}
@media (max-width: 480px) {
  .food-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .hero-actions { flex-direction: column; align-items: center; }
}
