@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&family=Open+Sans&display=swap');

.event-page {
  background-color: #f8f5f0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
  padding: 2rem;
  animation: fadeIn 1.5s ease;
}

.event-container {
  background: white;
  padding: 3rem;
  max-width: 700px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.event-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.event-date-location {
  font-size: 1rem;
  color: #553463;
  margin-bottom: 2rem;
}

.event-flyer img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.event-description {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.rsvp-button {
  background: #444;
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.rsvp-button:hover {
  background: #731399;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .event-container {
    padding: 2rem;
  }

  .event-title {
    font-size: 2rem;
  }
}
