/* ============================================================
   TRAACO — rest.css | Restaurant Page Specific Styles
   ============================================================ */

/* ── Included Cards ── */
.rest-included-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.rest-included-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.rest-included-card:hover {
  border-color: rgba(201,168,76,0.15);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.rest-included-card:hover::before {
  opacity: 1;
}
.rest-included-icon {
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.rest-included-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--traaco-offwhite);
}
.rest-included-desc {
  font-size: 0.8rem;
  color: var(--traaco-gray);
  line-height: 1.6;
}

/* ── Project Cards ── */
.rest-project-card {
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rest-project-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.rest-project-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.rest-project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.8);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.rest-project-card:hover .rest-project-img {
  transform: scale(1.05);
  filter: brightness(0.5) saturate(0.7);
}
.rest-project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.5) 0%, transparent 60%);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.rest-project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.rest-tag {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--traaco-dark);
  background: var(--traaco-gold);
  padding: 3px 10px;
  border-radius: 50px;
}
.rest-project-info {
  padding: 1.25rem 1.5rem 1.5rem;
}
.rest-project-type {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--traaco-gray);
  margin-bottom: 6px;
}
.rest-project-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--traaco-offwhite);
  margin-bottom: 8px;
}
.rest-project-desc {
  font-size: 0.8rem;
  color: var(--traaco-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.rest-project-link {
  font-size: 0.78rem;
  color: var(--traaco-gold);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: gap 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.rest-project-link:hover {
  gap: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Add-on Cards ── */
.addon-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  transition: all 0.4s ease;
}
.addon-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-3px);
  background: rgba(201,168,76,0.03);
}
.addon-icon { font-size: 1.4rem; }
.addon-name {
  font-size: 0.75rem;
  color: var(--traaco-gray);
  line-height: 1.3;
}
.addon-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--traaco-gold);
  font-family: 'Playfair Display', serif;
}

/* ── Process Steps ── */
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 18px;
  gap: 10px;
  position: relative;
  transition: all 0.4s ease;
}
.process-step:hover {
  border-color: rgba(201,168,76,0.15);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  transition: color 0.3s ease;
}
.process-step:hover .process-num {
  color: rgba(201,168,76,0.6);
}
.process-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--traaco-offwhite);
}
.process-desc {
  font-size: 0.78rem;
  color: var(--traaco-gray);
  line-height: 1.55;
}

/* ── Gallery Images for why section ── */
.rest-gallery-card {
  display: block;
}
.rest-gallery-img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Mobile Optimizations ── */
@media (max-width: 640px) {
  .rest-project-img-wrap { aspect-ratio: 4/3; }
  .rest-included-card { padding: 1.25rem; }
  .process-step { padding: 1.5rem 1rem; }
  .addon-card { padding: 1rem 0.75rem; }
  /* Serve grid on mobile — 2 col with last item centered */
  .serve-card.col-span-2 { grid-column: span 2; max-width: 160px; margin: 0 auto; }
}

/* gap-18 utility not in Tailwind CDN */
.gap-18 { gap: 4.5rem; }