/*
Theme Name: Wedding Landing Page
Description: A simple, mobile-friendly wedding reception invitation theme with video header, countdown, RSVP, and map.
Version: 1.0
Author: ChatGPT
*/
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #3c2e71;
}
header.video-header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
header.video-header video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(60, 46, 113, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
header .overlay h1 {
  color: white;
  font-size: 2.5rem;
  margin: 0;
  padding: 1rem;
}
section.countdown {
  padding: 2rem;
  text-align: center;
  background: #3c2e71;
  color: white;
}
section.rsvp {
  padding: 2rem;
  background: #f4f4f4;
  text-align: center;
  color: #3c2e71;
}
section.map {
  padding: 2rem;
  text-align: center;
  background: #3c2e71;
  color: white;
}
iframe {
  width: 100%;
  height: 300px;
  border: 0;
}
