* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  padding-bottom: 120px;
}
.nav-spacer {
  height: 100px;  /* make this a bit taller than your nav height */
}
body {
        font-family: "Roboto", Arial, sans-serif;
        margin: 0;
        padding: 20px;
        background-color: #ffffff;
      }

      h1 {
        padding: 100px;
        text-align: center;
        font-weight: 700;
        margin-bottom: 20px;
      }

      p {
        max-width: 800px;
        margin: 0 auto 12px auto;
        line-height: 1.5;
      }

      h2 {
        text-align: center;
        margin-top: 40px;
        margin-bottom: 10px;
        font-size: 1.3rem;
      }

      /* Super simple table layout */
      table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
      }

      th,
      td {
        padding: 10px;
        vertical-align: top;
        text-align: left;
      }

      th {
        font-weight: 700;
        font-size: 1.05rem;
      }

      /* Make it stack on small screens */
      @media (max-width: 800px) {
        table,
        tbody,
        tr,
        th,
        td {
          display: block;
          width: 100%;
        }

        th {
          margin-top: 15px;
        }
      }

      /* Simple iframe styling */
      .iframe-wrapper {
        max-width: 1100px;
        margin: 30px auto;
      }

      .iframe-wrapper h3 {
        margin-bottom: 8px;
        font-size: 1.1rem;
      }

      iframe {
        width: 100%;
        height: 450px; /* make it big */
        border: 1px solid #ccc;
      }
.main-nav {
  position: fixed;    /* makes it stick to top */
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;       /* ↳ Change nav height here */
  background-color: #ffe8e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;    /* ↳ Change side padding (more/less space on edges) */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  z-index: 1000;
}

/* Make the whole logo area clickable */
.nav-logo {
  display: inline-flex;
  align-items: center;
}

/* LOGO IMAGE (left side) */
.nav-logo img {
  height: 100px;        /* ↳ Make logo bigger/smaller here */
  width: auto;
}

/* Container for the right-side links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 100px;           /* ↳ Space between the icons on the right */
}

/* Images for about / human / AI skills */
.nav-links img {
  height: 80px;        /* ↳ Make nav icons bigger/smaller here */
  width: auto;
  display: block;
}

/* Optional hover effect (remove if you want it super minimal) */
.nav-links a img {
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.nav-links a:hover img {
  transform: translateY(-1px);
  opacity: 0.9;
}
/* Hide toggle on desktop */
.nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* === Mobile layout === */
@media (max-width: 700px) {
  .main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    padding: 20px;
    display: none; /* hidden by default */
    flex-direction: column;
    gap: 20px;
  }

  .nav-links.nav-open {
    display: flex; /* JS toggles this */
  }

  .nav-toggle {
    display: block;
  }
}