/* =========================================================
   Experience Ecuador – Shared Footer Styles
   Source: Approved Mission page footer
   ========================================================= */

.footer{
  background: var(--brand-blue, #034EA2);
  color: #ffffff;
  margin-top: 30px;
}

.footer-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-tagline{
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 16px;
  opacity: 0.98;
}

/* ===== Social icons ===== */

.social{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.icon-btn{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand-blue, #034EA2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.icon-btn img{
  width: 34px;
  height: 34px;
}

/* ===== Footer copyright ===== */

.footer small{
  font-size: 13px;
  opacity: 0.9;
}

/* ===== Mobile refinements ===== */

@media (max-width: 600px){
  .icon-btn{
    width: 56px;
    height: 56px;
  }

  .icon-btn img{
    width: 30px;
    height: 30px;
  }
}
