
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #f9f8f6 url('https://www.transparenttextures.com/patterns/paper-fibers.png');
  color: #444;
  position: relative;
}

header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

nav {
  display: flex;
  gap: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}

nav a {
  color: #5e6b55;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 100px 20px 60px;
  max-width: 800px;
  margin: 0 auto;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  color: #5e6b55;
}

.intro {
  text-align: center;
  background-size: contain;
  padding-top: 150px;
}

.date {
  font-style: italic;
  color: #8d77a6;
}

.map, .registry {
  width: 100%;
  height: 300px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
}

ul {
  padding-left: 20px;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #5e6b55;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: #fff;
    flex-direction: column;
    align-items: start;
    padding: 2rem;
    gap: 1.5rem;
    transition: left 0.3s ease-in-out;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  nav.open {
    left: 0;
  }
}

.floral-overlay {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 200px;
  pointer-events: none;
  opacity: 0.9;
  z-index: 10;
}

