/* Custom styles for homepage */

/* Add gradient background to category cards */
.category-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Add icons or emojis to categories */
.category-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

/* Python icon */
.python-icon::before {
  content: "🐍";
}

/* R icon */
.r-icon::before {
  content: "📊";
}

/* AI icon */
.ai-icon::before {
  content: "🤖";
}

/* Other icon */
.other-icon::before {
  content: "🛠️";
}

/* Alternative: Use Berkeley colors */
.berkeley-blue {
  color: #003262;
}

.berkeley-gold {
  color: #FDB515;
}

/* Homepage hero section */
.homepage-hero {
  background-color: #f8f9fa;
  margin-bottom: 2rem;
  margin-top: 80px; /* Push banner below fixed navbar */
  overflow: hidden;
}

/* Make banner full width */
.homepage-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* Workshop card styles */
.workshop-card {
  background: #f8f9fa;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.workshop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  background: #ffffff;
}

/* Badge styles */
.badge-pill {
  padding: 0.4em 0.8em;
  font-weight: 500;
}

/* Workshop page hero sections */
.workshop-page-header {
  background-color: #f8f9fa;
  padding: 2rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .workshop-links .btn {
    margin-bottom: 0.25rem;
  }
}