/* About Layout - Grid layouts, columns, and structural styles */

/* Main columns layout */
.about-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.about-left, .about-right {
  width: 100%;
}

/* Desktop layout */
@media (min-width: 1100px) {
  .about-columns {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }

  .about-left, .about-right {
    flex: 1;
  }

  .about-left {
    flex: 0 0 45%;
    max-width: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-right {
    flex: 1;
    max-width: 600px;
  }

  .team-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2.2rem;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    align-items: stretch;
  }

  .about-card {
    max-width: 370px;
    min-width: 260px;
    flex: 1 1 320px;
  }
}

/* About intro section */
.about-intro {
  position: relative;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(24, 25, 42, 0.6);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.about-intro p {
  font-size: 1.08rem;
  text-align: center;
  margin-bottom: 1.2rem;
  line-height: 1.6;
  color: #e0e0e0;
}

/* About divider */
.about-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00fff7, #ff00cc, transparent);
  margin: 2rem 0;
  box-shadow: 0 0 8px #00fff7, 0 0 16px #ff00cc;
  width: 400px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* About blocks container */
.about-blocks-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* About block base styles */
.about-block {
  position: relative;
  background: rgba(24, 25, 42, 0.8);
  border: 2px solid #00fff7;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  overflow: hidden;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  overflow-x: auto;
}

.about-block:last-child {
  margin-bottom: 0;
}

.about-block * {
  box-sizing: border-box;
  min-width: 0;
  word-break: break-word;
}

.skills-cloud, .about-block .skills-cloud-badges {
  flex-wrap: wrap !important;
  overflow-x: auto;
  max-width: 100%;
}

/* About block headings */
.about-block h3 {
  color: #00fff7;
  text-shadow: 0 0 8px #00fff7, 0 0 16px #ff00cc;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
}

/* About block paragraphs */
.about-block p {
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-shadow: 0 0 4px rgba(255,255,255,0.3);
}

.about-block p:last-child {
  margin-bottom: 0;
}

/* About infobar styles moved to about-cards.css */

/* About info styles moved to about-cards.css */

/* Neon keyword styles */
.neon-keyword {
  color: #00fff7;
  font-weight: 600;
}

/* Highlight styles */
.highlight {
  color: #ff00cc;
  font-weight: 600;
}

/* Neon text styles */
.neon-text {
  color: #00fff7;
  font-weight: 600;
}

/* About icon styles */
.about-icon {
  display: inline-block;
  margin-right: 0.5rem;
}

/* Animated underline */
.animated-underline {
  position: relative;
  display: inline-block;
}

.animated-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #00fff7, #ff00cc);
}

/* Container spacing */
.about-section {
  padding: 3rem 0;
  /* Removed position: relative to allow sticky positioning */
}

/* Section wrapper */
.about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Content spacing */
.about-content {
  position: relative;
  z-index: 10;
}

/* Background positioning */
.about-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Responsive container adjustments */
@media (max-width: 1200px) {
  .about-columns {
    max-width: 1000px;
  }
}

@media (max-width: 1000px) {
  .about-columns {
    max-width: 800px;
  }
}

@media (max-width: 800px) {
  .about-columns {
    max-width: 600px;
  }
}

@media (max-width: 600px) {
  .about-block, .about-intro {
    max-width: 98%;
    padding: 1rem;
  }
  .skills-cloud, .about-block .skills-cloud-badges {
    gap: 0.3rem;
    padding: 0.2rem 0;
  }
  .skill-badge, .skills-cloud-badges .skill-badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.5rem;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0.1rem;
    word-break: break-word;
  }
  .about-block h3 {
    font-size: 1.1rem;
  }
  .about-block p {
    font-size: 0.95rem;
  }
} 

.about-infobar {
  width: 95%;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  align-self: center;
  box-sizing: border-box;
  margin-bottom: 20px;
} 

.tech-tools-block {
  max-width: 400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
} 