* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
.image-banner {
  width: 95%;
  max-width: 9000px;
  height: 290px;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* prevents stretching */
  display: block;
}
.berry-gif {
  display: flex;
  justify-content: center;
  margin: 20px 0 20px;
}

.berry-gif img {
  width: 820px;        /* controls size */
  height: auto;
}
body {
  margin: 0;
  background: #fff5f8;
}

header {
  text-align: center;
  padding: 20px;
}

.section-title {
  margin-left: 25px;
  color: #ff6f91;
}

/* Cards */
.card-container {
  display: flex;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.bottom-gif {
  display: flex;
  justify-content: center;
  margin: 20px 0 20px;
}

.bottom-gif img {
  width: 820px;        /* controls size */
  height: auto;
}

.fish-gif {
  display: flex;
  justify-content: center;
  margin: 20px 0 20px;
}

.fish-gif img {
  width: 100px;        /* controls size */
  height: auto;
}

@keyframes fadeIn {
  from {
    
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    
  }
  
}
.card {
 animation: fadeIn 0.6s ease forwards;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
  width: 180px;
  border-radius: 20px;
  text-decoration: none;
  color: #444;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* FIXED IMAGE SIZE */
.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  
}

.card h2 {
  padding: 12px;
}

/* Unhealthy Highlight */
.unhealthy {
  background: #fff0f0;
}

/* Info Page */
.info-card {
  max-width: 400px;
  margin: 40px auto;
  background: white;
  padding: 25px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.info-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
}

ul {
  list-style: none;
  padding: 0;
}

.back-btn {
  display: inline-block;
  margin-top: 15px;
  background: #ff6f91;
  color: white;
  padding: 10px 18px;
  border-radius: 20px;
  text-decoration: none;
}
