body {
  background-color: black;
  color:aliceblue;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}





.logo {
  width: 60px; /* Adjust size as needed */
  height: auto; /* Maintain aspect ratio */
  position: absolute; 
  top: 4px; /* Adjust vertical position */
  left: 10px; /* Adjust horizontal position */
}



.hide {
  display: none; /* Ensures light-logo is hidden by default */
}


/* -- Header -- */
header {
  position: fixed;
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 99;
}

nav {
  background-color: black;
  box-shadow: var(--box-shadow);
  font-family: "Jost", sans-serif;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 80px;
  width: 100%;
  height: 70px;
}

nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  right: -680px;
}

nav ul li {
  list-style: none;
  font-size: 1rem;
  letter-spacing: 1.5px;
  margin: 0 20px;
}

nav a {
  border: none;
  color:white;
  font-size: 0.95rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease-in;
}

nav a:hover {
  color: var(--cta-primary);
}

.resume-btn,
.back-btn {
  background-color: var(--bg-color-primary);
  border: 1px solid var(--highlight);
  border-radius: 10px;
  color:black;
  cursor: pointer;
  outline: none;
  font-weight: bold;
  padding: 10px 20px;
  transition: all 0.3s ease-in;
}

.resume-btn:hover,
.back-btn:hover {
  border: none;
  background-color: var(--cta-primary);
  color: var(--color-white);
}

#resume {
  color: inherit;
}

/* -- Main -- */
main {
  background-color:black;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 80% 90%, 0 100%);
  background-size: 55px 55px;
  height: 100vh;
  overflow-x: hidden;
}

.hero {
  display: flex;
  align-items: center;
  padding: 220px 80px 0px;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: -450px;
  bottom: -60px;
  background-image: url(../assets/images/pattern.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  width: 85%;
  height: 100%;
}

.left {
  color:whitesmoke;
}

.left span {
  color: green;
  font-family: "Roboto Mono", monospace;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.left h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.left p {
  font-family: "Roboto Mono", monospace;
  margin-bottom: 14px;
  line-height: 1.5;
  width: 60%;
}

.left a {
  color: white;
  font-family: "Roboto Mono", monospace;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.left a:hover {
  color: whitesmoke;
}

.left a:hover i {
  padding-left: 5px;
}

/* -- About Me -- */
.about {
  padding: 60px 80px;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.photo {
  width: 260px;
}

.photo-wrapper {
  position: relative;
}

.photo-wrapper::after {
  position: absolute;
  border: 4px solid var(--highlight);
  content: "";
  transform: translate(-94%, 4%);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.background {
  padding-left: 100px;
}

.background h2,
.background h4 {
  color:green;
}

.background p {
  position: relative;
  animation: slide-up 3s ease-in 1s forwards;
}

@keyframes slide-up {
  from {
    bottom: -80px;
  }
  to {
    bottom: 0px;
  }
}

.title {
  font-family: "Roboto Mono", monospace;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: white;
}

.about p {
  color: white;
  font-family: "Roboto Mono", monospace;
  line-height: 1.3;
  margin: 10px 0;
}

.technologies {
  position: relative;
  color: whitesmoke;
  display: flex;
  flex-direction: column;
  padding: 30px 0 0px;
  animation: slide-right 3s ease-in 1s forwards;
}

@keyframes slide-right {
  from {
    left: -800px;
  }
  to {
    left: 0px;
  }
}

.tools {
  font-family: "Roboto Mono", monospace;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(6, 1fr);
}

.tools ul {
  list-style: none;
  padding-top: 10px;
}

.tools ul li {
  padding: 3px 40px 3px 0;
  margin-top: 2px;
}

