@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=TASA+Orbiter:wght@400..800&display=swap');

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

body {
  font-family: "TASA Orbiter", sans-serif;
  background: #f9f9f9;
  color: #111;
  line-height: 1.6;
  transition: all 0.3s ease;
}

/* Header */
header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 1350px;
  margin: auto;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  z-index: -1;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 900px;
  height: 60px;
  margin: auto;
  transition: all 0.3s ease;
}

.logo {
  font-size: 28px;
  color: #4a4afd;
  font-weight: 800;
  letter-spacing: 1px;
}

nav i {
  display: none;
  font-size: 26px;
  cursor: pointer;
  transition: transform 0.3s;
}

nav i:hover {
  transform: scale(1.2);
}

nav .nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  color: #111;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.nav-links a {
  text-decoration: none;
  color: #000;
}

nav .nav-links li:hover a {
  color: #4a4afd;
}

/* Sections */
body section {
  max-width: 900px;
  display: flex;
  padding: 3rem 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}

.hero-person-image {
  border-radius: 50%;
  width: 160px;
  height: 160px;
  object-fit: cover;
  border: 4px solid rgba(74, 74, 253, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-person-image:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.hero-big-title-text {
  font-weight: 900;
  font-size: 38px;
  width: 380px;
  line-height: 38px;
}

.hero-big-title-text #userName {
  color: #4a4afd;
}

.bio-text {
  font-size: 16px;
  color: #666;
  width: 500px;
  margin: 10px 0;
  text-align: center;
}

/* Hero Buttons */
.hero-action-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
}

.get-in-touch {
  width: 160px;
  padding: 12px 0;
  border-radius: 30px;
  background: #4a4afd;
  text-align: center;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.get-in-touch:hover {
  background: #3a3edf;
  box-shadow: 0 8px 20px rgba(74, 74, 253, 0.4);
}

.download-cv {
  width: 160px;
  padding: 12px 0;
  border-radius: 30px;
  background: #fff;
  text-align: center;
  border: 2px solid #4a4afd;
  color: #4a4afd;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.download-cv:hover {
  background: #4a4afd;
  color: #fff;
  box-shadow: 0 8px 20px rgba(74, 74, 253, 0.2);
}

.download-cv a {
  text-decoration: none;
  color: inherit;
}

/* Headings */
section h2.heading-text {
  font-size: 32px;
  color: #111;
  font-weight: 900;
  text-align: center;
  margin-bottom: 15px;
}

/* Skills */

.skills-list {
  display: flex;
  gap: 7px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 600px;
  color: #000;
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.skills-list li {
  padding: 0.5rem 1rem;
  border: 1.5px solid #e1e1e1;
  border-radius: 5px;
  font-weight: medium;
  background: #e9e8e8;
}

/* Projects */
.all-projects-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1350px;
  margin: auto;
  margin-top: 1.5rem;
}

.project-container {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #e1e1e1;
  transition: all 0.3s ease;
}



.project-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.project-container img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-container img:hover {
  transform: scale(1.05);
}

.project-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px;
}

.project-info .project-name {
  width: 240px;
  font-weight: 600;
  color: #111;
}

/* Experience */
.experience-list {
  list-style: none;
  padding: 0;
  width: 100%;
  max-width: 1350px;
  margin: auto;
}

.each-experience-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.experience-job-title {
  font-weight: 900;
  color: #4a4afd;
  font-size: 20px;
}

.experience-duration {
  color: #636363;
  font-size: 13px;
  font-style: italic;
}

.experience-description {
  font-size: 15px;
  color: #444;
}

/* Footer */
.footer {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.footer-container {
  max-width: 900px;
  width: 100%;
  padding: 40px;
  background: #0a0b1e;
  color: white;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-email {
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-email a {
  color: #7f5af0;
  text-decoration: none;
  font-weight: 500;
}

.footer-email a:hover {
  text-decoration: underline;
}

.footer-socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 20px;
}

.footer-socials a {
  font-size: 22px;
  color: #e5e7eb;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  color: #7f5af0;
  transform: translateY(-3px);
}

.footer-copy {
  font-size: 14px;
  color: #9ca3af;
}

/* Media Queries */
@media screen and (max-width: 924px) {
  .skills-list {
    width: 100%;
    gap: 0.5rem;
  }

  .all-projects-container {
    max-width: 100%;
  }

  .project-container img {
    width: 100%;
  }

  header nav {
    width: 100%;
  }

  .logo {
    margin: auto 20px;
  }

  nav .nav-links {
    font-size: 14px;
    margin: auto 10px;
  }
}

@media screen and (max-width: 600px) {
  nav .nav-links {
    display: flex;
    width: 100%;
    position: fixed;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    height: 100vh;
    top: -100%;
    left: 0;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s;
  }

  nav .nav-links.active {
    top: 60px;
  }

  nav .nav-links li:nth-child(1) {
    margin-top: 20px;
  }

  nav i {
    display: block;
    margin: 0 20px;
  }

  .hero-big-title-text {
    width: 100%;
    font-size: 40px;
    line-height: 40px;
  }

  .bio-text {
    width: 100%;
    font-size: 14px;
  }

  .hero-action-buttons {
    gap: 1rem;
  }

  .hero-person-image {
    width: 120px;
    height: 120px;
  }

  .experience-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}