:root {
  --hof-bg: var(--background-secondary);
  --hof-text: var(--text-primary);
  --hof-heading: var(--heading-primary);
  --hof-border: var(--go-blue);
  --hof-link: var(--light-blue);
  --hof-hover: var(--go-blue);
}

.hof-section {
  background-color: var(--hof-bg);
  padding: 2rem 0;
  text-align: center;
}

.hof-section h2 {
  color: var(--hof-heading);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hof-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hof-card {
  background-color: var(--background-primary);
  border: 2px solid var(--hof-border);
  border-radius: 8px;
  width: 320px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hof-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 10px rgba(0, 173, 216, 0.4);
}

/* Larger hero-style image */
.hof-image-container {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.hof-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hof-info {
  padding: 1rem;
}

.hof-info h3 {
  color: var(--hof-heading);
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0.5rem 0;
}

.talk-title {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.btn-connect {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background: var(--hof-link);
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-connect:hover {
  background: var(--hof-hover);
  color: var(--text-primary);
}

.hof-image-container {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.hof-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Month Badge */
.hof-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--yellow); /* Bright badge color */
  color: var(--black);
  font-weight: bold;
  font-size: 0.85rem;
  padding: 5px 10px;
  border-radius: 8px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Subtle 3D effect */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .hof-card {
    width: 90%;
  }
}
