@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

@keyframes progressBar {
  from {
    width: 0;
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.fade-in {
  animation: fadeIn 0.8s ease-out 0.4s backwards;
}

.fade-in-up-delay {
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.nav-link.active ::after {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.nav-link.active.visible {
  opacity: 1;
  transform: translateY(0);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.6;
  overflow-x: hidden;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: 0.3s ease;
}

.nav.scrolled {
  background-color: rgba(23, 23, 23, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  cursor: pointer;
  transition: transform 0.15s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(to right, #f5f5f5, #a3a3a3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  position: relative;
  background: none;
  border: none;
  color: #a3a3a3;
  font-size: 0.875rem;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: #f5f5f5;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #f5f5f5;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #0a0a0a;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #171717, #0a0a0a, #000);
}

.hero-dots {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title-gradient {
  display: block;
  background: linear-gradient(to right, #f5f5f5, #d4d4d4, #737373);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  color: #a3a3a3;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background-color: #262626;
  border-radius: 50%;
  color: #f5f5f5;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #404040;
  transform: scale(1.1);
}

.social-link:active {
  transform: scale(0.95);
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
  color: #a3a3a3;
  cursor: pointer;
  transition: color 0.3s ease;
  animation: bounce 2s infinite;
}

.scroll-down:hover {
  color: #f5f5f5;
}

.section {
  position: relative;
  min-height: 100vh;
  padding: 5rem 0;
}

.section-gradient {
  position: absolute;
  inset: 0;
}

.container {
  position: relative;
  z-index: 10;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  color: #a3a3a3;
  max-width: 42rem;
  margin: 0 auto;
}

.experience-section {
  background-color: #0a0a0a;
}

.experience-section .section-gradient {
  background: linear-gradient(to bottom, #000, #0a0a0a, #171717);
}

.experience-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.experience-card {
  position: relative;
  transition: transform 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
}

.experience-card:hover .card-glow {
  filter: blur(40px);
}

.experience-card:hover .card-content {
  border-color: #404040;
}

.experience-card:hover .card-icon {
  background-color: #404040;
}

.card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(38, 38, 38, 0.5), rgba(23, 23, 23, 0.5));
  border-radius: 1rem;
  filter: blur(24px);
  transition: filter 0.3s ease;
}

.card-content {
  position: relative;
  background-color: rgba(23, 23, 23, 0.8);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid #262626;
  border-radius: 1rem;
  padding: 2rem;
  transition: border-color 0.3s ease;
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card-icon {
  padding: 0.75rem;
  background-color: #262626;
  border-radius: 0.75rem;
  color: #d4d4d4;
  transition: background-color 0.3s ease;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.card-subtitle {
  font-size: 0.875rem;
  color: #a3a3a3;
}

.card-description {
  color: #d4d4d4;
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

.tag {
  padding: 0.25rem 0.75rem;
  background-color: rgba(38, 38, 38, 0.5);
  border-radius: 9999px;
  font-size: 0.75rem;
  color: #d4d4d4;
}

.lifestyle-section {
  background-color: #171717;
}

.lifestyle-section .section-gradient {
  background: linear-gradient(to bottom, #171717, #0a0a0a, #171717);
}

.lifestyle-subsection {
  margin-bottom: 4rem;
}

.lifestyle-subsection:last-child {
  margin-bottom: 0;
}

.subsection-title {
  font-size: 1.5rem;
  color: #d4d4d4;
  margin-bottom: 2rem;
}

.lifestyle-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .lifestyle-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lifestyle-card {
  background-color: rgba(38, 38, 38, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid #404040;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.lifestyle-card svg {
  width: 32px;
  height: 32px;
  color: #d4d4d4;
  margin-bottom: 1rem;
}

.lifestyle-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.lifestyle-card p {
  font-size: 0.875rem;
  color: #a3a3a3;
}

.lifestyle-card:hover {
  transform: scale(1.03);
  border-color: #525252;
}

.lifestyle-quote {
  color: #a3a3a3;
  text-align: center;
  font-style: italic;
  margin-top: 1.5rem;
}

.skills-section {
  background-color: #0a0a0a;
}

.skills-section .section-gradient {
  background: linear-gradient(to bottom, #171717, #0a0a0a, #000);
}

.skills-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.skills-card {
  background-color: rgba(23, 23, 23, 0.8);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid #262626;
  border-radius: 1rem;
  padding: 2rem;
}

.skills-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.skills-card-header svg {
  color: #d4d4d4;
}

.skills-card-header h3 {
  font-size: 1.5rem;
}

.skills-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skill-item .skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.skill-item .skill-info span {
  color: #d4d4d4;
}

.skill-item .skill-info .skill-percent {
  font-size: 0.875rem;
  color: #a3a3a3;
}

.skill-bar {
  height: 0.5rem;
  background-color: #262626;
  border-radius: 9999px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background: linear-gradient(to right, #a3a3a3, #525252);
  border-radius: 9999px;
  width: 0;
  transition: width 1s ease;
}

.skill-progress.animate {
  animation: progressBar 1s ease forwards;
}

.language-section {
  margin-bottom: 2rem;
}

.language-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.language-item svg {
  color: #a3a3a3;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.language-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.language-item p {
  font-size: 0.875rem;
  color: #a3a3a3;
}

.diploma-section {
  border-top: 1px solid #262626;
  padding-top: 1.5rem;
}

.diploma-card {
  padding: 1rem;
  background-color: rgba(38, 38, 38, 0.5);
  border-radius: 0.75rem;
}

.diploma-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.diploma-card p {
  font-size: 0.875rem;
  color: #a3a3a3;
}

.diploma-card .diploma-note {
  font-size: 0.75rem;
  color: #737373;
  margin-top: 0.5rem;
}

.projects-section {
  background-color: #000;
  overflow: hidden;
}

.projects-section .section-gradient {
  background: linear-gradient(to bottom, #000, #0a0a0a, #171717);
}

.grid-background {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

.project-card {
  position: relative;
}

.project-card:hover .project-glow {
  filter: blur(48px);
}

.project-card:hover .project-content {
  border-color: #404040;
}

.project-card:hover .project-icon {
  background-color: #404040;
}

.project-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(64, 64, 64, 0.3), rgba(23, 23, 23, 0.3));
  border-radius: 1.5rem;
  filter: blur(32px);
  transition: filter 0.3s ease;
}

.project-content {
  position: relative;
  background: linear-gradient(to bottom right, rgba(23, 23, 23, 0.9), rgba(10, 10, 10, 0.9));
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid #262626;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: border-color 0.3s ease;
}

@media (min-width: 768px) {
  .project-content {
    padding: 3rem;
  }
}

.project-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.project-icon {
  padding: 1rem;
  background-color: #262626;
  border-radius: 1rem;
  color: #d4d4d4;
  transition: background-color 0.3s ease;
}

.project-title {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}

.project-subtitle {
  color: #a3a3a3;
}

.project-description {
  color: #d4d4d4;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.project-techs {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .project-techs {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .project-techs {
    grid-template-columns: repeat(4, 1fr);
  }
}

.project-tech-card {
  background-color: rgba(38, 38, 38, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid #404040;
  border-radius: 0.75rem;
  padding: 1rem;
  transition: all 0.3s ease;
}

.project-tech-card svg {
  width: 24px;
  height: 24px;
  color: #d4d4d4;
  margin-bottom: 0.75rem;
}

.project-tech-card h4 {
  margin-bottom: 0.25rem;
}

.project-tech-card p {
  font-size: 0.75rem;
  color: #a3a3a3;
}

.project-tech-card:hover {
  transform: scale(1.05);
  background-color: #262626;
}

.project-skills {
  border-top: 1px solid #262626;
  padding-top: 2rem;
}

.project-skills h4 {
  font-size: 1.125rem;
  color: #d4d4d4;
  margin-bottom: 1rem;
}

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

.project-skills-tags .tag {
  padding: 0.5rem 1rem;
  background-color: rgba(38, 38, 38, 0.7);
  border: 1px solid #404040;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: #d4d4d4;
}

.contact-cta {
  margin-top: 4rem;
  text-align: center;
}

.contact-cta p {
  color: #a3a3a3;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #f5f5f5;
  color: #171717;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #e5e5e5;
  transform: scale(1.05);
}

.cta-button:active {
  transform: scale(0.95);
}

/*# sourceMappingURL=main.css.map */