/* Program 2025 Custom Styles */

.program-date {
  text-align: center;
  padding: 20px;
  border-right: 1px solid #ddd;
}

.program-date h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.program-day {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 5px;
}

.program-time {
  font-size: 2rem;
  color: #999;
}

.program-content {
  padding: 20px;
}

.program-content h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.program-location {
  color: #666;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.program-location i {
  margin-right: 8px;
  color: #999;
}

.program-description {
  margin-bottom: 20px;
  line-height: 1.6;
}

.speakers-list {
  margin-top: 20px;
}

.speaker-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
}

.speaker-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
  object-position: top;
  background: #ddd;
}

.speaker-info h5 {
  margin: 0;
  font-weight: bold;
  font-size: 1.4rem;
}

.speaker-role {
  margin: 0 0 8px 0;
  color: #666;
  font-size: 1.3rem;
}

.speaker-topic {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.4;
}

.special-event {
  margin-top: 25px;
  padding: 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
}

.special-event h5 {
  margin: 0 0 10px 0;
  font-weight: bold;
}

.special-event p {
  margin: 0;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: start;
}

.sponsor-main {
  text-align: center;
}

.sponsor-logo-main {
  max-width: 240px;
  height: auto;
}

.sponsors-secondary h4 {
  margin-bottom: 20px;
}

.sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.sponsor-logo {
  max-height: 48px;
  max-width: 120px;
  width: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .program-date {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }
  
  .speaker-item {
    flex-direction: column;
    text-align: center;
  }
  
  .speaker-photo {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .sponsors-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .sponsor-logos {
    justify-content: center;
  }
}

/* Dark theme adjustments */
.bg-dark .program-date {
  border-right-color: #444;
}

.bg-dark .speaker-item {
  background: rgba(255,255,255,0.1);
}

.bg-dark .special-event {
  background: rgba(255,255,255,0.2);
}
