/* CV Styles - Clean and Organized */

body {
  background: #212121;
  color: #e0e0e0;
  font-family: "Segoe UI", "Roboto", Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.cv-container {
  max-width: 900px;
  margin: 40px auto;
  background: #181818;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  padding: 32px;
}

.cv-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 24px;
}

.cv-header {
  flex: 1;
  min-width: 200px;
}

.cv-title {
  font-size: 2.2rem;
  color: #ffffff;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.blockquote-footer {
  font-size: 1.1rem;
  color: #e0e0e0;
  font-weight: 400;
  margin: 0;
  font-style: italic;
}

.img {
  flex: 0 0 auto;
}
.img img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  display: block;
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.cv-contact {
  display: flex;
  gap: 24px;
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 24px;
}
.cv-contact a {
  color: #e0e0e0;
  text-decoration: none;
}
.cv-contact a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.cv-section {
  margin-bottom: 32px;
}
.cv-section .section-title {
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.cv-section p {
  line-height: 1.6;
  margin: 0;
}
.cv-section ul, .cv-section ol {
  margin: 0;
  padding-left: 20px;
}
.cv-section li {
  margin-bottom: 8px;
}

.cv-skills {
  margin-bottom: 32px;
}
.cv-skills .section-title {
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.cv-skills ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cv-skills li {
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.cv-skills li h3 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
}
.cv-skills li p {
  color: #f5f5f5;
  line-height: 1.5;
  margin: 0;
}

.projects-section {
  margin-bottom: 32px;
}
.projects-section .section-title {
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.projects-section .projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.projects-section .projects-grid .project-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.projects-section .projects-grid .project-card h3 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 12px 0;
}
.projects-section .projects-grid .project-card p {
  color: #f5f5f5;
  line-height: 1.5;
  margin: 0 0 16px 0;
}
.projects-section .projects-grid .project-card a {
  color: #64b5f6;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 16px;
  background: rgba(100, 181, 246, 0.1);
  border-radius: 6px;
  display: inline-block;
  transition: all 0.3s ease;
}
.projects-section .projects-grid .project-card a:hover {
  background: rgba(100, 181, 246, 0.2);
  color: #90caf9;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .cv-container {
    margin: 20px auto;
    padding: 20px;
  }
  .cv-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .cv-header {
    min-width: auto;
  }
  .cv-title {
    font-size: 1.8rem;
  }
  .img img {
    width: 120px;
    height: 120px;
  }
  .cv-contact {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .projects-section .projects-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}