/* Color palette */
:root {
    --lavender: #E6E6FA;
    --white: #FFFFFF;
    --dark-gray: #333333;
    --light-gray: #F7F5FA;
    --accent-gold: #D4AF37;
  }
  
  /* Reset & globals */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
    color: var(--dark-gray);
    line-height: 1.6;
  }
  
  /* Header */
  .site-header {
    background: var(--lavender);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark-gray);
  }
  .site-nav ul {
    display: flex;
    gap: 1.5rem;
  }
  .site-nav a {
    text-decoration: none;
    color: var(--dark-gray);
    position: relative;
    font-weight: 500;
  }
  .site-nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width .3s;
    position: absolute;
    bottom: -4px;
    left: 0;
  }
  .site-nav a:hover::after {
    width: 100%;
  }
  
  /* Hero section */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--light-gray);
    padding: 2rem 1rem;
  }
  .image-wrapper {
    width: 100%;
    max-width: 600px;
    margin-bottom: 1.5rem;
  }
  .image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .hero-text {
    text-align: center;
    max-width: 500px;
  }
  .hero-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: .5rem;
  }
  .hero-text p {
    font-size: 1rem;
    color: var(--dark-gray);
  }
  
  /* Footer */
  .site-footer {
    text-align: center;
    padding: 1rem;
    font-size: .9rem;
  }
  
  /* Responsive tweaks */
  @media (min-width: 768px) {
    .hero {
      flex-direction: row;
      justify-content: space-around;
      padding: 4rem 2rem;
    }
    .hero-text {
      text-align: left;
    }
  }

.hearts::before, .hearts::after {
  content: "💖";
  font-size: 2rem;
  position: fixed;
  animation: float 6s infinite;
  opacity: 0.6;
}
.hearts::after {
  left: 70%;
  animation-delay: 3s;
}
@keyframes float {
  0% { bottom: 0; opacity: 0; transform: translateX(0); }
  50% { opacity: 1; }
  100% { bottom: 100%; transform: translateX(-30px); opacity: 0; }
}

  