/* ============================================
   个人简历页面样式文件 - resume.css
   风格：奶油橙 + 磨砂玻璃（与首页统一）
   ============================================ */

.resume-container {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

.resume-card {
  padding: 3rem;
}

.resume-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color-light);
}

.resume-name {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.resume-title {
  font-size: 1.2rem;
  color: rgba(63, 42, 27, 0.7);
  margin-bottom: 1rem;
}

.resume-contact {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: rgba(63, 42, 27, 0.85);
}

.contact-item { display: flex; align-items: center; gap: 0.5rem; }

.resume-section { margin-bottom: 2.5rem; }

.section-header {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(249, 115, 22, 0.25);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-icon { width: 24px; height: 24px; color: var(--primary-color); }

.experience-item,
.education-item {
  margin-bottom: 1.5rem;
  padding: 0.75rem 0.75rem 1rem 1.5rem;
  border-left: 3px solid rgba(249, 115, 22, 0.55);
  background: linear-gradient(90deg, rgba(254, 215, 170, 0.45), transparent);
  border-radius: 12px;
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.experience-item:hover,
.education-item:hover {
  filter: brightness(1.03);
  box-shadow: 0 12px 36px var(--shadow-color-dark);
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.item-title { font-size: 1.15rem; font-weight: 900; color: rgba(63,42,27,0.9); }
.item-company { font-size: 1rem; color: rgba(63,42,27,0.75); font-weight: 700; }
.item-date { font-size: 0.9rem; color: rgba(63,42,27,0.6); font-style: italic; }

.item-description { margin-top: 0.75rem; color: rgba(63,42,27,0.78); line-height: 1.8; }
.item-description ul { margin-left: 1.2rem; margin-top: 0.5rem; }
.item-description li { margin-bottom: 0.5rem; }

.skills-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.skill-tag {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.18);
  border: 1px solid rgba(255,255,255,0.22);
}

/* 联系我页面 */
.contact-page .resume-container { max-width: 560px; }
.contact-card {
  text-align: center;
  padding: 3rem 2rem;
}
.contact-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.contact-title .bi { font-size: 1.8rem; }
.contact-desc {
  color: rgba(63, 42, 27, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.contact-email a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
}
.contact-email a:hover { text-decoration: underline; }
.contact-email .bi { color: var(--primary-color); }
.contact-note {
  font-size: 0.9rem;
  color: rgba(63, 42, 27, 0.55);
}
.contact-note code {
  background: rgba(254, 215, 170, 0.5);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.85em;
}

@media (max-width: 768px) {
  .resume-card { padding: 2rem 1.5rem; }
  .resume-name { font-size: 2rem; }
  .resume-contact { flex-direction: column; gap: 0.75rem; }
  .item-header { flex-direction: column; }
  .contact-title { font-size: 1.5rem; flex-direction: column; }
}

