body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
}
.hero-banner {
  width: 100%;
  height: 100vh;
  background: #0066cc url(https://lloydbirch.com/Lloyd.png) no-repeat bottom right;
}

.hero-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: stretch;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 3em;
  color: #fff;
  max-width: 400px;
}
.hero-text h1,
.hero-text h2 {
  color: #fff;
  margin: 0;
}
.hero-text h1 { font-size: 3rem; }
.hero-text h2 { font-size: 1.5rem; font-weight: 400; }
.hero-image {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 0;
}
.hero-image img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  display: block;
}
.hero-btn {
  display: inline-block;
  margin-top: 1.5rem;
  margin-right: 0.75rem;
  padding: 0.75rem 1.5rem;
  background-color: #fff;
  color: #0066cc;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block !important;
  width: auto !important;
}
.hero-btn:hover {
  background-color: #e6f0ff;
  transform: translateY(-3px);
  text-decoration:none;
}

@media (max-width: 800px) {
  .hero-banner {
    background-image: none;
    background-color: #0066cc;
  }
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-image {
    order: -1;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
  }
  .hero-image img {
    width: 80%;
    height: auto;
    max-width: 300px; */
    object-fit: contain;
  }
  .hero-text {
    text-align: center;
    padding: 1.25rem 0;
  }
}





  

html {
  scroll-behavior: smooth;
}
section {
  padding: 3em;
}
    .container {
        display: grid;
        grid-template-columns: 33% 62%;
        gap: 5%;
        max-width: 1200px;
        margin: 0px auto;
        padding: 0px 20px;
    }
    @media (max-width: 800px) {
      .container {
          grid-template-columns: 100%;
        }
      section {
          padding: 1em;
        }
    }

    :root {
      --bg-color: #ffffff;
      --text-color: #333333;
      --link-color: #0066cc;
      --section-border: #dddddd;
      --tool-bg: #f5f5f5;
    }

    body.dark {
      --bg-color: #121212;
      --text-color: #e0e0e0;
      --link-color: #66b2ff;
      --section-border: #444;
      --tool-bg: #1e1e1e;
    }

    body {
      font-family: 'Raleway', sans-serif;
      line-height: 1.6;
      background: var(--bg-color);
      color: var(--text-color);
      transition: background 0.3s ease, color 0.3s ease;
    }

    h1, h2 {
      padding-bottom: 5px;
    }

    section h1, section h2 {
      border-bottom: 2px solid var(--section-border);
      padding-bottom: 5px;
    }
    h3, h4, h5 {
      margin:0;
    }
    h5 {
      color: #ccc;
    }

    a {
      color: var(--link-color);
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    .contact {
      font-size: 0.9em;
    }

    .section {
      margin-bottom: 30px;
    }

    ul {
      margin: 0;
      padding-left: 20px;
    }

    .job-title {
      font-weight: 600;
    }

    .date {
      float: right;
      color: #999;
    }

    @media (max-width: 600px) {
      .date {
        float: none;
        display: block;
      }
    }

    .tools-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      gap: 5px;
    }

    .tool {
      font-size: 0.9em;
      background: var(--tool-bg);
      padding: 5px;
      border-radius: 4px;
    }

    .toggle-btn {
      position: fixed;
      top: 20px;
      right: 20px;
      background: none;
      border: 2px solid var(--text-color);
      color: var(--text-color);
      padding: 5px 10px;
      border-radius: 5px;
      cursor: pointer;
      font-family: 'Raleway', sans-serif;
      transition: all 0.3s ease;
    }

    .toggle-btn:hover {
      background: var(--text-color);
      color: var(--bg-color);
    }
  .toggle-btn i {
      font-size: 1.2em;
    }