body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #444;
  line-height: 1.6;

  /* Background image */
  background:
    linear-gradient(
      rgba(250, 249, 247, 0.82),
      rgba(250, 249, 247, 0.82)
    ),
    url("https://images.unsplash.com/photo-1520854221256-17451cc331bf?auto=format&fit=crop&w=1600&q=80");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

nav {
  background: #222;
  padding: 15px;
  text-align: center;
}

nav a {
  color: #eee;
  text-decoration: none;
  margin: 0 15px;
  font-size: 0.95rem;
}

nav a:hover {
  color: #c5a880;
}

header {
  padding: 100px 20px;
  text-align: center;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
}

section {
  max-width: 1000px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.divider {
  width: 80px;
  height: 2px;
  background: #c5a880;
  margin: 20px auto 40px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 1.2rem;
}

.countdown div {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  min-width: 90px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
}

iframe {
  width: 100%;
  height: 700px;
  border: none;
}

footer {
  background: #222;
  color: #ddd;
  text-align: center;
  padding: 30px;
}
