@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ================================================================
   footer.css — Blue Ocean Tours
   Footer premium zen con parallax + animaciones escalonadas
   ================================================================ */

/* ── FOOTER BASE ── */
.zen-footer {
  position: relative;
  background: #1A1208;
  overflow: hidden;
  padding: 0;
}

/* ── FONDO PARALLAX ── */
.zen-footer__bg {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(196,154,90,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 80%, rgba(196,154,90,0.05) 0%, transparent 50%),
    linear-gradient(160deg, #1A1208 0%, #0E0A04 50%, #1A1208 100%);
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ── TEXTO GRANDE DE FONDO ── */
.zen-footer__bg-text {
  position: absolute;
  bottom: -0.15em;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(196,154,90,0.035);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  will-change: transform;
  user-select: none;
}

/* ── INNER GRID ── */
.zen-footer__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 4rem;
  max-width: 1340px;
  margin: 0 auto;
  padding: 5rem 5% 4rem;

  /* reveal inicial — JS lo anima */
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}

.zen-footer__inner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .zen-footer__inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 600px) {
  .zen-footer__inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 5% 3rem; }
}

/* ── COLUMNAS — animación escalonada ── */
.zen-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(28px);
}

.zen-footer__col.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* delays escalonados */
.zen-footer__col[data-footer-col="0"] { transition: opacity 0.7s 0.05s ease-out, transform 0.7s 0.05s ease-out; }
.zen-footer__col[data-footer-col="1"] { transition: opacity 0.7s 0.15s ease-out, transform 0.7s 0.15s ease-out; }
.zen-footer__col[data-footer-col="2"] { transition: opacity 0.7s 0.25s ease-out, transform 0.7s 0.25s ease-out; }
.zen-footer__col[data-footer-col="3"] { transition: opacity 0.7s 0.35s ease-out, transform 0.7s 0.35s ease-out; }

/* ── BRAND ── */
.zen-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.zen-footer__logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  opacity: 0.9;
}

.zen-footer__brand-name {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  line-height: 1.1;
  color: #F5EFE4;
}

.zen-footer__desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(245,239,228,0.38);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 280px;
}

/* ── REDES SOCIALES ── */
.zen-footer__socials {
  display: flex;
  gap: 10px;
}

.zen-footer__social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(196,154,90,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(196,154,90,0.6);
  transition: all 0.25s ease;
}

.zen-footer__social svg { width: 14px; height: 14px; }

.zen-footer__social:hover {
  background: rgba(196,154,90,0.12);
  border-color: rgba(196,154,90,0.5);
  color: #D4AD6E;
  transform: translateY(-3px);
}

/* ── TÍTULOS DE COLUMNA ── */
.zen-footer__col-title {
  font-family: 'Jost', sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(196,154,90,0.7);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.zen-footer__col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(196,154,90,0.5), transparent);
}

/* ── LINKS ── */
.zen-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.zen-footer__links li a {
  font-family: 'Jost', sans-serif;
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(245,239,228,0.38);
  display: block;
  padding: 5px 0;
  transition: color 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.02em;
}

.zen-footer__links li a:hover {
  color: rgba(245,239,228,0.85);
  transform: translateX(4px);
}

/* ── CONTACTO ── */
.zen-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.zen-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(245,239,228,0.38);
  line-height: 1.55;
}

.zen-footer__contact-list li svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: rgba(196,154,90,0.5);
  margin-top: 2px;
}

.zen-footer__contact-list a {
  color: rgba(245,239,228,0.5);
  transition: color 0.2s ease;
}
.zen-footer__contact-list a:hover { color: #D4AD6E; }

.zen-footer__hours { color: rgba(245,239,228,0.28) !important; }

/* ── AGENCIAS ── */
.zen-footer__agency-text {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(245,239,228,0.35);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.zen-footer__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-decoration: none;
  transition: all 0.22s ease;
  margin-bottom: 10px;
  width: fit-content;
}

.zen-footer__btn--gold {
  background: #C49A5A;
  color: #1A1208;
  box-shadow: 0 4px 18px rgba(196,154,90,0.28);
}
.zen-footer__btn--gold:hover {
  background: #D4AD6E;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,154,90,0.42);
}

.zen-footer__btn--ghost {
  background: transparent;
  color: rgba(245,239,228,0.5);
  border: 1px solid rgba(245,239,228,0.12);
}
.zen-footer__btn--ghost:hover {
  border-color: rgba(196,154,90,0.4);
  color: #D4AD6E;
  transform: translateY(-2px);
}

.zen-footer__nit {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 1rem;
}
.zen-footer__nit span {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(245,239,228,0.2);
  letter-spacing: 0.08em;
}

/* ── BOTTOM BAR ── */
.zen-footer__bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(196,154,90,0.03);
  padding: 1.5rem 5%;
}

.zen-footer__bottom-inner {
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.zen-footer__copy {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(245,239,228,0.18);
  letter-spacing: 0.04em;
}

.zen-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.zen-footer__bottom-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(245,239,228,0.18);
  transition: color 0.2s ease;
}
.zen-footer__bottom-links a:hover { color: rgba(196,154,90,0.65); }
.zen-footer__bottom-links span { color: rgba(245,239,228,0.08); font-size: 0.6rem; }

/* ── LIGHT LAYER (efecto hover) ── */
.footer-light-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  transition: background 0.3s ease;
}

/* ── KEYFRAMES FOOTER ── */
@keyframes waveFooter {
  0%   { transform: translateX(0); }
  100% { transform: translateX(50%); }
}
