/* Tech menu styles */
#project-menu {
  background: linear-gradient(135deg, #232526 0%, #414345 100%);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  padding: 32px 24px;
  max-width: 400px;
  margin: 40px auto;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}

.tech-title {
  font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 24px;
  color: #00ffe7;
  text-shadow: 0 0 8px #00ffe7, 0 0 2px #fff;
}

.tech-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.tech-menu li {
  margin: 16px 0;
}

.tech-menu a {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  background: rgba(0,255,231,0.08);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-family: 'Roboto Mono', monospace;
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s;
  border: 1px solid transparent;
}

.tech-menu a:hover {
  background: rgba(0,255,231,0.18);
  color: #00ffe7;
  border: 1px solid #00ffe7;
  box-shadow: 0 0 8px #00ffe7;
}

.tech-icon {
  margin-right: 12px;
  font-size: 1.3em;
}

.tech-btn {
  display: block;
  width: 100%;
  padding: 12px 0;
  background: linear-gradient(90deg, #00ffe7 0%, #007cf0 100%);
  color: #232526;
  font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px #00ffe7;
  transition: background 0.2s, color 0.2s;
}

.tech-btn:hover {
  background: linear-gradient(90deg, #007cf0 0%, #00ffe7 100%);
  color: #fff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
}

.project-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.project-card img {
  max-width: 100%;
  border-radius: 8px;
}

.project-card h3 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
}

.project-card p {
  font-size: 0.95rem;
  color: #555;
}

.project-card .btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

.project-card .btn:hover {
  background-color: #2980b9;
}
