/**
 * ABOUT COMPONENT
 * 
 * Styles for the about me section
 */

/* About Section */
.about {
  background-color: var(--bg-color-alt);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

/* Standard container and heading styles already defined in base.css */

/* About Content Layout */
.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

/* About Image */
.about-image {
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  justify-self: start;
  text-align: left;
}

.about-image img {
  image-rendering: auto;
  border: 2px solid #4895ef; /* borde azul */
  box-shadow: 0 10px 30px var(--shadow-color);
}

/* About Text Content */
.about-text {
  color: var(--text-color);
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.about-text h3::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -5px;
  left: 0;
}

.about-text p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  color: var(--text-color);
}

/* About Details */
.about-details {
  margin-top: 2rem;
}

.detail-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(var(--primary-color-rgb), 0.1);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.detail-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.detail-content p {
  font-size: 0.9rem;
  color: var(--text-color-light);
  margin-bottom: 0;
}

.gradient-text {
  background: linear-gradient(
    90deg,
    #ff005d,
    #ffa600,
    #00ffd5,
    #0061ff,
    #ff005d
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-animation 8s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.about-name {
  font-family: "Playball", sans-serif;
  font-size: 28px;
  text-align: left;
  display: block;
  margin-top: 1.33rem;
  margin-bottom: 0.2rem;
  font-weight: 500;
}

.about-role {
  font-family: "Playball", sans-serif;
  font-size: 18px;
  text-align: left;
  display: block;
  margin-top: 0.1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

a {
  color: var(--primary-color);
  text-decoration: none; /* opcional */
}

a:hover {
  color: var(--primary-color);
  opacity: 0.8; /* opcional */
}

/* Responsive styles in responsive.css */
