body{
  font-family: 'Space Grotesk', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.navbar {
  background-color: #ffffff;
  border: 4px solid black;
  box-shadow: 4px 4px 0 black;
  margin: 2rem auto 0 auto;
  padding: 1.2rem 2rem;
  width: calc(100% - 4rem);
  max-width: 1100px;
}

.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  transform: translate(2px, 2px);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 2px solid black;
  border-radius: 0;
  background-color: #5294FF;
  box-shadow: 4px 4px 0 black;
  transition: transform 0.20s ease, box-shadow 0.20s ease;
  display: inline-block;
}

.nav-links li a:hover {
  transform: translate(2px,2px);
  box-shadow: none;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  gap: 2rem;
}

.hero-left {
  flex: 1;
  min-width: 300px;
  padding-right: 2rem;
}

.highlight {
  color: #5294FF;
  font-weight: 700;
  position: relative;
  display: inline-block;
  font-size: 1.6em;
  text-shadow:
    -0.6px -0.6px 0 black,
     0.6px -0.6px 0 black,
    -0.6px  0.6px 0 black,
     0.6px  0.6px 0 black,
     3px 3px 0 black; /* 3D shadow */
}




.hero-left h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-left h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-left p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.button-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.brutal-btn {
  padding: 0.75rem 1.5rem;
  background-color: #5294FF;
  border: 2px solid black;
  box-shadow: 4px 4px 0 black;
  text-decoration: none;
  color: black;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brutal-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: none;
}

.social-icons a {
  margin-right: 1rem;
}

.social-icons img {
  width: 35px;
  height: 35px;
}

.hero-right {
  flex: 1;
  min-width: 300px;
  text-align: center;
  position: relative;
}

.avatar {
  width: 200px;
  border-radius: 50%;
  border: 2px solid black;
  box-shadow: 6px 6px 0 black;
}




.about-container {
  max-width: 1100px;
  margin: 2rem auto 0 auto; 
  padding: 0 2rem;
}

.about-inner p {
  font-size: 1.05rem;
  line-height: 1.9;
  font-weight: 400;            
  color: rgba(17, 17, 17, 0.7);
  max-width: 100%;               
  letter-spacing: 0.01em;
}

.about-inner h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-inner p {
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 500;
  color: #111;
}

.projects-container {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.projects-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.project-card {
  background-color: #fefefe;
  border: 3px solid black;
  padding: 1.5rem;
  box-shadow: 6px 6px 0 black;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.project-card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #111;
}

.project-card:hover {
  transform: translate(3px, 3px);
  box-shadow: none;
}






html, body {
  height: 100%;
  overflow: hidden; /* Disable native scroll */
}

.scroll-wrapper {
  height: 100%;
  overflow-y: scroll;
  position: relative;
  padding-right: 12px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.scroll-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}


.custom-scrollbar {
  position: fixed;
  top: 0;
  right: 10px;
  width: 6px;
  height: 100vh;
  background-color: #ccc;
  border: 2px solid black;
  
}

.scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #5294FF;
  
  border: 2px solid black;
  transition: background-color 0.3s ease;
}
