 /* Base pink pastel background */
body.bg-light {
  background: #ffd9e8; /* soft pastel pink */
  font-family: 'Quicksand', sans-serif;
  color: #880e4f; /* deep pink text */
}

/* Header with gradient pink and subtle sparkle */
header.bg-pink {
  background: linear-gradient(135deg, #ff7eb9, #ff65a3, #ff4e8b);
  position: relative;
  overflow: hidden;
  font-family: 'Cherry Cream Soda', cursive;
  text-shadow: 0 0 8px #ffa6c9;
}

/* Glitter sparkle animation */
@keyframes glitter {
  0%, 100% { opacity: 0; transform: translateY(0) rotate(0deg); }
  50% { opacity: 1; transform: translateY(-10px) rotate(15deg); }
}

.glow {
  position: relative;
  box-shadow:
    0 0 5px #ff9ccc,
    0 0 10px #ff4e8b,
    0 0 15px #ff65a3;
  transition: box-shadow 0.3s ease-in-out;
}

.glow::before {
  content: '✨';
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  opacity: 0;
  animation: glitter 2.5s infinite;
  pointer-events: none;
  color: #ffe3f1;
  text-shadow: 0 0 6px #ffb6d5;
}

.hover-rotate:hover {
  transform: rotate(5deg) scale(1.05);
  box-shadow:
    0 0 20px #ff8fcf,
    0 0 30px #ff60b3,
    0 0 40px #ff3f9d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Card border pink */
.border-pink {
  border: 3px solid #ff4e8b;
  border-radius: 15px;
  background: #fff0f6;
}

/* Card images with rounded corners and subtle shadow */
.card-img-top {
  border-radius: 12px 12px 0 0;
  box-shadow: 0 0 10px #ff9ccc;
}

/* Footer pink gradient background */
footer.bg-gradient {
  background: #4b0d2b; /* very dark magenta/purple-pink */
  color: #f8cde6;      /* pale pink for nice contrast */
  font-family: 'Quicksand', sans-serif;
  letter-spacing: 0.05em;
  text-shadow: none;
  padding: 1.5rem 0;
}


/* Footer social icon hover effect */
footer a {
  color: #ffd0e7;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fff;
  text-shadow: 0 0 8px #ff65a3, 0 0 15px #ff4e8b;
  transform: scale(1.1);
}

/* Pink button hover in nav */
.w3-bar .w3-button.w3-pink {
  background-color: #ff4e8b !important;
  color: #fff !important;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.w3-bar .w3-button.w3-pink:hover,
.w3-bar .w3-button.w3-pink.w3-hover-deep-purple:hover {
  background-color: #ff65a3 !important;
  color: #fff !important;
  text-shadow: 0 0 6px #ff9ccc;
}

/* Dropdown content styling */
.w3-dropdown-content {
  background: #ff9ccc;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(255, 110, 158, 0.7);
}

/* Cute sparkle on links inside dropdown on hover */
.w3-dropdown-content a:hover {
  background: #ff65a3;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 10px #ff4e8b;
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* Kawaii cursor for interactive items */
.hover-rotate:hover,
.w3-bar .w3-button:hover,
footer a:hover {
  cursor: url('https://cdn.jsdelivr.net/gh/google/material-design-icons@master/font/filled/arrow_cursor.svg'), pointer;
}

/* Optional: Add sparkle animation on the header text */
header h1.display-4::after {
  content: ' ✨';
  animation: glitter 3s infinite;
  color: #ffe3f1;
  text-shadow: 0 0 10px #ffb6d5;
}

.card-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  color: #d6336c; /* nice pink */
  text-shadow: 0 0 5px #ff9ccc;
}
