/* ========================================
   Resume Page Styles — AISymmetric Team
   ======================================== */

/* --- Hero --- */
.resume-hero {
  background: var(--graphite);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.resume-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.resume-hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(34, 211, 238, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.resume-hero .container {
  position: relative;
  z-index: 1;
}

.resume-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.resume-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.resume-hero-role {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.resume-hero-role span {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.resume-hero-tagline {
  font-size: 17px;
  color: var(--gray-400);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.resume-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--blue), #2563eb);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gray-300);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* --- Resume Content Sections --- */
.resume-section {
  padding: 80px 0;
}

.resume-section:nth-child(even) {
  background: var(--gray-50);
}

.resume-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.resume-section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 12px;
}

.resume-section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

/* --- About Section --- */
.resume-about {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.resume-about-photo {
  width: 280px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid var(--gray-100);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.resume-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resume-about-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.resume-about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.resume-about-company {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  margin-top: 8px;
}

.resume-about-company img {
  width: 24px;
  height: 24px;
}

.resume-about-company span {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

/* --- Experience Timeline --- */
.resume-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.resume-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--cyan), var(--gray-200));
  border-radius: 2px;
}

.resume-timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.resume-timeline-item:last-child {
  margin-bottom: 0;
}

.resume-timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  z-index: 1;
}

.resume-timeline-item:first-child::before {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.resume-timeline-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 28px 32px;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.resume-timeline-card:hover {
  border-color: rgba(59, 130, 246, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.resume-timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 16px;
}

.resume-timeline-company {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
}

.resume-timeline-dates {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
  padding: 4px 12px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 100px;
}

.resume-timeline-role {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 16px;
  font-style: italic;
}

.resume-timeline-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resume-timeline-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.resume-timeline-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.5;
}

/* --- Skills Grid --- */
.resume-skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.resume-skill-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 28px 32px;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.resume-skill-card:hover {
  border-color: rgba(59, 130, 246, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.resume-skill-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.resume-skill-card h4 .skill-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.skill-icon-blue {
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue);
}

.skill-icon-cyan {
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan);
}

.resume-skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.resume-skill-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.resume-skill-tag:hover {
  border-color: rgba(59, 130, 246, 0.3);
  color: var(--blue);
}

/* --- Certifications --- */
.resume-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.resume-cert-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.resume-cert-badge:hover {
  border-color: rgba(59, 130, 246, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.resume-cert-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(34, 211, 238, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.resume-cert-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.resume-cert-info p {
  font-size: 13px;
  color: var(--gray-500);
}

/* --- Education --- */
.resume-education {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.resume-edu-card {
  flex: 1;
  min-width: 280px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.resume-edu-card:hover {
  border-color: rgba(59, 130, 246, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.resume-edu-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.resume-edu-card .edu-degree {
  font-size: 15px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 4px;
}

.resume-edu-card .edu-date {
  font-size: 13px;
  color: var(--gray-500);
}

/* --- Contact CTA --- */
.resume-contact {
  background: var(--graphite);
  padding: 80px 0;
  text-align: center;
}

.resume-contact h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.resume-contact p {
  font-size: 17px;
  color: var(--gray-400);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.resume-contact-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .resume-hero {
    padding: 120px 0 60px;
  }

  .resume-about {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .resume-about-photo {
    margin: 0 auto;
    width: 200px;
    height: 200px;
  }

  .resume-timeline {
    padding-left: 32px;
  }

  .resume-timeline::before {
    left: 5px;
  }

  .resume-timeline-item::before {
    left: -30px;
    width: 10px;
    height: 10px;
  }

  .resume-timeline-header {
    flex-direction: column;
    gap: 8px;
  }

  .resume-timeline-dates {
    align-self: flex-start;
  }

  .resume-timeline-card {
    padding: 22px 24px;
  }

  .resume-skills-grid {
    grid-template-columns: 1fr;
  }

  .resume-section {
    padding: 60px 0;
  }

  .resume-certs {
    flex-direction: column;
    align-items: center;
  }

  .resume-education {
    flex-direction: column;
  }
}
