.hero-about {
    background-image: url("/imgs/hero/about-bg.webp");
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
  }
/* About Intro Section */
.about-intro {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-gray-dark) 50%, var(--color-dark) 100%);
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.about-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(123, 66, 246, 0.1) 0%, transparent 50%),
    linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.02) 50%, transparent 60%);
  animation: matrixFlow 20s linear infinite;
  z-index: 1;
}

.intro-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 2;
}

.about-section-title {
  font-size: var(--text-5xl);
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-primary) 50%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
  animation: titleReveal 1.2s ease-out;
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.joe-portrait {
  width: 280px;
  height: 280px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  border: 3px solid var(--color-primary);
  box-shadow: 
    0 20px 40px rgba(0, 212, 255, 0.3),
    0 0 60px rgba(0, 212, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.joe-portrait:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 
    0 25px 50px rgba(0, 212, 255, 0.4),
    0 0 80px rgba(0, 212, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

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

.intro-text p {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  animation: textReveal 0.8s ease-out;
}

.intro-text p:nth-child(2) {
  animation-delay: 0.2s;
}

.intro-text p:nth-child(3) {
  animation-delay: 0.4s;
}

.inline-link {
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.inline-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.inline-link:hover {
  color: var(--color-secondary);
  text-shadow: 0 0 15px rgba(123, 66, 246, 0.4);
}

.inline-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Animations */
@keyframes titleReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes matrixFlow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

/* Responsive */
@media (min-width: 768px) {
  .intro-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    text-align: left;
  }
  
  .intro-text {
    text-align: left;
  }
  
  .joe-portrait {
    width: 320px;
    height: 320px;
  }
  
  .about-section-title {
    font-size: var(--text-6xl);
  }
}

@media (min-width: 1024px) {
  .about-intro {
    padding: var(--spacing-xxl) 0;
  }
  
  .joe-portrait {
    width: 360px;
    height: 360px;
  }
  
  .intro-text p {
    font-size: var(--text-xl);
  }
}
/* Values Section */
.values-section {
  background: var(--color-dark);
  padding: var(--spacing-xl) 0;
  position: relative;
}

.values-section .section-title {
  color: var(--color-light);
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 2;
}

.values-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.values-content p {
  font-size: var(--text-base);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-md);
}

.values-content strong {
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}

/* Responsive */
@media (min-width: 768px) {
  .values-content p {
    font-size: var(--text-lg);
  }
}
/* About Timeline Section */
.about-timeline {
  background: var(--color-gray-dark);
  padding: var(--spacing-xl) 0;
  position: relative;
}

.timeline-item {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 60px;
  bottom: -var(--spacing-xl);
  width: 2px;
  background: linear-gradient(to bottom, 
    var(--color-primary) 0%, 
    transparent 100%);
  z-index: 1;
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.timeline-icon svg {
  width: 24px;
  height: 24px;
}

.timeline-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.timeline-flex {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.timeline-text h3 {
  font-size: var(--text-2xl);
  color: var(--color-light);
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.spanish-title {
  color: var(--color-secondary);
  font-weight: var(--font-weight-bold);
  font-size: var(--text-lg);
  margin-bottom: var(--spacing-md);
  text-shadow: 0 0 10px rgba(123, 66, 246, 0.3);
}

.timeline-text p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.timeline-text strong {
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}

.timeline-image {
  text-align: center;
}

.about-img {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.about-img:hover {
  transform: scale(1.02);
  border-color: var(--color-primary);
  box-shadow: 0 12px 35px rgba(0, 212, 255, 0.2);
}

.image-caption {
  color: var(--color-gray);
  font-size: var(--text-sm);
  margin-top: var(--spacing-sm);
  font-style: italic;
}

/* Secret Section */
.secret-details {
  border: 1px solid rgba(123, 66, 246, 0.3);
  border-radius: var(--radius-lg);
  background: rgba(123, 66, 246, 0.05);
  overflow: hidden;
}

.secret-summary {
  padding: var(--spacing-lg);
  background: rgba(123, 66, 246, 0.1);
  color: var(--color-light);
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  list-style: none;
  transition: all 0.3s ease;
}

.secret-summary:hover {
  background: rgba(123, 66, 246, 0.2);
}

.secret-summary::marker {
  display: none;
}

.secret-summary::-webkit-details-marker {
  display: none;
}

.secret-content {
  padding: var(--spacing-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.secret-content p {
  margin-bottom: var(--spacing-md);
}

/* Responsive */
@media (min-width: 768px) {
  .timeline-flex {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
  }
  
  .timeline-flex-reverse {
    direction: rtl;
  }
  
  .timeline-flex-reverse > * {
    direction: ltr;
  }
  
  .about-img {
    max-width: 300px;
  }
}

@media (min-width: 1024px) {
  .about-img {
    max-width: 350px;
  }
}
/* Bible Verse Section */
.about-verse {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-secondary-dark) 100%);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.about-verse::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.verse-quote {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.verse-quote p {
  font-size: var(--text-xl);
  color: var(--color-light);
  line-height: 1.5;
  font-style: italic;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin: 0;
}

.verse-quote p::before,
.verse-quote p::after {
  content: '"';
  color: var(--color-primary-light);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
}

/* Responsive */
@media (max-width: 768px) {
  .verse-quote p {
    font-size: var(--text-lg);
  }
}