* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom right, #111, #000);
  color: #fff;
  line-height: 1.6;
}
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  background: url('assets/hero.jpg') no-repeat center center/cover;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.btn {
  display: inline-block;
  background: #ec4899;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #db2777;
}
.section {
  padding: 4rem 2rem;
  text-align: center;
}
.section.dark {
  background: #1a1a1a;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  font-weight: bold;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.card {
  background: #111;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.portfolio-card {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.portfolio-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.portfolio-text {
  padding: 1.5rem;
  text-align: left;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: auto;
}
.contact-form input, .contact-form textarea {
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #333;
  background: #222;
  color: #fff;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: #ec4899;
}
.footer {
  padding: 1.5rem;
  text-align: center;
  background: #0a0a0a;
  font-size: 0.9rem;
  color: #aaa;
}
/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s forwards;
}
.fade-in.delay-1 {
  animation-delay: 0.5s;
}
.fade-in.delay-2 {
  animation-delay: 1s;
}
.slide-up {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1s forwards;
}
.slide-up.delay-1 {
  animation-delay: 0.5s;
}
.slide-up.delay-2 {
  animation-delay: 1s;
}
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
