/* ==========================================================
   Bravo Zulu – Hero institucional + Footer para PaperMod
   ========================================================== */

/* --- Reset de márgenes superiores --- */
body.home #content {
  margin-top: 0 !important;
}

/* === BLOQUE PRINCIPAL DEL HERO === */
body.home main,
body.home .main.home,
body.home .home-info-wrapper {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
              url("/images/og-banner.jpg") center/cover no-repeat !important;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #f0f0f0;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 2rem;
  animation: heroFadeIn 1.6s ease-in-out both;
}

/* Superposición oscura */
body.home main::before,
body.home .main.home::before,
body.home .home-info-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

/* Elementos del hero encima de la superposición */
body.home main *,
body.home .main.home *,
body.home .home-info-wrapper * {
  position: relative;
  z-index: 1;
}

/* === TEXTO DEL HERO === */
body.home main h1,
body.home .home-info-wrapper h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

body.home main p,
body.home .home-info-wrapper p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  color: #e8e8e8;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

/* --- Animación de entrada --- */
@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ==========================================================
   FOOTER INSTITUCIONAL BRAVO ZULU
   ========================================================== */

footer {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  color: var(--secondary);
}

footer a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover,
footer a:focus {
  color: var(--primary);
  text-decoration: underline;
}

/* ==== Íconos Sociales ==== */
.social-footer {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 0.8rem;
}

.social-footer a svg {
  width: 22px;
  height: 22px;
  opacity: 0.85;
  color: #1a4d8f; /* Azul institucional Bravo Zulu */
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.3s ease;
}

.social-footer a:hover svg,
.social-footer a:focus svg {
  opacity: 1;
  transform: scale(1.15);
  color: #2e6ac7;
}

/* Modo oscuro */
[data-theme="dark"] .social-footer a svg {
  color: #b0c7ff;
}

/* Texto inferior del footer */
.footer-meta {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* === FIX: Doble espacio superior en home === */
body.home main,
body.home .first-entry.home-info {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
