/* valicq-style.css */
body {
  background-color: #f5f5f5;
  color: #222;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(155, 61, 196, 0.07);
}

.back-link {
  color: #9b3dc4;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 24px;
  font-size: 1rem;
  transition: color 0.2s;
}
.back-link:hover {
  color: #dc3545;
}

.event-header h1 {
  font-size: 2.5rem;
  color: #9b3dc4;
  margin-bottom: 8px;
  text-shadow: none;
  font-weight: 800;
}
.event-meta span {
  display: block;
  font-size: 1rem;
  color: #7c7c7c;
  margin-bottom: 4px;
}

.event-description {
  margin-top: 32px;
}
.event-description p,
.event-description ul {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: #333;
}
.event-description ul {
  margin-left: 1.5em;
}

.event-gallery,
.event-section-card.event-gallery {
  margin-top: 40px;
}
.event-gallery h2,
.event-section-card.event-gallery h2 {
  font-size: 1.4rem;
  color: #9b3dc4;
  margin-bottom: 12px;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(155, 61, 196, 0.1);
  transition: transform 0.25s;
  background: #eaeaea;
  object-fit: cover;
  height: 180px;
}
.gallery-grid img:hover {
  transform: scale(1.04);
}

.highlight {
  color: #dc3545;
  font-weight: bold;
}

/* Remove dark mode and legacy styles */
.theme-toggle,
body.light-mode,
body.dark-mode {
  display: none !important;
}
