/* === EVENTS PAGE === */
.events-box {
  background: rgba(10, 10, 10, 0.8);
  border: 2px solid #b8860b;
  border-radius: 12px;
  padding: 40px 30px 50px;
  max-width: 1100px;
  width: 100%;
  margin: 50px auto;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
  text-align: center;
  box-sizing: border-box;
}

.events-box h2 {
  color: gold;
  font-size: 32px;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.25);
}

.events-intro {
  color: #ccc;
  font-size: 16px;
  margin-bottom: 35px;
}

.event-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.event-btn {
  background: rgba(20, 20, 20, 0.85);
  border: 1.5px solid #b8860b;
  border-radius: 8px;
  color: gold;
  font-size: 15px;
  padding: 12px 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 160px;
}

.event-btn:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: gold;
  transform: translateY(-2px);
}

.event-btn.active {
  background: gold;
  color: #000;
  font-weight: bold;
  border-color: gold;
  transform: scale(1.05);
}

.event-description {
  background: rgba(20, 20, 20, 0.85);
  border: 1.5px solid #b8860b;
  border-radius: 10px;
  padding: 25px;
  color: #ddd;
  font-size: 15px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  min-height: 130px;
  animation: fadeIn 0.4s ease;
}

.event-description h3 {
  color: gold;
  font-size: 20px;
  margin-bottom: 8px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
