/* ============================================
   ÁMBAR KEBAB — Página Inicio
   ============================================ */

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__poster {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
  .hero__poster { display: block; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(13, 13, 13, 0.75) 60%,
    rgba(13, 13, 13, 1) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: var(--space-3xl) var(--container-padding) var(--space-2xl);
}

.hero__badge {
  display: inline-block;
  margin-bottom: var(--space-md);
}

.hero__badge img {
  height: 32px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 2px 8px rgba(212, 168, 67, 0.4));
}

.hero__title {
  margin-bottom: var(--space-md);
  font-weight: var(--fw-bold);
}

.hero__subtitle {
  font-size: var(--fs-body-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xs);
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
}

.hero__words {
  font-size: var(--fs-h3);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  min-height: 1.5em;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════
   WELCOME / ABOUT PREVIEW
   ══════════════════════════════════════════════ */

.welcome {
  background: var(--color-bg-primary);
}

.welcome__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.welcome__text {
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.welcome__image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-subtle);
}

/* ══════════════════════════════════════════════
   SPECIALTIES
   ══════════════════════════════════════════════ */

.specialties {
  background: var(--color-bg-secondary);
}

.specialties__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.specialties__footer {
  text-align: center;
  margin-top: var(--space-xl);
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

.specialties__footer-text {
  font-size: var(--fs-body-lg);
  color: var(--color-text-secondary);
  font-style: italic;
}

/* ══════════════════════════════════════════════
   DELIVERY
   ══════════════════════════════════════════════ */

.delivery {
  position: relative;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.delivery__bg-image {
  position: absolute;
  right: -80px;
  bottom: -40px;
  width: 380px;
  opacity: 0.08;
  pointer-events: none;
}

.delivery__header {
  margin-bottom: var(--space-xl);
}

.delivery__cards {
  position: relative;
  z-index: 2;
}

.delivery .info-card {
  text-align: center;
}

.delivery__schedule-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 2;
}

.delivery__schedule-card svg {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: var(--color-accent);
}

.delivery__schedule-card p {
  font-size: var(--fs-body);
  color: var(--color-text-primary);
  margin: 0;
}

.delivery__schedule-card .highlight {
  color: var(--color-accent);
  font-weight: var(--fw-semibold);
}

@media (max-width: 640px) {
  .delivery__schedule-card {
    flex-direction: column;
    text-align: center;
    padding: var(--space-md);
  }
}

.delivery__cta {
  text-align: center;
  margin-top: var(--space-xl);
  position: relative;
  z-index: 2;
}

@media (min-width: 769px) {
  .delivery__bg-image {
    width: 500px;
    right: -60px;
    bottom: -60px;
    opacity: 0.06;
  }
}

/* ══════════════════════════════════════════════
   LOCATION / SCHEDULE
   ══════════════════════════════════════════════ */

.location {
  background: var(--color-bg-secondary);
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.location__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: var(--color-accent-subtle);
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  padding: 0.5em 1.2em;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  width: fit-content;
}

.location__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.location__detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-subtle);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
}

.location__detail-icon svg {
  width: 22px;
  height: 22px;
}

.location__detail-label {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body);
  color: var(--color-text-primary);
  margin-bottom: 0.15em;
}

.location__detail-value {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   SOCIAL SECTION
   ══════════════════════════════════════════════ */

.social-section {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.social-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.social-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.85),
    rgba(13, 13, 13, 0.92)
  );
}

.social-section__content {
  position: relative;
  z-index: 2;
}

.social-section .social-icons {
  justify-content: center;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.social-section__desc {
  max-width: 55ch;
  margin: 0 auto;
  color: var(--color-text-secondary);
}
