/* Reset default spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and container setup */
body {
  font-family: 'Quicksand', sans-serif;
  background-color: #ffeef5;
  color: #4c3b4d;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: auto;
  background-color: #fff0f6;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  position: relative;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 30px;
}

h1 {
  font-size: 2.5rem;
  color: #d16ba5;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  color: #e8bcd1; /* Baby Pink */
  text-shadow: 1px 1px 3px rgba(150, 70, 105, 0.5); /* Slightly darker pink for text outline */
}

/* Cat Gallery */
.gallery {
  margin-bottom: 30px;
}

.gallery h2 {
  text-align: center;
  color: #c17da8;
  margin-bottom: 15px;
}

.cat-grid {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cat-item {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.cat-item:hover {
  transform: scale(1.1);
}

.cat-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.cat-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cat-item:hover .cat-full {
  opacity: 1;
}

.cat-item:hover .cat-thumbnail {
  opacity: 0;
}

/* About Section */
.about, .interests, .aesthetic-note {
  margin-bottom: 30px;
  position: relative;
}

/* Flower Styling */
.about::after,
.interests::after,
.aesthetic-note::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://cdn.pixabay.com/photo/2021/04/21/07/15/flower-6180781_1280.png') no-repeat center;
  background-size: 50px;
  opacity: 0.3;
  pointer-events: none;
}

.interests ul {
  list-style: none;
  padding-left: 0;
}

.interests li {
  background-color: #ffd6e0;
  margin: 8px 0;
  padding: 10px 15px;
  border-radius: 8px;
  position: relative;
  transition: background-color 0.3s ease;
}

.interests li:hover {
  background-color: #f7c7d4;
}

.interests li::before {
  content: "✨";
  margin-right: 8px;
}

.aesthetic-note {
  background-color: #fce4ec;
  padding: 20px;
  border-left: 5px solid #ec8aaa;
  font-style: italic;
  border-radius: 10px;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  margin-top: 20px;
}

footer a {
  color: #d16ba5;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
