/* Import unified base styles */
@import url('./unified.css');

/* =========================
   ABOUT ME HERO SECTION
   ========================= */

.about-hero {
  padding: 80px 0 80px;
}

.about-hero-title {
  font-family: Syne, system-ui, sans-serif;
  font-size: 64px;
  line-height: 1.1;
  font-weight: 400;
  color: #fd3e71;
  margin: 0 0 56px 0;
  text-align: center;
}

.about-hero-bottom {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 100px;
  align-items: center;
}

.about-hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 700px;
}

.about-hero-content p {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.about-hero-image {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin-left: auto;
}

.about-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* =========================
   RESUME SECTION
   ========================= */

.resume-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  margin-top: 8px;
}

.resume-accordion {
  margin-top: 32px;
}

.resume-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.resume-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.2s ease;
}

.resume-header:hover {
  opacity: 0.8;
}

.resume-header-left {
  flex: 1;
}

.resume-company {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 8px 0;
}

.resume-title {
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.resume-header-right {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 32px;
}

.resume-date {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.resume-icon {
  font-size: 32px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  width: 32px;
  text-align: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

.resume-header[aria-expanded="true"] .resume-icon {
  transform: rotate(45deg);
  color: #fd3e71;
}

.resume-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}

.resume-content.active {
  max-height: 500px;
  padding-bottom: 32px;
}

.resume-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  padding-right: 80px;
}

/* =========================
   EDUCATION SECTION
   ========================= */

.education-section {
  margin-top: 80px;
}

.education-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 48px;
}

.education-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
}

.education-left {
  flex: 1;
}

.education-school {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 12px 0;
}

.education-degree {
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.education-date {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {
  .about-hero {
    padding: 60px 0 80px;
  }
  
  .about-hero-title {
    font-size: 48px;
    margin-bottom: 40px;
  }
  
  .about-hero-bottom {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-hero-image {
    max-width: 100%;
    margin-left: 0;
    margin: 0 auto;
  }
  
  .resume-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .resume-header-right {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }
  
  .resume-description {
    padding-right: 0;
  }
  
  .education-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .education-school {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .about-hero-title {
    font-size: 36px;
  }
  
  .about-hero-content p {
    font-size: 18px;
  }
  
  .resume-company {
    font-size: 20px;
  }
  
  .resume-date {
    font-size: 14px;
  }
  
  .resume-description {
    font-size: 16px;
  }
  
  .education-school {
    font-size: 20px;
  }
  
  .education-degree {
    font-size: 16px;
  }
  
  .education-date {
    font-size: 16px;
  }
}