@tailwind base;
@tailwind components;
@tailwind utilities;

body { 
  font-family: 'Inter', sans-serif;
}

.skill-card {
  border: 1px solid #1E7C82;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  position: relative;
}

.skill-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 55px;
}

.skill-name {
  background-color: #1E7C82;
  color: white;
  padding: 8px;
  border-radius: 0 0 8px 8px;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.timeline-point {
  position: relative;
  width: 12px;
  height: 12px;
  background-color: #333;
  border-radius: 50%;
  margin-left: -10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.experience-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  padding-left: 2rem;
  margin-left: 2rem;
}

.experience-card img {
  border-radius: 8px;
  margin-left: 2rem;
  margin-bottom: 1rem;
  width: 75%;
}

.experience-title {
  margin-left: 2rem;
  font-size: 32px;
  font-weight: 600;
}

.experience-company {
  margin-left: 2rem;
  font-size: 24px;
  font-weight: 700;
  color: #828282;
}

.project-card {
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.project-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.social-link {
  color: #4B5563;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #1E7C82;
  transform: translateY(-3px);
}

footer a {
  transition: all 0.3s ease;
}

footer a:hover {
  color: #1E7C82;
}

@media (max-width: 768px) {
  .skill-card {
    padding: 12px;
  }

  .skill-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 45px;
  }

  .skill-name {
    font-size: 14px;
    padding: 6px;
  }

  .experience-card {
    margin-left: 0;
    padding-left: 1rem;
  }

  .experience-card img {
    margin-left: 0;
    width: 100%;
  }

  .experience-title {
    margin-left: 0;
    font-size: 24px;
  }

  .experience-company {
    margin-left: 0;
    font-size: 18px;
  }

  .project-card {
    padding: 1rem;
  }

  .project-card img {
    height: 200px;
  }
}

@media (max-width: 640px) {
  .social-link svg {
    width: 24px;
    height: 24px;
  }
}