/* CSS Variables */

:root {
    --slate-300: #cbd5e1;
    --slate-600: #000000;
    --amber-100: #fef3c7;
    --amber-600: #F68915;
    --amber-700: #F68915;
    --amber-800: #F68915;

    /* --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e; */

    --box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
      0 4px 6px -4px rgb(0 0 0 / 0.1);
  }
  
  /* CSS Normalization */
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html,
  body {
    height: 100%;
    background: linear-gradient(#fff, #f8f8f8);
    background-attachment: fixed;
    /* background-image: url("/images/hexagons.png");
    background-position: right bottom;
    background-repeat: no-repeat;
    background-attachment: fixed; */
  }
  
  html:focus-within {
    scroll-behavior: smooth;
  }
  
  body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    font-family: "Inter", sans-serif;
    display: flex;
    flex-direction: column;
  }
  
  ul,
  ol {
    list-style: none;
  }
  
  img,
  picture {
    width: 100%;
    display: block;
  }
  
  input,
  button,
  textarea,
  select {
    font: inherit;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Utility Classes */
  
  .container {
    /* max-width: 64rem; */
    margin: 0 auto;
    /* padding: 0 1.5rem; */
  }
  
  .content {
    flex: 1 0 auto;
    /* margin: 20px; */
  }
  
  .text-center {
    text-align: center;
  }

  .main {
    padding-left: 40px;
    padding-right: 40px;
  }
  /* @media only screen and (min-width: 1000px) and (max-width: 1200px) {
    .main {
      padding-left: 2rem;
      padding-right: 2rem;
    }
  }
  @media only screen and (min-width: 1201px) and (max-width: 1400px) {
    .main {
      padding-left: 4rem;
      padding-right: 4rem;
    }
  }
  @media only screen and (min-width: 1401px) and (max-width: 1600px) {
    .main {
      padding-left: 8rem;
      padding-right: 8rem;
    }
  }
  @media only screen and (min-width: 1601px) and (max-width: 1800px) {
    .main {
      padding-left: 16rem;
      padding-right: 16rem;
    }
  }
  @media only screen and (min-width: 1801px) {
    .main {
      padding-left: 32rem;
      padding-right: 32rem;
    }
  } */
  /* @media only screen and (min-width: 600px) {
    .main {
      padding-left: 25rem;
      padding-right: 25rem;
    }
  } */
  
  /* Header Styles */
  
  .header {
    display: flex;
    position: sticky; top: 0;
    background-color: #fff;
    z-index: 100;
    /* width: 100%; */
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* margin-bottom: 4rem; */
    /* padding: 1rem 1.5rem; */
    box-shadow: var(--box-shadow);
    /* padding: 10px; */
    margin: -20px;
    margin-left: auto;
    margin-right: auto;
    height: 149.5px;
    padding: 10px;
    margin-bottom: 150px;
    border-bottom: #F68915 solid 5px;
    /* margin-bottom: 20px; */
    /* padding-left: 4rem;
    padding-right: 4rem; */
  }

  #menu-box.show{
    display: block;
  }

  @media only screen and (max-width: 967px) {
    .header, .header__links {
      flex-direction: column;
    }
    #menu-box {
      margin-top: 140px;
      background-color: #ffffff;
      padding: 20px;
      z-index: 1;
      border: 3px solid var(--amber-700);
      border-top: 0;
      display: none;
      box-shadow: 10px 10px 15px -3px rgb(0 0 0 / 0.1),
      0 4px 6px -4px rgb(0 0 0 / 0.1);
    }

    #navbar__toggle {
      display: block;
    }
    /* .header__title {
      margin-left: -150px;
    }
    .menu-box {
      margin-right: -150px;
    } */
  }

  @media only screen and (min-width: 968px) and (max-width: 1200px) {
    .header, .main {
      padding-left: 1rem;
      padding-right: 1rem;
    }
    #menu-box {
      margin-top: -110px;
    }
    #navbar__toggle {
      display: none;
    }
  }
  @media only screen and (min-width: 1201px) and (max-width: 1400px) {
    .header, .main {
      padding-left: 3rem;
      padding-right: 3rem;
    }
    #menu-box {
      margin-top: -110px;
    }
    #navbar__toggle {
      display: none;
    }
  }
  @media only screen and (min-width: 1401px) and (max-width: 1600px) {
    .header, .main {
      padding-left: 7rem;
      padding-right: 7rem;
    }
    #menu-box {
      margin-top: -110px;
    }
    #navbar__toggle {
      display: none;
    }
  }
  @media only screen and (min-width: 1601px) and (max-width: 1800px) {
    .header, .main {
      padding-left: 15rem;
      padding-right: 15rem;
    }
    #menu-box {
      margin-top: -110px;
    }
    #navbar__toggle {
      display: none;
    }
  }
  @media only screen and (min-width: 1801px) {
    .header, .main {
      padding-left: 25rem;
      padding-right: 15rem;
    }
    #menu-box {
      margin-top: -110px;
    }
    #navbar__toggle {
      display: none;
    }
  }

  
  
  .header__title {
    position: relative;
    margin-bottom: 1rem;
    margin-right: 1rem;
    color: var(--amber-600);
  }
  
  .header__links {
    display: flex;
    gap: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--amber-700);
  }
  
  .header__link {
    position: relative;
    font-size: 1.5rem;
  }
  
  .header__link::after {
    content: "";
    left: 0px;
    bottom: -4px;
    height: 2px;
    width: 100%;
    position: absolute;
    background-color: var(--amber-700);
    transform: scaleX(0);
    transition: transform 0.3s ease 0s;
  }
  
  .header__link:hover::after {
    transform: scaleX(1);
  }

  .get-quote-btn {
    position: relative;
    margin-top: -11px;
    padding: 10px;
    border: 2px solid #F68915;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--amber-700);
    transition: transform .2s; /* Animation */
  }

  .get-quote-btn:hover {
    transform: scale(1.1);
  }

  #navbar__toggle {
    margin-top: 50px;
    transform: rotate(0deg);
  }
  #navbar__toggle.open {
    rotate: 90deg;
    margin-left: auto;
    margin-right: -22%;
    z-index: 1;
  }
  
  .footer {
    flex-shrink: 0;
    width: 100%;
    padding: 0.5rem 0;
    text-align: center;
  }
  
  .heading--main {
    padding: 1rem 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--amber-600);
  }
  
  /* Profile Styles */
  .profile {
    display: flex;
    flex-direction: column;
  }
  
  .profile__image-wrapper picture {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  
  .profile__image-wrapper img {
    width: 250px;
    height: 250px;
    border-radius: 9999px;
  }
  
  .profile__card {
    display: flex;
    flex-direction: column;
    padding: 4rem 0;
    flex: 1;
  }
  
  .profile__text {
    margin-bottom: 1rem;
    color: var(--slate-600);
  }
  
  .profile__text--lead {
    font-weight: 500;
    font-size: 1.5rem;
  }
  
  .profile__text--highlight {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--amber-600);
  }
  
  .profile__text--emphasis {
    font-weight: bold;
    font-size: 1.125rem;
  }
  
  .profile__link {
    font-weight: bold;
    text-decoration: underline;
  }
  
  /* Technologies Styles */
  
  .technologies__heading {
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
    color: var(--amber-600);
  }
  
  .technologies__list {
    width: 100%;
    max-width: 36rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
    gap: 1.5rem;
  }
  
  .technologies__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  
  .technologies__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 100%;
    margin-bottom: 0.5rem;
  }
  
  .technologies__title {
    font-weight: 400;
    color: var(--slate-600);
  }
  
  /* Project Styles */
  
  .projects {
    margin: 2rem auto 4rem auto;
  }
  
  .projects__heading {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--amber-600);
  }
  
  .project__heading {
    padding: 1rem 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--amber-600);
  }
  
  .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .project-card {
    box-shadow: var(--box-shadow);
    border-radius: 0.375rem;
    overflow: hidden;
    background-color: #fff;
  }
  
  .project-card__image-wrapper img {
    width: 100%;
    height: auto;
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
    transition: transform 0.3s ease 0s;
  }
  
  .project-card__image-wrapper:hover img {
    transform: scale(1.05);
  }
  
  .project-card__body {
    padding: 1rem;
  }
  
  .project-card__title {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
  }
  
  .project-card__title:hover {
    text-decoration: underline;
  }
  
  .project-card__tags {
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
  }
  
  .project-card__tag {
    display: flex;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    background-color: var(--amber-100);
    color: var(--amber-800);
  }
  
  .project-card__summary {
    margin-bottom: 1rem;
    color: var(--slate-600);
  }
  
  .project-card__link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--amber-700);
  }
  
  .project-card__link-icon {
    width: 20px;
    height: 20px;
  }
  
  .project-card__link:hover {
    text-decoration: underline;
  }
  
  /* Project Page Styles */
  
  .project-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 42rem;
    margin: 0 auto 4rem auto;
  }
  
  .project {
    margin-bottom: 4rem;
  }
  
  .project__image-wrapper {
    margin-bottom: 1.5rem;
  }
  
  .project__image-wrapper img {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 0.25rem;
  }
  
  /* Prose Styles */
  
  .prose {
    font-size: 1.125rem;
    color: var(--slate-600);
  }
  
  .prose h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--amber-600);
  }
  
  .prose ul {
    margin-bottom: 1rem;
  }
  
  .prose ul > li {
    position: relative;
    padding-left: 1.75em;
  }
  
  .prose ul > li::before {
    content: "";
    position: absolute;
    width: 0.375em;
    height: 0.375em;
    top: 0.6875em;
    left: 0.25em;
    border-radius: 50%;
    background-color: var(--slate-600);
  }
  
  .prose p {
    margin-bottom: 1.25rem;
  }
  
  /* About Styles */
  
  .bio {
    margin: 0 auto 4rem auto;
    max-width: 65ch;
  }
  
  /* Contact Styles */

  
  .contact__sub-heading {
    padding: 0 1rem;
    color: var(--slate-600);
  }
  
  .form {
    max-width: 36rem;
    margin: 4rem auto;
    border-radius: 0.25rem;
  }
  
  .form__section {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
  }
  
  .form__label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
  }
  
  .form__input {
    display: block;
    border: 1px solid var(--slate-300);
    border-radius: 0.25rem;
    padding: 0.5rem;
    color: var(--slate-600);
  }
  
  .form__button {
    display: block;
    width: 100%;
    padding: 0.5rem 2rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    color: #fff;
    background-color: var(--amber-600);
    transition: background-color 0.3s ease;
  }
  
  .form__button:hover {
    background-color: var(--amber-600);
  }
  
  @media (min-width: 640px) {
    .header__title {
      margin-bottom: 0;
    }
  
    .profile {
      flex-direction: row;
    }
  
    .profile__image-wrapper img {
      margin: 4rem;
    }

    #hours__address {
      display: block;
      margin-left: 35%;
      margin-right: auto;
    }

    td {
      vertical-align: top;
      text-align: left;
      padding-right: 20px;
      padding-bottom: 20px;
    }

    #hours.td {
      padding-bottom: 0;
    }
  }