/* ===== Shared styles for the individual dish pages ===== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', sans-serif;
  background-color: #faf6f0;
  color: #160c07;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #160c07;
}

::-webkit-scrollbar-thumb {
  background: #c2a278;
  border-radius: 3px;
}

/* ===== NAVBAR ===== */
.nav-glass {
  background: rgba(22, 12, 7, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(194, 162, 120, 0.18);
}

.nav-glass.scrolled {
  background: rgba(14, 8, 4, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-link {
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c2a278, transparent);
  border-radius: 1px;
}

/* ===== SHARED DECOR ===== */
.geo-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(194, 162, 120, 0.03) 30px, rgba(194, 162, 120, 0.03) 31px),
    repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(194, 162, 120, 0.03) 30px, rgba(194, 162, 120, 0.03) 31px);
}

.text-gold-gradient {
  background: linear-gradient(135deg, #d4b896 0%, #c2a278 40%, #a07850 70%, #c2a278 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.wing-deco {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wing-deco::before,
.wing-deco::after {
  content: '⁕';
  color: #c2a278;
  font-size: 1.1rem;
  opacity: 0.8;
}

/* ===== DISH HERO ===== */
.dish-hero {
  background: radial-gradient(ellipse at 65% 45%, #2a1208 0%, #160c07 45%, #0e0804 100%);
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(194, 162, 120, 0.3);
  background: rgba(194, 162, 120, 0.06);
  color: rgba(212, 184, 150, 0.9);
  font-size: 0.75rem;
  white-space: nowrap;
}

.meta-chip i {
  color: #c2a278;
  font-size: 0.7rem;
}

/* ===== VIDEO ===== */
.play-btn {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.play-btn:hover,
.play-btn:focus-visible {
  transform: scale(1.12);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
  outline: none;
}

.play-btn::before {
  content: '';
  position: absolute;
  width: 90px;
  height: 90px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(194, 162, 120, 0.4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(194, 162, 120, 0);
  }
}

/* Video-not-filmed-yet state */
.video-soon {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: rgba(14, 8, 4, 0.55);
  backdrop-filter: blur(2px);
}

.video-soon .icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(194, 162, 120, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4b896;
  font-size: 1.3rem;
}

.video-soon .label {
  font-family: 'Reem Kufi', sans-serif;
  color: #d4b896;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  padding: 6px 20px;
  border-top: 1px solid rgba(194, 162, 120, 0.45);
  border-bottom: 1px solid rgba(194, 162, 120, 0.45);
}

.video-soon .note {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}

/* ===== INGREDIENTS ===== */
.ingredient-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(194, 162, 120, 0.12);
  font-size: 0.85rem;
  color: #4a3020;
}

.ingredient-row:last-child {
  border-bottom: none;
}

.ingredient-row::before {
  content: '◆';
  color: #c2a278;
  font-size: 0.5rem;
  flex-shrink: 0;
}

/* ===== METHOD STEPS ===== */
.steps {
  list-style: none;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 52px 26px 0;
  border-right: 1px solid rgba(194, 162, 120, 0.25);
  margin-right: 18px;
}

.steps li:last-child {
  border-right-color: transparent;
  padding-bottom: 0;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  right: -18px;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6b1e18, #531611);
  color: #f2ead8;
  font-family: 'Reem Kufi', sans-serif;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(83, 22, 17, 0.28);
}

.steps h3 {
  font-weight: 700;
  color: #160c07;
  font-size: 0.95rem;
  margin-bottom: 6px;
  padding-top: 7px;
}

.steps p {
  color: rgba(22, 12, 7, 0.6);
  font-size: 0.85rem;
  line-height: 1.8;
}

/* ===== OTHER DISHES ===== */
.other-dish {
  position: relative;
  display: block;
  height: 130px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(194, 162, 120, 0.2);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.other-dish:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(22, 12, 7, 0.2);
}

.other-dish img {
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.other-dish:hover img {
  transform: scale(1.08);
}

.other-dish span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  background: linear-gradient(to top, rgba(14, 8, 4, 0.85), transparent 70%);
  color: #faf6f0;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ===== BUTTONS ===== */
.btn-burgundy {
  background: linear-gradient(135deg, #6b1e18, #531611, #3d0f0b);
  border: 1px solid rgba(194, 162, 120, 0.2);
  color: #faf6f0;
  transition: all 0.3s ease;
}

.btn-burgundy:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(83, 22, 17, 0.5);
  border-color: rgba(194, 162, 120, 0.4);
}

.btn-cream {
  background: #faf6f0;
  color: #160c07;
  transition: all 0.3s ease;
}

.btn-cream:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer-link {
  color: rgba(194, 162, 120, 0.7);
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-link:hover {
  color: #c2a278;
}

.social-circle {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(194, 162, 120, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c2a278;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.social-circle:hover {
  background: rgba(194, 162, 120, 0.15);
  border-color: #c2a278;
  transform: translateY(-3px);
}
