/* =====================================================
   PROFILE PAGE STYLES
   ===================================================== */

/* ----- Profile Hero ----- */
.profile-hero {
  padding: calc(70px + var(--space-3xl)) 0 var(--space-2xl);
  background: var(--gray-50);
  text-align: center;
}

.profile-intro {
  max-width: 600px;
  margin: 0 auto;
}

.profile-image {
  width: 200px;
  height: 200px;
  margin: 0 auto var(--space-lg);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid var(--white);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-hero h1 {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
}

.profile-hero .lead {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--teal-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.social-link svg {
  width: 22px;
  height: 22px;
}

/* ----- Profile Main Section ----- */
.profile-main {
  padding: var(--space-3xl) 0;
  background: url('/wp-content/uploads/2020/05/auditorium-benches-chairs-class-207691-scaled.jpg') center/cover no-repeat fixed;
  position: relative;
}

.profile-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(91, 119, 165, 0.88) 100%);
}

.profile-main .container {
  position: relative;
  z-index: 2;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.profile-content h2,
.skills-section h2,
.skills-section h3 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.profile-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

/* ----- Skills List ----- */
.skills-list {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.skills-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--white);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.skill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: bold;
}

/* ----- Skill Bars ----- */
.skill-bars {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.skill-bar {
  width: 100%;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-xs);
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.skill-progress {
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 100%);
  border-radius: var(--radius-full);
  transition: width 1s ease-out;
}

/* ----- CTA Section ----- */
.cta-section {
  padding: var(--space-3xl) 0;
  background: var(--teal);
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: var(--space-lg);
}

/* ----- Responsive ----- */

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .profile-hero {
    padding: calc(70px + var(--space-2xl)) 0 var(--space-xl);
  }

  .profile-hero h1 {
    font-size: 2.5rem;
  }

  .profile-hero .lead {
    font-size: 1.1rem;
  }

  .profile-image {
    width: 170px;
    height: 170px;
  }

  .profile-main {
    padding: var(--space-2xl) 0;
  }

  .profile-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .profile-content h2,
  .skills-section h2 {
    font-size: 1.75rem;
  }

  .profile-content p {
    font-size: 0.9rem;
  }

  .skills-list li {
    font-size: 0.9rem;
    padding: 10px 0;
  }

  .skill-info {
    font-size: 0.85rem;
  }

  .cta-section {
    padding: var(--space-2xl) 0;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .profile-hero {
    padding: calc(70px + var(--space-xl)) 0 var(--space-lg);
  }

  .profile-hero h1 {
    font-size: 2.2rem;
  }

  .profile-image {
    width: 150px;
    height: 150px;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .social-link {
    width: 45px;
    height: 45px;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
  }
}

