@font-face {
  font-family: 'Poppins';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/poppins-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/poppins-600.woff2') format('woff2');
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  min-height: 100vh;
}

body {
  background-color: #022d80;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
}

a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== Hero: cat image + title + contacts, all on the same gradient ===== */
.hero {
  background: radial-gradient(circle at center 33%, #64b3ec 0%, #2e5ebb 35%, #022d80 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 40px 60px;
  text-align: center;
}

.hero__logo {
  width: 202px;
  height: 300px;
  object-fit: contain;
  margin-bottom: 24px;
}

.hero__title {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* ===== Contact block (inside hero) ===== */
.hero__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 20px;
  font-weight: 400;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.contact-icon {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  flex-shrink: 0;
}

/* ===== Footer: on dark navy body background ===== */
.footer {
  background: transparent;
  padding: 20px 40px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== Entrance animation (desktop only) ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (min-width: 641px) {
  .hero__logo {
    animation: fadeInUp 0.8s ease-out both;
  }
  .hero__title {
    animation: fadeInUp 0.8s ease-out both;
  }
}

/* ===== Small screens (≤640px) ===== */
@media (max-width: 640px) {
  .hero {
    padding: 40px 20px 50px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__contact {
    font-size: 17px;
  }

  .footer {
    text-align: center;
    font-size: 11px;
  }
}
