/*
 *  /\_/\  
 * ( o.o ) 
 *  > ^ <
 * CV Styles
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
  color: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 182, 193, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 192, 203, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 218, 224, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* CV Container */
.cv-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 182, 193, 0.1);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(255, 182, 193, 0.1);
  position: relative;
}

/* Header */
.cv-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(255, 182, 193, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 182, 193, 0.15);
}

.profile-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.profile-info h1 {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(45deg, #ff69b4, #ffb6c1, #ffe4e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(255, 182, 193, 0.3);
}

.title {
  font-size: 1.3rem;
  color: #ff69b4;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.age {
  font-size: 1.1rem;
  color: #cccccc;
  font-weight: 500;
}

.contact-info {
  text-align: left;
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-weight: 500;
}

/* Sections */
.cv-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 15px;
  border: 1px solid rgba(255, 182, 193, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cv-section:hover {
  border-color: rgba(255, 182, 193, 0.2);
  box-shadow: 0 10px 30px rgba(255, 182, 193, 0.1);
}

.cv-section h2 {
  background: linear-gradient(45deg, #ff69b4, #ffb6c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: -1px;
}

.cv-section p {
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Education */
.education-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 182, 193, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 182, 193, 0.1);
}

.education-item h3 {
  color: #ff69b4;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.degree {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.period {
  color: #ff69b4;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.description {
  color: #cccccc;
  font-size: 1rem;
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.skill-category {
  padding: 1.5rem;
  background: rgba(255, 182, 193, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 182, 193, 0.1);
}

.skill-category h3 {
  color: #ff69b4;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  background: rgba(255, 182, 193, 0.1);
  color: #ff69b4;
  border: 1px solid rgba(255, 182, 193, 0.3);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-tag:hover {
  background: rgba(255, 182, 193, 0.2);
  border-color: #ff69b4;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 182, 193, 0.3);
}

/* Projects */
.project-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 182, 193, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 182, 193, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-item:hover {
  border-color: rgba(255, 182, 193, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 182, 193, 0.15);
}

.project-item h3 {
  color: #ff69b4;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.project-description {
  color: #cccccc;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  background: rgba(255, 182, 193, 0.15);
  color: #ff69b4;
  border: 1px solid rgba(255, 182, 193, 0.4);
  border-radius: 15px;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Languages */
.languages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.language-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 182, 193, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 182, 193, 0.1);
}

.language {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
}

.level {
  color: #ff69b4;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Interests */
.interests {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.interest-tag {
  background: rgba(255, 182, 193, 0.1);
  color: #ff69b4;
  border: 1px solid rgba(255, 182, 193, 0.3);
  border-radius: 25px;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interest-tag:hover {
  background: rgba(255, 182, 193, 0.2);
  border-color: #ff69b4;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 182, 193, 0.3);
}

/* Language Button CV */
.language-btn-cv {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(45deg, #ff69b4, #ffb6c1);
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(255, 182, 193, 0.3);
  z-index: 10;
}

.language-btn-cv:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 182, 193, 0.4);
  background: linear-gradient(45deg, #ffb6c1, #ff69b4);
}

/* Download Button */
.download-btn {
  background: linear-gradient(45deg, #ff69b4, #ffb6c1);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 1rem;
  box-shadow: 0 8px 25px rgba(255, 182, 193, 0.3);
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 182, 193, 0.4);
  background: linear-gradient(45deg, #ffb6c1, #ff69b4);
}

/* Footer */
.cv-footer {
  text-align: center;
  padding: 2rem;
  color: #888888;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 182, 193, 0.1);
  margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cv-container {
    padding: 1rem;
    margin: 1rem;
  }
  
  .profile-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .profile-info h1 {
    font-size: 2.5rem;
  }
  
  .contact-info {
    text-align: center;
  }
  
  .skills-grid {
    grid-template-columns: 1fr;
  }
  
  .languages {
    grid-template-columns: 1fr;
  }
  
  .cv-section {
    padding: 1.5rem;
  }
  
  .cv-section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .cv-container {
    padding: 0.5rem;
    margin: 0.5rem;
  }
  
  .profile-info h1 {
    font-size: 2rem;
  }
  
  .title {
    font-size: 1.1rem;
  }
  
  .cv-section {
    padding: 1rem;
  }
  
  .cv-section h2 {
    font-size: 1.5rem;
  }
  
  .skill-tag, .tech-tag, .interest-tag {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
} 