@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Open+Sans&display=swap');

body {
  font-family: 'Open Sans', sans-serif;
  background: #fff6f8;
  color: #4a2c4a;
  margin: 0;
  padding: 2rem;
  line-height: 1.6;
}

.container {
  max-width: 700px;
  margin: 3rem auto;
  background: #fff;
  padding: 2.5rem 3rem;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(122, 62, 122, 0.15);
  transition: box-shadow 0.4s ease;
}

.container:hover {
  box-shadow: 0 20px 50px rgba(122, 62, 122, 0.25);
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #7a3e7a;
  margin-bottom: 1rem;
  letter-spacing: 1.5px;
}

p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0;
  margin-bottom: 3rem;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  font-weight: 600;
  color: #7a3e7a;
  transition: color 0.3s ease;
  font-size: 1.1rem;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
}

nav ul li a:hover,
nav ul li a.active {
  color: #d64ca3;
  background: #f9e8f1;
  box-shadow: 0 4px 12px rgba(214, 76, 163, 0.25);
}

button {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #d64ca3, #a0347a);
  border: none;
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(214, 76, 163, 0.4);
  transition: background 0.3s ease;
}

button:hover {
  background: linear-gradient(135deg, #a0347a, #d64ca3);
  box-shadow: 0 8px 25px rgba(214, 76, 163, 0.6);
}
.flying-heart {
  position: fixed;
  font-size: 24px;
  color: #d64ca3;
  animation: flyHeart 1s ease-out forwards;
  pointer-events: none;
  z-index: 9999;
}

@keyframes flyHeart {
  0% {
    transform: translateX(0) translateY(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(-50px) translateY(-100px) scale(1.5);
    opacity: 0.8;
  }
  100% {
    transform: translateX(100px) translateY(-200px) scale(0.5);
    opacity: 0;
  }
}
.password-lock {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fce4ec;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-family: 'Montserrat', sans-serif;
}

.password-box {
  background: white;
  padding: 2rem 3rem;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(122, 62, 122, 0.25);
  text-align: center;
  width: 320px;
}

.password-box input {
  width: 100%;
  padding: 0.8rem;
  margin: 1rem 0;
  border: 2px solid #d64ca3;
  border-radius: 8px;
  font-size: 1rem;
}

.password-box button {
  width: 100%;
  background: linear-gradient(135deg, #d64ca3, #a0347a);
  border: none;
  color: white;
  padding: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1rem;
}

.password-box button:hover {
  background: linear-gradient(135deg, #a0347a, #d64ca3);
}

.error-message {
  color: #d64ca3;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}
