/* ================= ABOUT PAGE DEDICATED STYLES ================= */

/* ========== ABOUT BUTTON SECTION ========== */
.about-button-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 6rem auto;
  padding: 0 20px;
}

.about-btn {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid var(--accent-primary);
  color: var(--accent-primary);
  background: var(--surface-bg-strong);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  box-shadow: 0 8px 24px rgba(41, 121, 255, 0.1);
  transition: all var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border-radius: var(--radius-main);
}

.about-btn:hover {
  border-color: var(--accent-primary);
  background: linear-gradient(180deg, rgba(41, 121, 255, 0.06), rgba(41, 121, 255, 0.04));
  box-shadow: 0 12px 32px rgba(41, 121, 255, 0.2);
  transform: translateY(-4px);
}

/* ========== ABOUT HERO SECTION ========== */
.about-hero {
  background: var(--surface-bg-soft);
  padding: 3rem;
  border-radius: var(--radius-main);
  margin-bottom: 3rem;
  border: 1px solid var(--surface-border);
  box-shadow: var(--surface-shadow);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-hero-photo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo-frame {
  position: relative;
  width: 280px;
  height: 280px;
}

.photo-frame-border {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--accent-primary);
  opacity: 0.3;
  animation: rotateFrame 20s linear infinite;
}

@keyframes rotateFrame {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.profile-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-primary);
  box-shadow: 0 20px 60px rgba(41, 121, 255, 0.3), inset 0 0 30px rgba(41, 121, 255, 0.1);
  transition: all var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.profile-photo:hover {
  box-shadow: 0 30px 80px rgba(41, 121, 255, 0.4), inset 0 0 30px rgba(41, 121, 255, 0.15);
  transform: scale(1.02);
}

.about-hero-info h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  border: none !important;
  padding: 0 !important;
}

.about-hero-subtitle {
  font-size: 1.1rem;
  color: var(--accent-primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.about-hero-bio {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 500px;
}

.about-hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ========== BUTTON STYLES ========== */
.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--accent-primary);
  color: #ffffff;
  background: var(--accent-primary);
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-main);
  transition: all var(--transition-smooth);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent-primary);
  box-shadow: 0 12px 30px rgba(41, 121, 255, 0.3);
  transform: translateY(-3px);
}

.btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--accent-primary);
  color: var(--accent-primary);
  background: transparent;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-main);
  transition: all var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(41, 121, 255, 0.1);
  box-shadow: 0 8px 24px rgba(41, 121, 255, 0.2);
  transform: translateY(-3px);
}

/* ========== ABOUT SECTIONS ========== */
.about-section {
  margin-bottom: 2rem;
  padding: 0 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.about-section-icon {
  font-size: 2.5rem;
  color: var(--accent-primary);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.about-section-content {
  padding: 2rem;
}

.about-section-content h2 {
  font-size: 1.8rem;
  border: none !important;
  padding: 0 !important;
  margin-bottom: 1.5rem;
}

.about-section-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ========== VALUES GRID ========== */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 0 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.value-card {
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-smooth);
  background: var(--surface-bg);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-main);
  box-shadow: var(--surface-shadow);
}

.value-card:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 12px 40px rgba(41, 121, 255, 0.15);
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2.8rem;
  color: var(--accent-primary);
  margin-bottom: 1rem;
  transition: transform var(--transition-smooth);
}

.value-card:hover .value-icon {
  animation: spin 0.8s ease-in-out;
}

@keyframes spin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.value-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ========== HIGHLIGHTS SECTION ========== */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 2rem;
  text-align: center;
  background: var(--surface-bg-soft);
  border-radius: var(--radius-main);
  border: 1px solid var(--surface-border);
  box-shadow: var(--surface-shadow);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-item {
  padding: 1.5rem;
}

.highlight-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.highlight-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* ========== SKILLS SECTION ========== */
.skills-group {
  margin-bottom: 2rem;
  padding: 2rem;
  background: var(--surface-bg-soft);
  border-radius: var(--radius-main);
  border: 1px solid var(--surface-border);
  box-shadow: var(--surface-shadow);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.skills-group:last-child {
  margin-bottom: 0;
}

.skills-group h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(41, 121, 255, 0.2);
}

.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.skill-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(41, 121, 255, 0.1), rgba(41, 121, 255, 0.05));
  color: var(--accent-primary);
  border: 1px solid rgba(41, 121, 255, 0.4);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-smooth);
}

.skill-badge:hover {
  background: var(--accent-primary);
  color: #ffffff;
  border-color: var(--accent-primary);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 16px rgba(41, 121, 255, 0.25);
}

/* ========== CONNECT SECTION ========== */
.about-connect {
  text-align: center;
  padding: 3rem;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, rgba(41, 121, 255, 0.05), rgba(41, 121, 255, 0.02));
  border-radius: var(--radius-main);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.about-connect h2 {
  border: none !important;
  padding: 0 !important;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.about-connect p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  color: var(--text-secondary);
}

.connect-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.connect-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
  background: transparent;
  border-radius: var(--radius-main);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.connect-btn:hover {
  background: var(--accent-primary);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(41, 121, 255, 0.3);
  transform: translateY(-3px);
}

/* ========== RESPONSIVE DESIGN FOR ABOUT ========== */
@media (max-width: 768px) {
  .about-hero {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .about-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-hero-info h1 {
    font-size: 2rem;
  }

  .about-hero-cta {
    gap: 1rem;
    flex-direction: column;
  }

  .btn-primary, .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
  }

  .photo-frame {
    width: 220px;
    height: 220px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .value-card {
    padding: 1.5rem;
  }

  .about-highlights {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem;
  }

  .highlight-item {
    padding: 1rem;
  }

  .skills-group {
    padding: 1.5rem;
  }

  .about-connect {
    padding: 2rem;
  }

  .connect-links {
    gap: 0.5rem;
    flex-direction: column;
  }

  .connect-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
  }

  .about-button-section {
    margin: 4rem auto;
  }
}
