/* CV Section Styles */

/* CV Section Container */
.cv-section {
  padding: var(--space-16) var(--space-6);
  background: white;
}

.cv-content {
  padding: var(--space-12);
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: transparent;
}

/* CV Intro */
.cv-intro {
  margin-bottom: var(--space-12) !important;
  padding: 0 0 var(--space-8) 0;
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-align: center;
  box-shadow: none;
  position: relative;
  overflow: visible;
  border-bottom: 1px solid var(--neutral-200);
  flex-shrink: 0;
}

.cv-intro::before {
  display: none;
}

.intro-content {
  position: relative;
  z-index: 1;
}

.intro-name {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  letter-spacing: -1px;
  line-height: 1.2;
  font-family: var(--font-sans);
}

.intro-title {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 0;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.intro-divider {
  display: none;
}

/* CV Section */
.cv-section .cv-section {
  margin-bottom: var(--space-12);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  position: relative;
  overflow: visible;
}

.cv-section .cv-section:nth-child(1) { animation-delay: 0.1s; }
.cv-section .cv-section:nth-child(2) { animation-delay: 0.2s; }
.cv-section .cv-section:nth-child(3) { animation-delay: 0.3s; }
.cv-section .cv-section:nth-child(4) { animation-delay: 0.4s; }
.cv-section .cv-section:nth-child(5) { animation-delay: 0.5s; }

/* CV Section Title */
.cv-section-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: var(--space-12);
  position: relative;
  display: block;
  padding: 0;
  background: transparent;
  border-radius: var(--radius-none);
  border: none;
  box-shadow: none;
  font-family: var(--font-sans);
  letter-spacing: -1px;
  text-transform: none;
}

.cv-section-title::after {
  display: none;
}

/* About Section */
.cv-about {
  margin-bottom: var(--space-20) !important;
  grid-column: 1 / -1;
}

.cv-about .about-content {
  padding: 0;
  margin-top: 0;
}

.about-description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--neutral-700);
  font-weight: 400;
  text-align: left;
  margin: 0;
  font-style: normal;
  letter-spacing: -0.3px;
}

/* CV Footer */
.cv-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-16);
  padding-top: var(--space-12);
  border-top: 1px solid var(--neutral-200);
  position: relative;
}

.cv-footer::before {
  display: none;
}

.cv-footer p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  text-align: center;
  opacity: 0.8;
  line-height: 1.6;
}

.cv-footer p strong {
  color: var(--text-primary);
  font-weight: 600;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
