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

body {
  font-family: 'Montserrat', sans-serif;
  background: #faf7f2;
  color: #333;
  text-align: center;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  background: rgba(0,0,0,0.35);
  color: white;
  text-align: center;
}


.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 70px;
}

.story {
  padding: 80px 20px;
  max-width: 800px;
  margin: auto;
  font-size: 20px;
  line-height: 1.8;
}

.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 40px;
}

.gallery img {
  width: 300px;
  border-radius: 12px;
  transition: transform .3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

.details {
  background: #e8ded2;
  padding: 80px 20px;
}

.card {
  margin: 20px auto;
  padding: 20px;
  max-width: 300px;
  background: white;
  border-radius: 10px;
}

.map iframe {
  width: 90%;
  height: 400px;
  border: none;
  margin: 40px 0;
  border-radius: 10px;
}

.rsvp a {
  display: inline-block;
  margin: 40px;
  padding: 20px 40px;
  background: #333;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 22px;
}

footer {
  padding: 30px;
  font-size: 14px;
}
