/* Deluxe Portfolio Styles */
body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background: #0f0f0f;
  color: #fff;
}

.hero {
  background: linear-gradient(135deg, #1e1e1e, #111);
  text-align: center;
  padding: 100px 20px;
}

.highlight {
  color: #00ffd1;
}

.subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
}

.cta-button {
  background: #00ffd1;
  color: #000;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 20px;
  display: inline-block;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #00c5a5;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin: 60px 0 20px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.project-card {
  background: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-info {
  padding: 20px;
}

.project-info a {
  display: inline-block;
  margin-right: 10px;
  color: #00ffd1;
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 40px 20px;
  background: #111;
  font-size: 0.9rem;
}

.lottie-container {
  width: 300px;
  margin: auto;
  margin-bottom: 20px;
}
