/* Task Juggler Project Specific Styles */

/* Project Overview Section */
.tj-project-overview {
  padding: 5rem 0;
  background: linear-gradient(145deg, #0a0a12, #13131d);
  margin-bottom: 0;
  position: relative;
}

.tj-project-overview::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(93, 63, 211, 0.5), transparent);
}

.tj-project-overview .container {
  max-width: 1000px;
  margin: 0 auto;
}

.tj-project-overview h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #fff;
  position: relative;
  display: inline-block;
}

.tj-project-overview h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #5D3FD3;
  border-radius: 2px;
}

.tj-overview-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.tj-overview-text {
  flex: 1;
}

.tj-overview-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #dbdbdb;
  margin-bottom: 2rem;
}

.tj-overview-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  border-top: 1px solid rgba(93, 63, 211, 0.2);
  padding-top: 2rem;
}

.tj-stat {
  text-align: center;
}

.tj-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #5D3FD3;
  margin-bottom: 0.5rem;
}

.tj-stat-label {
  font-size: 0.9rem;
  color: #b0b0b0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Features Section */
.tj-features {
  padding: 5rem 0;
  background: #0a0a12;
  position: relative;
}

.tj-features::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(93, 63, 211, 0.5), transparent);
}

.tj-features .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.tj-features h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3.5rem;
  color: #fff;
  position: relative;
  display: inline-block;
}

.tj-features h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #5D3FD3;
  border-radius: 2px;
}

.tj-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.tj-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(26, 26, 36, 0.4);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tj-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #5D3FD3;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.tj-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.tj-feature:hover::before {
  opacity: 1;
}

.tj-feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(93, 63, 211, 0.1);
  border-radius: 12px;
  margin-top: 0.5rem;
}

.tj-feature-icon i {
  font-size: 1.8rem;
  color: #5D3FD3;
}

.tj-feature-content {
  flex: 1;
}

.tj-feature-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.tj-feature-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #b0b0b0;
}

/* Technical section */
.tj-tech {
  padding: 5rem 0;
  background: linear-gradient(145deg, #0a0a12, #13131d);
}

.tj-tech .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.tj-tech h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3.5rem;
  color: #fff;
  position: relative;
  display: inline-block;
}

.tj-tech h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #5D3FD3;
  border-radius: 2px;
}

.tj-tech-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}

.tj-tech-section {
  background: rgba(26, 26, 36, 0.4);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.tj-tech-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(145deg, rgba(93, 63, 211, 0.05), transparent);
  pointer-events: none;
}

.tj-tech-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #5D3FD3;
  position: relative;
  padding-bottom: 0.8rem;
}

.tj-tech-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #5D3FD3;
  border-radius: 1.5px;
}

.tj-tech-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #dbdbdb;
  margin-bottom: 1.5rem;
}

.tj-tech-section ul {
  padding-left: 1.2rem;
}

.tj-tech-section li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #b0b0b0;
  margin-bottom: 0.8rem;
  position: relative;
}

.tj-tech-section li::marker {
  color: #5D3FD3;
}

/* UX Section */
.tj-ux {
  padding: 5rem 0;
  background: #0a0a12;
}

/* Responsive styles */
@media (max-width: 992px) {
  .tj-overview-content {
    flex-direction: column;
  }
  
  .tj-features-grid {
    grid-template-columns: 1fr;
  }
  
  .tj-tech-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .tj-feature {
    flex-direction: column;
  }
  
  .tj-feature-icon {
    margin-bottom: 1rem;
  }
  
  .tj-overview-stats {
    flex-direction: column;
    gap: 2rem;
  }
}
