body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #faf7f5;
  color: #3e3e3e;
  text-align: center;
}

/* Header */
header {
  padding: 80px 20px 40px;
  background: #f3eae7;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  margin: 0;
  letter-spacing: 2px;
}

header p {
  font-size: 16px;
  margin-top: 10px;
  color: #7a6f6b;
}

/* Navigation */
nav {
  background: white;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

nav a {
  margin: 0 20px;
  text-decoration: none;
  color: #8c6b73;
  font-weight: 400;
  letter-spacing: 1px;
}

/* Hero */
#hero {
  background: url('hero.jpg') center/cover no-repeat;
  height: 85vh;
  position: relative;
}

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

.overlay h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin: 0;
}

.overlay p {
  font-size: 18px;
  margin-top: 10px;
}

/* Sections */
section {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  margin-bottom: 25px;
  color: #8c6b73;
}

/* Gallery */
.gallery {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery img {
  width: 260px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

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

/* RSVP */
iframe {
  border: none;
  border-radius: 10px;
}

/* Footer */
footer {
  padding: 30px;
  background: #f3eae7;
  font-size: 15px;
  color: #7a6f6b;
}