@import 'theme.css';
@import 'typography.css';
@import 'layout.css';
@import 'components.css';
@import 'animations.css';
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-color);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-text {
  max-width: 600px;
}
.hero-text h1 {
  margin-bottom: var(--space-2);
  position: relative;
  display: inline-block;
}
.hero-text h2 {
  margin-bottom: var(--space-3);
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
}
.hero-text p {
  margin-bottom: var(--space-5);
  font-size: var(--font-size-md);
  color: var(--text-muted);
}
.hero-btns {
  display: flex;
  gap: var(--space-3);
}
.hero-image {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--primary-color-rgb), 0.1);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphShape 10s ease-in-out infinite;
}
@keyframes morphShape {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--text-color);
  border-radius: 20px;
  position: relative;
  margin-bottom: 10px;
}
.wheel {
  width: 6px;
  height: 6px;
  background-color: var(--text-color);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s ease infinite;
}
@keyframes scroll {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }
}
.scroll-text {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}
#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-6);
  align-items: center;
}
.about-image {
  display: flex;
  justify-content: center;
}
.image-frame {
  width: 300px;
  height: 300px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  background-color: rgba(var(--primary-color-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
}
.image-placeholder {
  font-size: 5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
}
.about-text p {
  margin-bottom: var(--space-4);
  font-size: var(--font-size-md);
  line-height: var(--line-height-loose);
}
.about-info {
  margin-bottom: var(--space-4);
}
.info-item {
  display: flex;
  margin-bottom: var(--space-2);
}
.info-title {
  min-width: 120px;
  font-weight: var(--font-weight-semibold);
}
.social-links {
  display: flex;
  gap: var(--space-3);
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(var(--primary-color-rgb), 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.social-link:hover {
  background-color: var(--primary-color);
  color: white;
}
.skill-category {
  margin-bottom: var(--space-6);
}
.skill-category h3 {
  margin-bottom: var(--space-4);
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-2);
}
.skill-category h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-5);
}
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10px;
  width: 2px;
  height: 100%;
  background-color: var(--primary-color);
}
.timeline-item {
  position: relative;
  padding-left: 40px;
  margin-bottom: var(--space-5);
}
.timeline-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: 4px solid var(--bg-color);
  z-index: 1;
}
.timeline-content {
  background-color: var(--card-bg);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--box-shadow);
}
.timeline-date {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(var(--primary-color-rgb), 0.1);
  color: var(--primary-color);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-2);
}
.timeline-title {
  margin-bottom: var(--space-2);
  font-size: var(--font-size-md);
}
.timeline-company {
  color: var(--text-muted);
  margin-bottom: var(--space-3);
  font-size: var(--font-size-sm);
}
.achievements-grid, .certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-4);
}
.achievement-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}
.achievement-card h3 {
  margin-bottom: var(--space-2);
  font-size: var(--font-size-md);
}
.achievement-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(var(--primary-color-rgb), 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-details h4 {
  margin-bottom: var(--space-1);
  font-size: var(--font-size-sm);
}
.contact-details p {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
}
.contact-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.contact-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(var(--primary-color-rgb), 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.contact-social-link:hover {
  background-color: var(--primary-color);
  color: white;
}
@media screen and (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-text {
    margin-bottom: var(--space-5);
  }
  .hero-btns {
    justify-content: center;
  }
  .about-content {
    grid-template-columns: 1fr;
  }
  .contact-content {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .achievements-grid, .certifications-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .hero-btns .btn {
    width: 100%;
  }
  .image-frame {
    width: 250px;
    height: 250px;
  }
}
