html, body {
      margin: 0;
      padding: 0;
      background: transparent;
      color: aliceblue;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 1.1em;
      height: 100%;
      z-index: 0;
}
body::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: url('images/bg.jpg') no-repeat center center/cover;
      z-index: -1;
      pointer-events: none;
    }
.nav-dots {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999999;
  background-color: transparent;
  pointer-events: auto;
}

.nav-dots a {
  display: block;
  width: fit-content;
}

.nav-icon {  
  display: block;
  width: 24px;
  height: 24px;
  margin: 5px 0;
  object-fit: contain;
  transition: transform 0.2s ease;
  background-color: red;
  border: 1px solid yellow;
}

.nav-icon:hover {
  transform: scale(1.1);
}

.nav-dots .dot {
  width: 14px;
  height: 14px;
  background-color: aqua;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
  text-decoration: none;
}

.nav-dots .dot::before {
      content: attr(title);
      position: absolute;
      right: 120%;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.7);
      color: white;
      padding: 4px 8px;
      border-radius: 4px;
      white-space: nowrap;
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
      font-size: 1rem;
    }

    .nav-dots .dot:hover::before {
      opacity: 1;
    }

.nav-dots .dot:hover,
.nav-dots .dot.active {
  background-color: #333;
}

@media (max-width: 600px) {
  .nav-dots {
    gap: 0.5rem;
    right: 0.5rem;
    top: 0.5rem;
  }

  .nav-icon {
    width: 24px;
    height: 24px;
  }
}

.fullpage {
  background-color: transparent;
}

.video-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      overflow: hidden;
      z-index: 1;
      object-fit: cover;
    }
    .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      border: none;
      object-fit: cover;
      
      z-index: 10;
    }
    #intro {
      position: relative;
      height: 100vh;
      width: 100vw;
      margin: 0;
      padding: 0;
      border: none;
    }

#intro iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  border: none;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover; /*  Ensures the video covers the container while maintaining aspect ratio */
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  z-index: 100;
}

.link-row a {
  padding: 1rem 2rem;
  background-color: #444;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  z-index: 100;
}

.link-row a:hover {
  background-color: #222;
}

/* Responsive Typography */
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  .link-row a {
    font-size: 1.2rem;
  }
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  margin-top: 0rem;
  color:aqua;
  text-align: left;
  z-index: 100;
  font-style: italic;
}

.resume-wrapper {
      max-width: 90%;
      margin: 0 auto;
      z-index: 100;
    }
    .resume-container {
      display: flex;
      flex-direction: row;
      gap: 2rem;
      margin-top: 2rem;
      color: white;
      flex-wrap: wrap;
      z-index: 100;
    }
    .image-column {
      flex: 1 1 100%;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
      z-index: 100;
    }
    .text-column {
      flex: 1 1 100%;
      z-index: 100;
    }
    @media (min-width: 768px) {
      .image-column {
        flex: 1;
      }
      .text-column {
        flex: 2;
      }
    }
    .image-column img {
      max-width: 100%;
      height: auto;
      border: 1px solid #444;
      border-radius: 8px;
      z-index: 100;
    }
    .text-column ul {
      padding-left: 1.5rem;
    }
    .text-column li {
      margin-bottom: 1rem;
    }

    .link-row button {
  padding: 1rem 2rem;
  background-color: #444;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  z-index: 100;
  font-size: 1em;
}

.link-row button:hover {
  color: #66ccff; /* Slightly lighter on hover */
  text-decoration: none;
}

#portfolio-content {
      margin-top: 2rem;
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      
      text-align: center;

      
      flex-wrap: wrap;
      gap: 1rem;
    }

    #portfolio-content {
      margin-top: 2rem;
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
    }

    #portfolio-content > div:first-child {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    #portfolio-content a {
      display: inline-block;
      text-decoration: none;
    }

    #portfolio-content a img {
      max-width: 180px;
      height: auto;
      border: 2px solid #444;
      border-radius: 8px;
      transition: transform 0.3s ease;
    }

    #portfolio-content a img:hover {
      transform: scale(1.05);
    }

    #portfolio-content table {
      margin: 0 auto;
    }