nav {
  position: sticky;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  color: white;
}
nav > .name {
  grid-column-start: 1;
  grid-column-end: 5;
}
nav > .Job {
  grid-column-start: 7;
  grid-column-end: 13;
}
.info {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}
body {
  background-color: black;
}
section > p {
  color: white;
}

.About {
  display: flex;
  flex-direction: column;
  grid-column-start: 1;
  grid-column-end: 13;
}
.About > h2 {
  color: white;
  opacity: 0.4;
}
.About > p {
  color: white;
}
.Experience {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  grid-column-start: 1;
  grid-column-end: 13;
  color: white;
}
.Experience > [class^="Title"] {
  opacity: 0.4;
}
.Title1 {
  grid-column-start: 1;
  grid-column-end: 3;
}
.Title2 {
  grid-column-start: 3;
  grid-column-end: 7;
}
.Company {
  grid-column-start: 1;
  grid-column-end: 3;
}
.Description {
  grid-column-start: 3;
  grid-column-end: 7;
}
.Gallery {
  display: flex;
  flex-wrap: wrap;
  grid-column-start: 1;
  grid-column-end: 13;
  color: white;
}
.Gallery > [class^="column"] {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.column2 {
  height: 150px;
}
[class^="column"] > img {
  width: 95%;
  height: auto;
  display: block;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.3); /* Glow effect */
}

[class^="column"] > img:hover {
  transform: scale(1.02);
  transition: transform 0.3s;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8); /* Glow effect */
}

@media (min-width: 768px) {
  .Experience {
    grid-column-start: 7;
  }
  .About {
    grid-column-end: 5;
  }
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.Gallery > img {
  border: 0.2px solid rgba(255, 255, 255, 0.5); /* Base border */
  border-radius: 5px; /* Optional: to make the corners rounded */
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5); /* Glow effect */
}

#logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 20px;
}

header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: white;
}

#left {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#nameTag {
  display: flex;
  flex-direction: column;
  color: white;
  gap: 10px;
}

#profession {
  color: grey;
}

#pages {
  color: white;
  width: 250px;
  height: 40px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  background-color: #2c2c2c;
  border: 2px solid #454545;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

#second-layer {
  height: 75%;
  width: 95%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-radius: 38px;
}

#second-layer > div {
  height: 100%;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 38px;
  cursor: pointer;
}

.selected {
  background-color: #363636;
}
.unselected {
  background-color: #2c2c2c;
}

#second-layer > div:hover {
  background-color: #363636;
}

#lightbar {
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background-color: white;
  position: absolute;
  z-index: 2;
}

#shadow {
  width: 30px;
  height: 30px;
  background-color: #2c2c2c;
  border-radius: 40px;
  position: absolute;
  z-index: 5;
  box-shadow: 0 0 20px rgba(255, 255, 255, 1); /* Consistent inner shadow */
  z-index: 1;
}

#external {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-right: 50px;
}

a {
  text-decoration: none;
  color: inherit;
}

#work-content {
  min-height: 100vh;
}

#about-section {
  display: none;
}
#about-content {
  display: none;
}

#gallery-section {
  display: none;
  min-height: 100vh;
}

#follower {
  width: 30px;
  height: 30px;
  background-color: orange;
  border-radius: 30px;
  position: absolute;
}

.hero-bg {
  width: 100vw;
}

#hero-section-about-1 {
  background-image: url("./images/astranaut.jpg");
  width: 100%;
  height: 40vh;
  color: white;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.heading {
  color: white;
  font-size: 24px;
  margin-top: -48px;
  margin-bottom: 20px;
}

#hero-section-about-1 {
  display: flex;
  flex-direction: column;
}

.animated-text {
  width: 100%;
  height: 100%;
  position: relative;
  display: inline-block;
  font-size: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.3s ease;
  gap: 30px;
}

.animated-text:hover {
  background-color: #ff525277;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.container > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 56px;
  border-top: 1px solid #2c2c2c;
  height: 100px;
}

#hero-section-about-2 {
  background-image: url("./images/vr.jpg");
  width: 100%;
  height: 40vh;
  color: white;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

#hero-section-about-3 {
  background-image: url("./images/back.jpeg");
  width: 100%;
  height: 60vh;
  color: white;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.motto {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: wheat;
}

#motto-title {
  margin-top: 200px;
  font-size: 18px;
}

#motto {
  margin-top: 20px;
  font-size: 72px;
}
#motto2 {
  font-size: 72px;
}

#motto-author {
  margin-top: 20px;
  font-size: 12px;
}

.time {
  font-size: 28px;
}

.status {
  font-size: 28px;
}

.loc {
  font-size: 12px;
}
