
 body {
      font-family: Arial, sans-serif;
      height:200vh;
      margin: 0px;
    }

  header {
  background-color: #8eaeff;
  padding: 15px;
  position: sticky;
  top: 0;
  z-index: 2;
}

nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.sidenav a {
    padding: 15px 25px;
    text-decoration: none;
    font-size: 25px;
    color: white;
    display: block;
}

.sidenav .closebtn {
    font-size: 36px;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    transition: 0.3s;
    z-index: 1000;
    /* make sure it sits above everything */
}

.desktop-nav {
    display: none;
}

header a {
  color: #0d0d44;
  font-weight: bold;
  text-decoration: none;
  font-size: 28px;
  letter-spacing: 1px;
}
   

     .hero {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

  /* styles for homepage */
    .collage {
      position: absolute;
      width: 100%;
      height: 140vh;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(2, 1fr);
      z-index: 0;
    }

    .collage img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.5);
    }

    .overlay {
      background: white;
      padding: 40px 40px;
      text-align: center;
      z-index: 1;
      width: 40%;
      overflow: hidden;
    }

    .overlay h1 {
      font-size: 5rem;
      font-weight: bold;
  font-family: "DM Sans", sans-serif;
      margin-bottom: 20px;
      color: #0d0d44;
    }

    .overlay p {
      font-size: 1.8rem;
      color: #8eaeff;
    }

    /* Placeholder blocks */
.block {
  height: 200px;
  background: #222;
  margin: 20px 0;
}

.extra {
  opacity: 0;
  transition: 0.5s ease;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 200px; /* pushes circles much farther down */
}

.stories {
  min-height: 100vh;
  background-color: #ffffff;
  padding: 100px 40px;
}

/* keep your circle styles */
.card {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #8eaeff;
  text-decoration: none;
  color: #0d0d44;
}

/* Hover effect */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Title */
.card h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

/* Description */
.card p {
  font-size: 0.95rem;
  color: #0d0d44;
}
/* styles for human skills page */
 .btn-row {
      display: flex;
      gap: 10px;
      margin-bottom: 20px;
    }

    .skill-btn {
      padding: 10px 22px;
      border: 1px solid black;
      border-radius: 6px;
      background: #8eaeff;
      font-size: 15px;
      cursor: pointer;
    }

    .skill-btn.active {
      background: #8eaeff;
      border-color: #3388cc;
      color: #1a5f99;
    }

    .text-box {
      background: #f5f5f5;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 20px;
      font-size: 15px;
      line-height: 1.7;
      display: none; /* Hidden by default until a button is clicked */
    }

    .text-box.visible {
      display: block;
    }

    .skill-image {
  display: none;
  width: 90%;
  max-width: 1200px;
  margin: 30px auto;
  border-radius: 10px;

  opacity: 0;
  transition: opacity 0.4s ease;
}

.skill-image.show {
  opacity: 1;
}

  /* styles for AI skills page */
    #aiskillsintro{
      width: 92.5%;
  display: block;
  background-color: #8eaeff;
  color: #0d0d44;
  align-items: center;
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
    }


.aiskillcards {
  flex: 1;
  width: 250px; /* prevents them from getting too small */
  background-color: #0d0d44;
  color: #8eaeff;
  border-radius: 10px;
  padding: 15px;
  font-size: 17.5px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin: auto auto;
  margin-top: 20px;
}

.aiskillcards:hover {
  transform: scale(1.05); /* grows slightly */
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

#aiskilllinkdiv{
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

#aiskilllinkdiv h3{
  font-size: 20px;
}


.aiskilllink {
  width: 90%;
  background-color: #8eaeff;
  text-decoration: none;
  color: #0d0d44;
  margin: 20px;
  border-radius: 12px;
  overflow: hidden; /* keeps image inside rounded corners */
}

.aiskilllink img {
  width: 100%;
  height: 160px;
  object-fit: cover; /* crops nicely */
}

.aiskilllink:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* about me styles */
#portfoliopicture{
  width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-top: 20px;
}


#about-me{
  height: fit-content;
  background-color: #0d0d44;
  color: #8eaeff;
  align-items: center;
  border-radius: 10px;
  padding: 10px;
  margin: auto auto;
  margin-top: 20px;
  font-size: 20px;
  letter-spacing: 1.5;
  line-height: 1.7;
}

#about-me h1{
text-align: center;
}


#contactinfo{
  width: 90%;
  background-color: #8eaeff;
  color: #0d0d44;
  align-items: center;
  border-radius: 10px;
  padding: 15px;
  margin: 0 auto;
  margin-top: 20px;
  justify-content: space-between;
  font-size: 15px;
}

.social-link {
  color: #0d0d44;
  font-weight: bold;
}

.contact-link {
  color: #0d0d44;
  font-weight: bold;
  text-decoration: underline;
}
    /* RESPONSIVE */
    @media (max-width: 768px) {
      .overlay h1 {
        font-size: 2rem;
      }

    }

    @media screen and (min-width: 1080px) {
      
       .overlay {
        min-width: 500px;
      min-height: 325px;
        padding: 40px 20px;
      }

      #humanskills{
  margin-left: 20px;
}
      
      #about-me{
        margin-left: 25px;
        padding: 40px;
      }

      #aiskillsintro{
        margin-left: 25px;
        padding: 30px;
      }

      .aiskillcards{
        margin: auto auto;
      }

       #aiskillscontainer {
  display: flex;
  flex: 0 0 30%;
  gap: 20px;
  padding: 20px;
}

.aiskilllink{
display: flex;
  flex-direction: column;
  width:40%;
}

      .desktop-nav {
        display: flex;
    }

    .mobile-nav {
        display: none;
    }

    #mebox{
  display: flex;
  margin: 20px;
}

#portfoliopicture{
  width: 60%;
  height: auto;

    }
#contactinfo{
   display: flex;
   font-size: 22px;
}
    }

