/* style.css */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  background: #121212;
  color: #ffffff;
}
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}
.hero .intro {
  font-size: 3rem;
  margin: 0;
  animation: fadeIn 1.5s;
}
.hero .intro-subtitle {
  font-size: 1.5rem;
  margin: 10px 0;
  animation: fadeIn 2s;
}
.social-icons img {
  width: 40px;
  height: 40px;
  margin: 10px;
  transition: transform 0.3s ease;
}
.social-icons img:hover {
  transform: scale(1.2);
}
.section {
  padding: 50px 20px;
  background: rgba(0, 0, 0, 0.7);
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.project {
  margin-bottom: 20px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.5s forwards;
}
.fade-in-delay {
  opacity: 0;
  animation: fadeIn 1.5s 0.5s forwards;
}
.fade-in-delay-2 {
  opacity: 0;
  animation: fadeIn 1.5s 1s forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.gallery-grid img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .hero .intro {
    font-size: 2rem;
  }

  .hero .intro-subtitle {
    font-size: 1.2rem;
  }

  .container {
    padding: 20px;
  }
}
