* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #6b5b95;
  --accent-color: #ff6b6b;
  --text-light: #757575;
  --bg-light: #f8f7fa;
  --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f5f3f8 0%, #e8e4f0 100%);
  min-height: 100vh;
}

h1 {
  text-align: left !important;
  font-weight: 700 !important;
}

/* Header */
header {
  background: white;
  padding: 1rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  display: flex;
  gap: 2px;
}

.logo-bar {
  width: 4px;
  height: 24px;
  background: linear-gradient(to bottom, #ffd700, #ffa500);
  border-radius: 2px;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--primary-color);
}

.tagline {
  font-size: 0.875rem;
  color: var(--accent-color);
  font-style: italic;
}

.sign-up-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.3s;
}

.sign-up-btn:hover {
  background: #5a4a83;
  transform: translateY(-1px);
}

/* Main Container */
.container {
  max-width: 1400px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* Section Title */
h1 {
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

/* Event Grid */
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* Event Card */
.event-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.event-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.event-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-title {
  font-size: 1.65rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  margin-top: 0;
}

.bc-event-date {
  color: var(--accent-color);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.bc-event-description {
  color: var(--text-light);
  font-size: 1.15rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.learn-more {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.625rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.35rem;
  width: 100%;
  transition: all 0.3s;
  margin-top: auto;
}

.learn-more:hover {
  background: #5a4a83;
}

/* Footer */
footer {
  background: white;
  padding: 2rem 1rem;
  text-align: center;
  margin-top: 3rem;
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.app-btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #000;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.875rem;
  transition: all 0.3s;
}

.app-btn:hover {
  transform: scale(1.05);
}

.legal-text {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
}

.footer-links a {
  color: var(--primary-color);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Tablet and Desktop */
@media (min-width: 768px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 2.25rem;
  }

  .header-content {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .event-image {
    height: 240px;
  }
}

@media (min-width: 1280px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
