/* style.css - Original layout, baby blue accents, toned down, cats side by side */

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #1a1f3a; /* softer, darker blue-gray */
  color: #e5e7eb;
  margin: 0;
  padding: 40px 20px; 
  box-sizing: border-box;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #0f1325; /* darker, less contrast */
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  animation: fadeUp 0.6s ease-out;
  display: flex;
  flex-direction: column;
  height: 100%; 
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .profile-box {
      grid-row: span 2; 
  }
}

.status-bar {
  display: block;
  width: fit-content;
  margin: 0 auto 8px auto;
  padding: 6px 14px;
  border-radius: 16px;
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid #1e293b;
  color: #8ecaff;
  text-align: center;
  font-size: 0.9rem;
  font-weight: bold;
}

h1 {
  margin-top: 0;
  font-size: 2rem;
  text-align: center;
}

h2 {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  border-bottom: 1px solid #2a2f4f; /* softer border */
  padding-bottom: 6px;
  color: #cfd8f1; /* lighter heading text */
  text-transform: uppercase;
  letter-spacing: 1px;
}

p {
  line-height: 1.6;
  color: #e5e7eb;
}

.person {
  background: #121634;
  border-left: 4px solid #8ecaff;
  padding: 12px 14px;
  border-radius: 6px;
  margin-top: 10px;
}

.personal-box .person:nth-of-type(2) strong {
  color: #ffffff;
}

.footer {
  margin-top: auto;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #cfd8f1;
  text-align: center;
}

.pfp-top {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #2a2f4f;
  display: block;
  margin: 0 auto 16px auto;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.pfp-top:hover {
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
  transform: scale(1.03);
}

/* ---------- Cats Section (side by side preserved) ---------- */
.cats {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  justify-content: center;
}

.cat {
  text-align: center;
  margin: 0;
  animation: fadeUp 0.5s ease-out;
}

.cat img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #2a2f4f;
  box-shadow: 0 3px 5px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: all 0.25s ease;
}

.cat img:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(88, 101, 242, 0.25);
  border-color: #8ecaff;
}

.cat img:active {
  transform: scale(0.95);
}

.cat figcaption {
  margin-top: 5px;
  font-size: 0.85rem;
  color: #e5e7eb;
}

.pet-count {
  font-size: 0.8rem;
  color: #8ecaff;
  font-weight: bold;
  margin-top: 2px;
}

.music-widget {
  display: block;
  text-align: center;
  background: rgba(30, 41, 59, 0.3);
  color: #8ecaff;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 16px;
  margin: 0 auto 18px auto; 
  width: fit-content;
  border: 1px solid #1e293b;
  transition: color 0.2s, border-color 0.2s;
}

.music-widget:hover {
  color: #8ecaff;
  border-color: #8ecaff;
}

.blog-post {
  background: #121634;
  border-left: 3px solid #8ecaff;
  padding: 12px 14px;
  border-radius: 0 6px 6px 0;
  margin-top: 12px;
}

.blog-date {
  font-size: 0.75rem;
  color: #8ecaff;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.blog-content {
  color: #e5e7eb;
  font-size: 0.95rem;
}

.floating-heart {
  position: absolute;
  font-size: 1.5rem;
  pointer-events: none;
  animation: floatUp 0.8s ease-out forwards;
  z-index: 1000;
}

@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(-50px) scale(1.5); opacity: 0; }
}