/* ================================
   About Page Specific Styles
   Extends memories-tech.css
   ================================ */

/* ========== About Hero ========== */
.about-hero {
  min-height: 70vh;
  padding-top: calc(var(--space-2xl) + 80px);
  padding-bottom: var(--space-xl);
  position: relative;
  background: var(--color-cream);
  display: flex;
  align-items: center;
}

.about-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Profile Image */
.profile-image-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  animation: slideDown 0.8s ease;
}

.profile-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--color-sunset);
  padding: 5px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(255, 107, 107, 0.3);
}

.profile-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-sunset);
}

.profile-status {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--color-ocean);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
}

.about-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
  animation: slideUp 0.8s ease 0.2s both;
}

.about-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-gray);
  font-family: var(--font-accent);
}

.about-tagline {
  font-size: 1.25rem;
  color: var(--color-gray);
  margin-bottom: 2rem;
  animation: slideUp 0.8s ease 0.4s both;
}

.about-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: slideUp 0.8s ease 0.6s both;
}

.badge {
  padding: 0.5rem 1.5rem;
  background: var(--color-white);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-ocean);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ========== Introduction Section ========== */
.intro-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.intro-text {
  text-align: center;
}

.intro-paragraph {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-gray);
  margin-bottom: 1.5rem;
}

.intro-paragraph strong {
  color: var(--color-sunset);
  font-weight: 600;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem;
  background: var(--color-white);
  border-radius: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.intro-stat {
  text-align: center;
  padding: 1rem;
}

.intro-stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.intro-stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--color-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.intro-stat-label {
  font-size: 0.875rem;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========== Career Timeline ========== */
.career-timeline {
  position: relative;
  padding: 2rem 0;
  max-width: 900px;
  margin: 0 auto;
}

.career-timeline::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-ocean);
}

.career-item {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}

.career-item.animated {
  opacity: 1;
  transform: translateX(0);
}

.career-year {
  width: 80px;
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-sunset);
  text-align: right;
  padding-top: 0.5rem;
}

.career-item::after {
  content: '';
  position: absolute;
  left: 96px;
  top: 0.75rem;
  width: 10px;
  height: 10px;
  background: var(--color-ocean);
  border-radius: 50%;
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 5px rgba(78, 205, 196, 0.2);
}

.career-item.current::after {
  background: var(--color-sunset);
  animation: pulse 2s ease infinite;
}

.career-content {
  flex: 1;
  background: var(--color-white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.career-content h3 {
  font-size: 1.5rem;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}

.career-company {
  font-size: 1rem;
  color: var(--color-ocean);
  font-weight: 600;
  margin-bottom: 1rem;
}

.career-description {
  color: var(--color-gray);
  line-height: 1.6;
  margin: 0;
}

/* ========== Skills Section ========== */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.skill-category {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition-normal);
}

.skill-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.skill-category-title {
  font-size: 1.25rem;
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.skill-icon {
  font-size: 1.5rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.skill-tag {
  padding: 0.5rem 1rem;
  background: var(--color-cream);
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--color-gray);
  font-weight: 500;
  transition: var(--transition-normal);
}

.skill-tag:hover {
  background: var(--color-sunset);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ========== Values Section ========== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition-normal);
  opacity: 0;
  transform: translateY(20px);
}

.value-card.animated {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease forwards;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.value-title {
  font-size: 1.25rem;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
}

.value-description {
  color: var(--color-gray);
  line-height: 1.6;
  margin: 0;
}

/* ========== Achievements Section ========== */
.achievements-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition-normal);
  opacity: 0;
  transform: translateX(-20px);
}

.achievement-item.animated {
  opacity: 1;
  transform: translateX(0);
  animation: fadeInUp 0.6s ease forwards;
}

.achievement-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.achievement-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.achievement-content h3 {
  font-size: 1.125rem;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}

.achievement-content p {
  color: var(--color-gray);
  margin: 0;
  font-size: 0.875rem;
}

/* ========== Message Section ========== */
.message-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.message-content {
  background: var(--color-white);
  padding: 3rem;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.message-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-gray);
  margin-bottom: 2rem;
}

.message-text.emphasis {
  font-size: 1.25rem;
  color: var(--color-charcoal);
  padding: 1.5rem;
  background: var(--color-cream);
  border-radius: 20px;
  margin: 2rem 0;
}

.message-text strong {
  color: var(--color-sunset);
}

.message-signature {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-light-gray);
}

.signature-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-top: 0.5rem;
}

/* ========== History Section ========== */
.app-history-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.history-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  text-align: center;
}

.history-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: var(--color-cream);
  opacity: 0.03;
  transform: rotate(45deg);
  transition: var(--transition-normal);
}

.history-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.history-card:hover::before {
  opacity: 0.06;
}

.history-card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.history-card:nth-child(2) .history-card-icon {
  animation-delay: 0.5s;
}

.history-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
}

.history-card-description {
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.history-card-count {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--color-sunset);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.history-card-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.history-app-tag {
  padding: 0.4rem 0.8rem;
  background: var(--color-ocean);
  color: var(--color-white);
  border-radius: 15px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(78, 205, 196, 0.2);
  transition: var(--transition-normal);
}

.history-app-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

/* Animation for floating effect */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ========== Connect Section ========== */
.connect-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.connect-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition-normal);
}

.connect-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.connect-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.connect-info h3 {
  font-size: 1.125rem;
  color: var(--color-charcoal);
  margin-bottom: 0.25rem;
}

.connect-info p {
  color: var(--color-gray);
  margin: 0;
  font-size: 0.875rem;
}

/* ========== Animations ========== */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 5px rgba(255, 107, 107, 0.2);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(255, 107, 107, 0);
  }
  100% {
    box-shadow: 0 0 0 5px rgba(255, 107, 107, 0.2);
  }
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .intro-stats {
    grid-template-columns: 1fr;
  }
  
  .career-timeline::before {
    left: 20px;
  }
  
  .career-item {
    flex-direction: column;
    gap: 1rem;
  }
  
  .career-year {
    width: auto;
    text-align: left;
    padding-left: 40px;
  }
  
  .career-item::after {
    left: 16px;
  }
  
  .skills-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .achievements-list {
    grid-template-columns: 1fr;
  }
  
  .app-history-grid {
    grid-template-columns: 1fr;
  }
  
  .history-card {
    padding: 2rem 1.5rem;
  }
  
  .history-card-count {
    position: static;
    display: inline-block;
    margin-top: 1rem;
  }
  
  .connect-links {
    grid-template-columns: 1fr;
  }
  
  .message-content {
    padding: 2rem 1.5rem;
  }
}