body {
  background: #0f0f0f;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.5);
  padding: 15px 0;
}

.logo {
  font-weight: bold;
}

/* HERO */
.hero {
  height: 100vh;
  background: linear-gradient(270deg, #0f0f0f, #1c1c1c);
  background-size: 400% 400%;
  animation: gradient 12s ease infinite;
}

.subtitle {
  opacity: 0.8;
}

/* Gradient animation */
@keyframes gradient {
  0% {background-position: 0%}
  50% {background-position: 100%}
  100% {background-position: 0%}
}

/* CARDS */
.card-custom {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 15px;
  transition: 0.3s;
}

.card-custom:hover {
  transform: translateY(-10px);
  background: #222;
}

/* PORTFOLIU */
.project-card {
  height: 200px;
  background: #1c1c1c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA */
.cta {
  background: #111;
}

/* BUTTON */
.btn-primary {
  background: #007bff;
  border: none;
}

.btn-primary:hover {
  background: #0056b3;
}

.project-card {
  position: relative;
  height: 200px;
  background: #1c1c1c;
  border-radius: 10px;
  overflow: hidden;
}

.project-card .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}

.project-card:hover .overlay {
  opacity: 1;
}

.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: 0.1s;
  z-index: 9999;
}

.btn {
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}