/* 
 * Webinar Section Styles
 */

.webinar-section {
  padding: 100px 0;
  background-color: #0c0e14; /* Dark background to match the webinar poster deep blues */
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Subtle background glow effect */
.webinar-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(252, 74, 74, 0.1) 0%, rgba(252, 74, 74, 0) 70%);
  z-index: 1;
}

.webinar-section .container {
  position: relative;
  z-index: 2;
}

.webinar-section .section-title h2 {
  color: #ffffff;
}

.webinar-section .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.webinar-poster-container {
  max-width: 650px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.webinar-poster-container:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 30px 60px rgba(252, 74, 74, 0.2);
}

.webinar-poster-container img {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.webinar-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .webinar-section {
    padding: 60px 0;
  }
  
  .webinar-poster-container {
    padding: 10px;
  }
}
