body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Lato", sans-serif;
  background-color: #fdfbfb;
  color: #4a4a4a;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  background: linear-gradient(
      rgba(255, 255, 255, 0.7),
      rgba(255, 255, 255, 0.7)
    ),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
}

.content {
  background: white;
  padding: 3rem;
  border: 1px solid #e0e0e0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 500px;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin: 10px 0;
  font-style: italic;
  font-weight: 400;
}

.sub-title {
  letter-spacing: 4px;
  font-size: 0.8rem;
  color: #8e8e8e;
}

hr {
  width: 50px;
  border: 0.5px solid #d4af37;
  margin: 20px auto;
}

.date {
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.location {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 30px;
}

#countdown {
  margin: 20px 0;
  font-style: italic;
  color: #d4af37;
}

button {
  background: transparent;
  border: 1px solid #4a4a4a;
  padding: 12px 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #4a4a4a;
  color: white;
}

.form-group {
  text-align: left;
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 5px;
  color: #8e8e8e;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #e0e0e0;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  box-sizing: border-box;
  background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4af37;
}

.rsvp-card {
  width: 90%;
  max-width: 450px;
}

.captcha-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  width: 100%;
}

.captcha-wrapper > div {
  margin: 0 auto;
  display: inline-block;
}

.map-link {
  color: #8e8e8e;
  text-decoration: none;
  border-bottom: 1px dotted #d4af37;
  transition: color 0.3s ease;
}

.map-link:hover {
  color: #d4af37;
  text-decoration: none;
}
