/* RESET & CONTENITORE PRINCIPALE */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

body {
  background-color: #f4f8fa;
  font-family: 'Georgia', serif;
  margin: 0 auto;
  max-width: 1200px;
}

/* HOME CONTAINER */
.home-container {
  max-width: 900px;
  margin: 40px auto 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(20,30,60,0.08);
  border: 2px solid #e1e6ec;
  padding: 2rem 2.5rem 3rem;
}

/* TITOLI E INTRO */
.home-title {
  text-align: center;
  color: #264159;
  margin-bottom: .5rem;
  letter-spacing: 1px;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  white-space: nowrap;
}

.home-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #3b5678;
  margin-bottom: 1.7rem;
  font-style: italic;
}

.home-intro {
  max-width: 640px;
  margin: 18px auto 35px;
  font-size: 1.05rem;
  color: #234;
  line-height: 1.6;
  text-align: center;
  border-radius: 10px;
  background: #edf2f6;
  padding: 1rem 1.5rem;
  border: 1.5px solid #d9e2ef;
}

/* CARD ANIMALI */
.animal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  margin: 2.5rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.animal-links li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.animal-card {
  width: 300px;
  height: 330px;
  background: #f8fbfd;
  border: 2.5px solid #b5c1d1;
  border-radius: 22px;
  padding: 2.3rem 1.3rem 1.3rem;
  box-shadow: 0 4px 18px rgba(40,60,120,0.11);
  text-align: center;
  transition: transform .16s, box-shadow .16s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none !important;
  border-bottom: 2.5px solid #b5c1d1 !important;
}

.animal-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 36px rgba(40,60,120,0.18);
  border-color: #6697c1;
}

.animal-card a {
  text-decoration: none !important;
  border-bottom: none !important;
}

/* IMMAGINI ANIMALI */
.animal-icon {
  width: 100%;
  max-width: 254px;
  aspect-ratio: 254/175;
  object-fit: cover;
  margin-bottom: 1.3em;
  border-radius: 24px;
  border: 2.2px solid #a9b8cd;
  background: #fff;
  display: block;
}

/* LABEL TESTO */
.animal-label {
  font-size: 1.5em;
  color: #295084;
  font-weight: 700;
  letter-spacing: .42px;
  text-align: center;
  line-height: 1.1;
  margin: 0.7em 0 0;
}

/* MEDIA QUERY RESPONSIVE */
@media (max-width: 900px) {
  .animal-links {
    gap: 1.3rem;
  }

  .animal-card {
    width: 96%;
    height: auto;
    padding: 1.2rem .5rem .7rem;
  }

  .animal-icon {
    width: 90%;
    max-width: 400px;
    aspect-ratio: 254/175;
  }

  .animal-label {
    font-size: 1.6em;
    margin-top: .6em;
  }
}

@media (max-width: 600px) {
  .animal-links {
    flex-direction: column;
    gap: 1.1rem;
    align-items: center;
  }

  .animal-card {
    width: 99%;
    min-height: 180px;
    height: auto;
    padding: .6rem .3rem;
  }

  .animal-icon {
    width: 94%;
    aspect-ratio: 254/175;
    margin-bottom: .8em;
  }

  .animal-label {
    font-size: 1.16em;
    margin-top: .4em;
  }
}
