/* Workshops page specific styles */

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  padding: 120px 32px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #d1cfc8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #b8b6b0;
}

/* Workshop Cards */
.workshop-card {
  padding: 40px;
  text-align: center;
}

.workshop-card h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive YouTube video section */
.video-section {
/* Remove video-section styles since video is now in hero */
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px;
  min-width: 320px;
  aspect-ratio: 16/9;
  margin: 32px auto 0 auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .video-wrapper {
    max-width: 95vw;
  }
}

@media (max-width: 600px) {
  .video-section {
    padding: 24px 0 10px 0;
  }
  .video-wrapper {
    max-width: 100vw;
    border-radius: 8px;
  }
  .video-wrapper iframe {
    border-radius: 8px;
  }
}

.workshop-card .duration {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.workshop-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.workshop-card ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
}

.workshop-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 600;
}

/* Feature Items */
.feature-item {
  padding: 32px;
  border-radius: 16px;
  text-align: center;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.feature-item h4 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: #ffffff;
}

/* Instructor Section */
.instructor-profile {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.instructor-image {
  text-align: center;
}

.instructor-image img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #60a5fa;
  box-shadow: 0 8px 32px rgba(96, 165, 250, 0.2);
}

.instructor-content h3 {
  font-size: 2rem;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.instructor-title {
  font-size: 1.1rem;
  color: #10b981;
  font-weight: 600;
  margin-bottom: 24px;
}

.instructor-content > p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  color: #b8b6b0;
}

.accomplishments h4 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: #ffffff;
}

.accomplishments ul {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.accomplishments ul li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 24px;
  line-height: 1.6;
}

.accomplishments ul li::before {
  content: '🎓';
  position: absolute;
  left: 0;
  font-size: 16px;
}

.accomplishments ul li strong {
  color: #60a5fa;
}

.instructor-links {
  display: flex;
  gap: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(96, 165, 250, 0.3);
  color: white;
}

/* CTA Section */
.cta-section {
  text-align: center;
}

.cta-section .cta-btn {
  padding: 20px 40px;
  font-size: 18px;
  margin: 0 16px 16px 0;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 60px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .workshop-card {
    padding: 24px;
  }
  
  .instructor-profile {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .instructor-image img {
    width: 200px;
    height: 200px;
  }
  
  .instructor-content h3 {
    font-size: 1.75rem;
  }
  
  .instructor-content {
    text-align: left;
  }
  
  .accomplishments {
    margin: 32px 0;
  }
  
  .accomplishments h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .accomplishments ul li {
    margin-bottom: 20px;
    padding-left: 28px;
    font-size: 15px;
    line-height: 1.5;
  }
  
  .accomplishments ul li::before {
    font-size: 14px;
    top: 2px;
  }
  
  .instructor-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .social-link {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .cta-section .cta-btn {
    padding: 16px 32px;
    font-size: 16px;
    display: block;
    margin: 0 0 16px 0;
    text-align: center;
  }
}
