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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.6;
  color: #000;
  background-color: #fefefe;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffeb3b;
  border-bottom: 4px solid #000;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 8px 8px 0px #000;
}

.navbar.scrolled {
  background: #ffeb3b;
  box-shadow: 8px 8px 0px #000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo a {
 
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-logo a:hover {
  animation: shake 0.5s ease-in-out;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link:hover {
  background-color: #000;
  color: #ffeb3b;
  padding: 8px 12px;
  border-radius: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 4px;
  background-color: #000;
  margin: 3px 0;
  transition: 0.3s;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #4dd0e1;
  border-bottom: 8px solid #000;
  color: #000;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  background: #000;
  z-index: -1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
  text-shadow: 4px 4px 0px #36b2c2;
  letter-spacing: 4px;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease 0.2s both;
  text-shadow: 2px 2px 0px #36b2c2;
  letter-spacing: 2px;
}

.hero-description {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.4s both;
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 4px solid #000;
  cursor: pointer;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 6px 6px 0px #000;
  position: relative;
}

.btn-primary {
  background-color: #ff4081;
  color: #000;
}

.btn-primary:hover {
  background-color: #000;
  color: #ff4081;
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0px #000;
}

.btn-secondary {
  background-color: #fff;
  color: #000;
}

.btn-secondary:hover {
  background-color: #000;
  color: #fff;
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0px #000;
}

section {
  padding: 120px 0;
  position: relative;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: #000;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 4px 4px 0px #ffeb3b;
}

.about {
  background-color: #fce4ec;
  border-top: 8px solid #000;
  border-bottom: 8px solid #000;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  text-align: center;
}

.profile-img {
  width: 300px;
  height: 300px;
  border-radius: 0;
  object-fit: cover;
  border: 6px solid #000;
  box-shadow: 12px 12px 0px #000;
  transition: transform 0.3s ease;
}

.profile-img:hover {
  transform: translate(-6px, -6px);
  box-shadow: 18px 18px 0px #000;
}

.about-text p { 
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #000;
  line-height: 1.8;
}



.skill-card h3 { 
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000;
  letter-spacing: 1px;
}

.resume {
  text-align: center;
  background-color: #f3e5f5;
}

.resume-content p {
  font-size: 1.2rem;
  color: #000;
  font-weight: 500;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
}

.download-btn span {
  font-size: 1.5rem;
}

.contact { 
  background-color: #fff3e0;
  border-top: 8px solid #000;
}

.contact p{
  font-weight: 400;
  padding: 1em 0;
}

.contact-item {
  padding: .5em 0;
}

.footer {
  background-color: #000;
  color: #fff;
  padding: 3rem 0;
  border-top: 8px solid #ffeb3b;
}

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

.footer-content p {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #ff4081;
  color: #000;
  text-decoration: none;
  border-radius: 0;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  font-weight: bold;
}

.social-link:hover {
  background-color: #ffeb3b;
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0px #fff;
}

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

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: #ffeb3b;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    border: 4px solid #000;
    border-top: none;
    box-shadow: 8px 8px 0px #000;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .section-title {
    font-size: 2.5rem;
  }

  section {
    padding: 80px 0;
  }

  .profile-img {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }
}