/* Home Leader Section - Simplified Design */

.home-leader {
  padding: 60px 40px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

/* Heading - Same as other sections */
.home-leader .h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  margin: 0 0 40px 0;
  letter-spacing: 0.02em;
  position: relative;
}

.home-leader__content {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
  width: 100%;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Photo */
.home-leader__photo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  height: 300px;
  width: 300px;
}

.home-leader__photo img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  filter: grayscale(10%) contrast(1.1);
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.home-leader__photo:hover img {
  filter: grayscale(0%) contrast(1.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transform: scale(1.03);
}

/* Info Section */
.home-leader__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  text-align: left;
  align-items: flex-start;
}

.home-leader__name {
  font-family: 'Unbounded', sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
  position: relative;
  text-align: left;
}

.home-leader__name::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.home-leader__role {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 16px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: left;
}

.home-leader__story {
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px 0;
  font-weight: 400;
  max-width: 100%;
  text-align: left;
}

/* Skills */
.home-leader__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  margin: 15px 0 0 0;
  justify-content: flex-start;
}

.home-leader__skill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 13px;
}

.home-leader__skill:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.home-leader__skill i {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.home-leader__skill span {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
  .home-leader {
    padding: 50px 20px;
  }
  
  .home-leader .h2 {
    margin-bottom: 30px;
    font-size: clamp(20px, 5vw, 28px);
  }
  
  .home-leader__content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    margin-top: 30px;
  }
  
  .home-leader__photo {
    height: 200px;
    width: 200px;
    margin: 0 auto;
  }
  
  .home-leader__info {
    align-items: center;
    text-align: center;
  }
  
  .home-leader__name {
    font-size: 24px;
  }
  
  .home-leader__name::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .home-leader__role {
    font-size: 14px;
  }
  
  .home-leader__story {
    font-size: 15px;
  }
  
  .home-leader__skills {
    justify-content: center;
  }
  
  .home-leader__skill {
    padding: 6px 10px;
    gap: 6px;
  }
  
  .home-leader__skill i {
    width: 14px;
    height: 14px;
  }
  
  .home-leader__skill span {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .home-leader {
    padding: 40px 16px;
  }
  
  .home-leader .h2 {
    margin-bottom: 20px;
  }
  
  .home-leader__content {
    gap: 20px;
    margin-top: 20px;
  }
  
  .home-leader__photo {
    height: 150px;
    width: 150px;
  }
  
  .home-leader__name {
    font-size: 20px;
  }
  
  .home-leader__role {
    font-size: 12px;
  }
  
  .home-leader__story {
    font-size: 14px;
  }
  
  .home-leader__skill {
    padding: 5px 8px;
    gap: 5px;
  }
  
  .home-leader__skill i {
    width: 12px;
    height: 12px;
  }
  
  .home-leader__skill span {
    font-size: 11px;
  }
}