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

body {
  font-family: 'Georgia', serif;
  color: #3a3a3a;
  background: #fdf8f4;
}

section { padding: 5rem 8%; }
h2 { font-size: 2rem; text-align: center; margin-bottom: 1.5rem; color: #5c3d2e; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #fce4ec 0%, #fff3e0 50%, #e8eaf6 100%);
  position: relative;
}
.hero-content { position: relative; z-index: 1; }
.pretext { font-size: 1.1rem; color: #888; letter-spacing: 3px; text-transform: uppercase; }
.hero h1 { font-size: 4rem; margin: 0.5rem 0; color: #5c3d2e; }
.hero h1 span { color: #e57373; font-style: italic; }
.tagline { font-size: 1.2rem; color: #777; font-style: italic; margin-bottom: 1rem; }
.hearts { font-size: 1.5rem; color: #e57373; letter-spacing: 8px; }

/* Story */
.story { background: #fff; text-align: center; }
.story-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}
.family-photo {
  width: 280px;
  height: 350px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  flex-shrink: 0;
}
.story p { max-width: 600px; line-height: 1.8; color: #666; font-size: 1.1rem; text-align: left; }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}
.card:hover { transform: translateY(-4px); }
.card .icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.card h3 { color: #5c3d2e; margin-bottom: 0.5rem; }
.card p { color: #888; line-height: 1.6; font-size: 0.95rem; }


/* Contact */
.contact {
  text-align: center;
  background: linear-gradient(135deg, #5c3d2e, #8d6e63);
  color: #fff;
  border-radius: 0;
}
.contact h2 { color: #fff; }
.contact p { color: #ddd; margin-bottom: 1.5rem; }
.cta {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: rgba(255,255,255,0.15);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 1rem;
  transition: background 0.2s;
}
.cta:hover { background: rgba(255,255,255,0.25); }

.socials { margin-top: 1.5rem; display: flex; gap: 1.5rem; justify-content: center; }
.socials a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.85;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.socials a:hover { opacity: 1; }
.ig-icon { width: 1.2rem; height: 1.2rem; }

footer {
  text-align: center;
  padding: 2rem;
  color: #aaa;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2.5rem; }
  section { padding: 3.5rem 6%; }
  .story-content { flex-direction: column; text-align: center; }
  .story-content p { text-align: center; }
  .family-photo { width: 220px; height: 280px; }
}
