/* Container */
.event-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  min-height: 100vh;
}

/* Card */
.event-card {
  background-color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Image */
.event-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Content */
.event-content {
  padding: 30px;
}

.event-title {
  font-size: 36px;
  font-weight: bold;
  color: #111;
  margin-bottom: 20px;
}

/* Meta */
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  font-size: 18px;
  color: #555;
  margin-bottom: 25px;
}

/* Description */
.event-description {
  color: #333;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Buttons */
.event-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: #2563eb;
  color: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #1e40af;
}

.btn-secondary {
  background-color: #e5e7eb;
  color: #111;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-secondary:hover {
  background-color: #d1d5db;
}

/* Responsive */
@media (max-width: 768px) {
  .event-meta {
    flex-direction: column;
    gap: 10px;
  }
  .event-title {
    font-size: 28px;
  }
  .event-image {
    height: 250px;
  }
}
