/* Mother's Day Theme - Soft Pastels */
:root {
  --primary-pink: #ffb6c1;
  --soft-rose: #ffccd5;
  --warm-peach: #ffdab9;
  --lavender: #e6e6fa;
  --cream: #fffaf0;
  --text-dark: #5a4a5a;
  --accent-gold: #ffd700;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, var(--soft-rose), var(--lavender));
  min-height: 100vh;
  color: var(--text-dark);
}

nav {
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav h1 {
  color: var(--primary-pink);
  font-size: 1.8rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--primary-pink);
}

.container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  margin-bottom: 2rem;
}

.hero h2 {
  font-size: 3rem;
  color: var(--primary-pink);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: var(--primary-pink);
  margin-bottom: 1rem;
}

.message-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.message-form input,
.message-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 2px solid var(--soft-rose);
  border-radius: 10px;
  font-size: 1rem;
}

.message-form button {
  background: var(--primary-pink);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.message-form button:hover {
  background: #ff9aa8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 250px;
  background: var(--warm-peach);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.footer {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  margin-top: 3rem;
}

/* Heart Animation */
.hearts {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.heart {
  position: absolute;
  font-size: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 1; }
  50% { transform: translateY(-20px) rotate(10deg); opacity: 0.7; }
}

