/* HERO SECTION */

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 120px 8%;
  background:
    radial-gradient(circle at top left, #f3e8ff 0%, transparent 35%);
}

.hero-text {
  max-width: 700px;
}

.small-title {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 20px;
  color: #6b21a8;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #6b21a8;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 600px;
  opacity: 0.8;
  margin-bottom: 35px;
  color: #444;
}

/* BUTTONS */

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.primary-btn {
  background: #7c3aed;
  color: white;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.25);
}

.primary-btn:hover {
  transform: translateY(-3px);
  background: #6d28d9;
}

.secondary-btn {
  border: 1px solid #d8b4fe;
  color: #6b21a8;
  background: white;
}

.secondary-btn:hover {
  transform: translateY(-3px);
  background: #faf5ff;
}

/* PROJECTS SECTION */

.projects-section {
  padding: 100px 8%;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  opacity: 0.6;
  margin-bottom: 15px;
  color: #6b21a8;
}

.projects-section h2,
.skills-section h2,
.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #111;
}

/* GRID */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* PROJECT CARD */

.project-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: #c084fc;
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.12);
}

/* PROJECT IMAGE */

.project-image {
  height: 240px;
  width: 100%;
  object-fit: cover;
}

.emoji-card {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: linear-gradient(135deg, #faf5ff, #f3e8ff);
}

/* CONTENT */

.project-content {
  padding: 30px;
}

.project-type {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 12px;
  color: #6b21a8;
}

.project-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #111;
}

.project-content p {
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 20px;
  color: #444;
}

.project-link {
  text-decoration: none;
  font-weight: 600;
  color: #7c3aed;
}

/* SKILLS */

.skills-section {
  padding: 100px 8%;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.skills-list span {
  padding: 12px 20px;
  border-radius: 999px;
  background: #f3e8ff;
  color: #6b21a8;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.skills-list span:hover {
  transform: translateY(-3px);
  background: #e9d5ff;
}

/* CONTACT */

.contact-section {
  padding: 120px 8%;
  text-align: center;
}

.contact-section p {
  max-width: 600px;
  margin: 0 auto 35px;
  line-height: 1.8;
  opacity: 0.8;
  color: #444;
}

/* ANIMATIONS */

.project-card,
.primary-btn,
.secondary-btn,
.skills-list span {
  transition: all 0.3s ease;
}

.hero {
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {

  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

/* RESPONSIVE */

@media (max-width: 768px) {

  .hero {
    padding-top: 140px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .projects-section h2,
  .skills-section h2,
  .contact-section h2 {
    font-size: 2rem;
  }

}