/* ================================================
   CAREER TALK PAGE CSS - Inception 2026
   ================================================ */

/* ==== CAREER TALK HERO ==== */
.career-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.career-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--gradient-warm);
  color: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  box-shadow: var(--glow-orange);
}

.hero-title {
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-primary);
  font-weight: 500;
}

.info-item svg {
  color: var(--accent-primary);
}

.cta-button-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  background: var(--gradient-warm);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-primary);
}

.cta-button-hero:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* ==== ABOUT EVENT ==== */
.career-about {
  padding: 6rem 0;
  position: relative;
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header-center {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header-center h2 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  margin-bottom: 1rem;
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--box-border);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-primary);
}

.benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-warm);
  border-radius: 10px;
  color: white;
}

/* ==== SPEAKERS SECTION ==== */
.speakers-section {
  padding: 6rem 0;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 380px));
  justify-content: center;
  gap: 2.5rem;
}

.speaker-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--box-border);
  transition: all 0.3s ease;
}

.speaker-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.speaker-image-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.speaker-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.speaker-card:hover .speaker-image {
  transform: scale(1.1);
}

.speaker-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
}

.speaker-info {
  padding: 1.8rem;
}

.speaker-info h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.speaker-position {
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 0.3rem;
}

.speaker-company {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.speaker-bio {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==== SCHEDULE SECTION ==== */
.schedule-section {
  padding: 6rem 0;
}

.schedule-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.schedule-item {
  display: grid;
  grid-template-columns: 150px 40px 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.schedule-time {
  text-align: right;
  font-weight: 600;
  color: var(--accent-primary);
  padding-top: 0.3rem;
}

.schedule-connector {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.schedule-connector::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--gradient-warm);
  border-radius: 50%;
  box-shadow: var(--glow-orange);
  flex-shrink: 0;
}

.schedule-connector::after {
  content: '';
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-primary), transparent);
  margin-top: 0.5rem;
}

.schedule-item:last-child .schedule-connector::after {
  display: none;
}

.schedule-content {
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--box-border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.schedule-content:hover {
  transform: translateX(5px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-primary);
}

.schedule-content h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
}

/* ==== CTA SECTION ==== */
.cta-section {
  padding: 6rem 0;
}

.cta-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 3rem;
  background: white;
  border: 2px solid var(--accent-primary);
  border-radius: 25px;
  text-align: center;
  box-shadow: var(--shadow-hover);
}

.cta-box h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button.primary {
  background: var(--gradient-warm);
  color: white;
  box-shadow: var(--shadow-primary);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.cta-button.secondary {
  background: white;
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
}

.cta-button.secondary:hover {
  background: var(--accent-primary);
  color: white;
}

/* ==== RESPONSIVE - CAREER TALK ==== */
@media (max-width: 968px) {
  .hero-info {
    gap: 1rem;
  }

  .info-item {
    font-size: 0.9rem;
  }

  .speakers-grid {
    grid-template-columns: 1fr;
  }

  .schedule-item {
    grid-template-columns: 100px 30px 1fr;
    gap: 1rem;
  }

  .schedule-time {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .cta-box {
    padding: 3rem 2rem;
  }
}

@media (max-width: 600px) {
  .career-hero {
    padding: 6rem 1.5rem 3rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .schedule-item {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .schedule-time {
    text-align: left;
    margin-bottom: 0.5rem;
  }

  .schedule-connector {
    display: none;
  }
}
