/* css/what-i-do.css */

.what-i-do-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  overflow: hidden;
}

.content-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.text-content {
  flex: 1;
}

.do-list {
  list-style: none;
  margin-top: 2rem;
}

.do-list li {
  font-size: 1.2rem;
  color: var(--text-secondary);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.do-list li::before {
  content: '→';
  color: var(--accent);
  margin-right: 16px;
  font-family: var(--font-mono);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.do-list li:hover {
  color: var(--text-primary);
  padding-left: 10px;
}

.do-list li:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.visual-content {
  flex: 1;
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.abstract-shape {
  position: absolute;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--glow-color) 0%, transparent 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
}

.shape-2 {
  width: 250px;
  height: 250px;
  background: var(--bg-tertiary);
  transform: rotate(15deg) translate(40px, 40px);
  z-index: 1;
}

/* Glass Box Content */
.glass-content {
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Terminal Mockup */
.terminal-mockup {
  justify-content: flex-start;
}

.term-bar {
  margin-bottom: 24px;
}

.term-dots {
  display: flex;
  gap: 6px;
}

.term-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
}

.term-dots span:nth-child(1) { background: #FF5F56; }
.term-dots span:nth-child(2) { background: #FFBD2E; }
.term-dots span:nth-child(3) { background: #27C93F; }

.term-text {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.8;
}

.term-text .prompt { color: #27C93F; margin-right: 8px;}
.term-text .output { color: var(--text-secondary); margin-top: 4px; }

/* Metrics Mockup */
.metrics-mockup {
  justify-content: center;
  gap: 24px;
  opacity: 0.7;
}

.metric-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.metric-label {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  text-transform: uppercase;
}

.metric-bar {
  width: 100%;
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
  overflow: hidden;
}

.metric-bar .fill {
  display: block;
  height: 100%;
  background: var(--text-primary);
  border-radius: 2px;
}

.fill-1 { width: 45%; background: #79C0FF !important; }
.fill-2 { width: 70%; background: #D2A8FF !important; }
.fill-3 { width: 30%; background: #27C93F !important; }

@media (max-width: 992px) {
  .content-wrapper {
    flex-direction: column;
  }
  
  .visual-content {
    width: 100%;
    margin-top: 40px;
  }
}
