/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--black);
  background-size: cover;
  background-position: center center;
  padding-top: var(--nav-h);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.72);
  z-index: 1;
}

.hero__bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(6rem, 20vw, 18rem);
  letter-spacing: 0.02em;
  color: rgba(212, 160, 23, 0.06);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 2;
}

.hero__skull {
  position: absolute;
  inset: 0;
  background-image: url('../public/Images/smallmexicanskulls.png');
  background-repeat: repeat;
  background-size: 280px auto;
  opacity: 0.12;
  z-index: 2;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
  padding: 5rem 0;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__title {
  font-size: clamp(3.2rem, 7vw, 6rem);
  color: var(--white);
  line-height: 1.0;
}

.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.8);
  max-width: 420px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0d0d0d;
  background-color: #25d366;
  padding: 0.85rem 1.7rem;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.hero__wa:hover {
  background-color: #1fc15d;
  color: #0d0d0d;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.hero__wa i {
  font-size: 1.25rem;
  color: #0d0d0d;
}

/* Circular truck frame */
.hero__image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__frame {
  position: relative;
  width: clamp(280px, 38vw, 480px);
  height: clamp(280px, 38vw, 480px);
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 10px rgba(212, 160, 23, 0.08), 0 0 50px rgba(212, 160, 23, 0.18);
  overflow: hidden;
  animation: float 5s ease-in-out infinite;
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* ── Photo strip ── */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 260px;
  overflow: hidden;
}

.strip__item {
  overflow: hidden;
  position: relative;
}

.strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  filter: brightness(0.8);
}

.strip__item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

/* ── Why section ── */
.why {
  padding: 6rem 0;
  background-color: var(--dark);
}

.why__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.why__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
}

.why__title em {
  font-style: normal;
  color: var(--gold);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why__card {
  background-color: var(--card-bg);
  border: 1px solid rgba(212, 160, 23, 0.1);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.why__card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 160, 23, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.why__icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.why__card-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.why__card-text {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.65;
}

/* ── Menu Teaser ── */
.teaser {
  padding: 6rem 0;
  background-color: var(--black);
}

.teaser__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.teaser__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
}

.teaser__title em {
  font-style: normal;
  color: var(--gold);
}

.teaser__sub {
  font-size: 0.95rem;
  color: var(--grey);
  margin-top: 0.75rem;
}

.teaser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.teaser__card {
  background-color: var(--card-bg);
  border: 1px solid rgba(212, 160, 23, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.teaser__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.teaser__img {
  height: 200px;
  overflow: hidden;
}

.teaser__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.teaser__card:hover .teaser__img img {
  transform: scale(1.06);
}

.teaser__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.teaser__drink-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.teaser__drink-desc {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.55;
}

.teaser__cta {
  text-align: center;
}

/* ── Events strip ── */
.events {
  padding: 6rem 0;
  background-color: var(--dark);
}

.events__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.events__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
}

.events__title em {
  font-style: normal;
  color: var(--gold);
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.events__card {
  background-color: var(--card-bg);
  border: 1px solid rgba(212, 160, 23, 0.1);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform var(--transition), border-color var(--transition);
}

.events__card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 160, 23, 0.3);
}

.events__icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.events__card-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

.events__card-text {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.6;
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--dark-2) 0%, rgba(212, 160, 23, 0.07) 100%);
  text-align: center;
  border-top: 1px solid rgba(212, 160, 23, 0.12);
  border-bottom: 1px solid rgba(212, 160, 23, 0.12);
}

.cta-banner__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner__title em {
  font-style: normal;
  color: var(--gold);
}

.cta-banner__sub {
  font-size: 1rem;
  color: var(--grey);
  margin-bottom: 2rem;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 860px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding: 4rem 0;
  }

  .hero__content {
    align-items: center;
  }

  .hero__wa {
    align-self: center;
  }

  .hero__sub {
    max-width: 100%;
  }

  .hero__image-wrap {
    order: -1;
  }

  .hero__frame {
    width: clamp(220px, 60vw, 340px);
    height: clamp(220px, 60vw, 340px);
  }

  .strip {
    grid-template-columns: repeat(2, 1fr);
    height: 340px;
  }

  .why__grid,
  .teaser__grid,
  .events__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .strip {
    grid-template-columns: repeat(2, 1fr);
    height: 240px;
  }

  .why__grid,
  .events__grid {
    grid-template-columns: 1fr;
  }

  .teaser__grid {
    grid-template-columns: 1fr;
  }
}
