:root {
    --orange: #ff8400;
    --dark-grey: #313131;
    --medium-grey: #595959;
    --light-grey: #eeeeee;
    --pill-grey: #cccccc;
  }

  body {
    font-family: 'Raleway', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.2rem;
  }

  /* Global Styles */
  .grey-bg {
      background-color: #F2F2F2;
  }

  /* Header Styles */
/* Header Styles */
.header {
  background-color: var(--orange);
  position: relative;
  background-image: url("http://www.agencyorange.com/assets/barcode-home-header.png");
  background-repeat: repeat-x;
  background-position: top;
  background-size: auto 60px;
}

.barcode-divider {
  width: 100%;
  height: 70px;
  background-image: url("http://www.agencyorange.com/assets/barcode-home-intro.png");
  background-repeat: repeat-x;
  background-size: auto 100%;
  margin: 0rem 0;
}

.logo-container {
  background-color: var(--dark-grey);
  max-width: 250px;
  max-height: 250px;
  min-width: 150px;
  min-height: 150px;
  width: 20vw; 
  height: 20vw; 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0rem;
}

.logo-container img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.header-title {
  color: white;
    font-weight: 300;
    font-size: 3.3rem;
    padding-left: 320px;
    padding-top: 1.5rem;
    padding-bottom: 5rem;
    margin-top: -6rem;
}

@media (max-width: 768px) {
  .logo-container {
    width: 150px;
    height: 150px;
  }

  .header-title {
    padding-left: 20px;
    font-size: 2.2rem;
    margin-top: 0rem;
    padding-bottom: 4rem;
  }
}


/* Sticky Header Styles */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: var(--orange);
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-image: url("http://www.agencyorange.com/assets/barcode-home-header.png");
  background-repeat: repeat-x;
  background-position: top;
  background-size: auto 70px;
}

.sticky-header.visible {
  transform: translateY(0);
}

.sticky-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.text-logo {
  color: white;
  font-family: "DM Serif Display", serif;
  font-size: 1.5rem;
  font-weight: 400;
  text-decoration: none;
  margin-left: 1px;
  background-color: var(--medium-grey);
  padding: 1px 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.text-white {
  color: white;
}

.text-greyLight {
  color: #cccccc;
}

.text-orange {
  color: var(--orange);
}

.text-logo:hover {
  color: white;
  text-decoration: none;
}



/* Custom Menu Styles */
.menu-dropdown {
  position: relative;
}

.menu-btn {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0;
}

.menu-content {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 20px;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.menu-header h2 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
  color: var(--dark-grey);
}

.menu-close-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--dark-grey);
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu-links a {
  color: var(--dark-grey);
  text-decoration: none;
  font-family: "DM Serif Display", serif;
  font-size: 1.25rem;
}

.menu-links a:hover {
  color: var(--orange);
}

/* Hide the default checkbox */
#menu-toggle,
#sticky-menu-toggle {
  display: none;
}

/* Show menu content when checkbox is checked */
#menu-toggle:checked ~ .menu-content,
#sticky-menu-toggle:checked ~ .menu-content {
  display: block;
}

/* Hide hamburger icon when menu is open */
#menu-toggle:checked ~ .menu-btn .menu-icon,
#sticky-menu-toggle:checked ~ .menu-btn .menu-icon {
  display: none;
}

/* Show close icon when menu is open */
#menu-toggle:checked ~ .menu-btn .close-icon,
#sticky-menu-toggle:checked ~ .menu-btn .close-icon {
  display: inline-block;
}

/* Hide close icon by default */
.close-icon {
  display: none;
}


  /* Section Styles */
  .section-title {
    color: var(--orange);
    font-weight: 400;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: "DM Serif Display", serif;
  }

  .sidebar-title {
    color: var(--medium-grey);
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
	font-family: "DM Serif Text", serif;
  }

  .section-text {
    color: var(--medium-grey);
  }

  .solution {
    font-family: "DM Serif Text", serif;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 400;
  }

  .solution-link {
    cursor: pointer;
    text-decoration: underline;
    font-size: 1.1rem;
    width: fit-content;
    padding: 0rem 6px;
    border-radius: 5px;
  }
  
  .solution-link:hover {
    background-color: #14e65a;
    text-decoration: none;
    color: white;
  }
  
  .solution-link:hover a {
    color: white;
  }

  .solution-link:hover i {
    color: white;
    background-color: #ff8400;
    line-height: 0.7;
  }

  .section-border {
    border-top: 1px solid var(--light-grey);
  }

  /* Checkbox Styles */
  .custom-checkbox {
    font-size: 1.3rem;
    display: inline-block;
    margin-right: 7px;
    
    flex-shrink: 0;
    color: #ff8400;
  }

  /* Capability */
  
  .capability-pill {
    background-color: var(--orange);
    color: white;
    border-radius: 50px;
    padding: 6px 12px;
    font-size: 1rem;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
    cursor: pointer;
	font-family: 'dm serif display';
  }


  .capability-pill:hover {
    background-color: #14e65a;
    text-decoration: underline;
  }

  /* Client Pills */
  .client-pill {
    background-color: var(--pill-grey);
    color: var(--medium-grey);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 1rem;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
    cursor: pointer;
	font-family: 'dm serif display';
  }
.client-pill-alt {
	background-color: var(--light-grey);
	color: var(--dark-grey);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 1rem;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
    cursor: pointer;
	font-family: 'dm serif display';
}

  .client-pill:hover {
    background-color: #14e65a;
    text-decoration: underline;
  }

  .client-pill-alt:hover {
    background-color: #14e65a;
    text-decoration: underline;
  }

  /* Footer */
  .footer-text {
    color: var(--medium-grey);
    font-size: 0.75rem;
  }

  /* Email Link */
  .email-link {
    color: var(--orange);
    text-decoration: none;
  }

  .email-link:hover {
    text-decoration: underline;
    color: var(--orange);
  }

  /* Custom Menu Styles */
  .menu-dropdown {
    position: relative;
  }

  .menu-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
  }

  .menu-content {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    padding: 20px;
  }

  .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .menu-header h2 {
    margin: 0;
    font-family: "DM Serif Display", serif;
    font-size: 2rem;
    color: var(--dark-grey);
  }

  .menu-close-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--dark-grey);
  }

  .menu-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .menu-links a {
    color: var(--dark-grey);
    text-decoration: none;
    font-family: "DM Serif Display", serif;
    font-size: 1.25rem;
  }

  .menu-links a:hover {
    color: var(--orange);
  }

  /* Hide the default checkbox */
  #menu-toggle {
    display: none;
  }

  /* Show menu content when checkbox is checked */
  #menu-toggle:checked ~ .menu-content {
    display: block;
  }

  /* Hide hamburger icon when menu is open */
  #menu-toggle:checked ~ .menu-btn .menu-icon {
    display: none;
  }

  /* Show close icon when menu is open */
  #menu-toggle:checked ~ .menu-btn .close-icon {
    display: inline-block;
  }

  /* Hide close icon by default */
  .close-icon {
    display: none;
  }




  @media (max-width: 768px) {
  
    .sticky-header .text-logo {
      font-size: 1.8rem;
    }
  }
  
  @media (max-width: 576px) {
    .sticky-header {
      height: 60px;
      background-size: auto 60px;
    }
  
    .sticky-header .text-logo {
      height: 60px;
      font-size: 1.5rem;
    }
  
  }
  
  @media (max-width: 480px) {
    .sticky-header {
      height: 50px;
      background-size: auto 50px;
    }
  
    .sticky-header .text-logo {
      height: 50px;
    }
  
  }
