@font-face {
  font-family: "DM Mono";
  src: url('./DMMono-Regular.ttf') format('truetype');
}

:root{
  --enterprise-black: rgb(38, 38, 38);
  --enterprise-black: black;
  --enterprise-dark-gray: rgb(75, 75, 75);
  --enterprise-gray: rgb(192, 191, 191);
  --enterprise-white: white;
  --enterprise-purple: #8F0177;
  --enterprise-light-purple: #be4aab;
  --enterprise-light-gray: whitesmoke;
  --enterprise-blue: rgb(53, 25, 144);
  --enterprise-light-blue: rgb(81, 36, 232);
  --enterprise-teal: rgb(100, 224, 179);
  --enterprise-light-teal: rgb(178, 245, 220);

  --margin: 20vw;
}


body {
  font-family: 'DM Mono';
  padding: 0px;
  margin: 0px;
  
  @media (max-width: 900px) {
    font-size: medium;
    width: 100%;
    overflow-x: hidden;
  }
}


h2 {
  font-size: x-large;
  font-weight: 500;
  margin-bottom: 0px;
  margin-top: 0px;
  padding-bottom: 0px;
}
hr {
  margin-top: 0px;
  border-top: 1px solid rgb(173, 173, 173);
}

/* Everything related to the navigation bar goes here */
nav {
  display: flex;
  background-color: black;
  color: var(--enterprise-gray);
  max-height: 80px;
  position: sticky;

  padding-right: var(--margin);

  top: 0px;
  border-radius: 4px;
  z-index: 9999;

  @media (max-width: 1200px) {
    display: none;
  }
  

  .logo img {
    max-height: 80px;
    padding: 0px;
    margin: 0px;
    object-fit: cover;
  }
  

  .element {
    justify-content: center;
    align-items: center;
    padding: 30px 32px 20px 32px;
    margin-left: 10px;
    margin-right: 10px;
    overflow: hidden;
    border-radius: 4px;
    
    opacity: 1;
    transition: all 0.25s ease-in;
  }    
  
  .element:hover {  
    color: var(--enterprise-white);
    cursor: pointer;
    opacity: 1;
  }

  .active {
    background-color: var(--enterprise-purple);
    color: var(--enterprise-white);
    opacity: 1;
    transition: all 0.5s ease;
  }
  .active:hover {
    background-color: var(--enterprise-purple);
    color: var(--enterprise-white);
  }
}

.top {
  padding: 0;
}

/* Mobile nav menu */
.topnav {

  display: none;

  @media (max-width: 1200px) {
    display: block;
    width: 100%;
    background-color: black;
    position: sticky;
    top: 0;
    z-index: 999;
  }
}
.topnav #mobileLinks {
  display: none;
  position: relative;
  margin-left: auto;
  right: 0;
  text-align: right;
  padding-right: 20px;
}
.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: xx-large;
  display: block;
}

.topnav a.icon {
  background: black;
  display: block;
  position: relative;
  right: 0;
  width: 10%; 
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
}
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.heroSection {
  background-color: black; 
  margin-top: 0px; 
  margin-bottom: 3px; 
  padding-bottom: 22vh; 
  padding-top: 10vh; 
  height: 90vh;

  @media (max-width: 1200px) {
    display: block;
    height: 100vh;
    position: relative;
  }
}
.glitchText {
  font-size: 8vh;
  font-weight: 600;
  margin-bottom: 0px;
  width: 60%;
  
  @media (max-width: 1200px) {
    font-size: 6vh;
  }
}
.mottoSubtitle {
  padding-bottom: 240px; 
  color: var(--enterprise-gray);
  @media (max-width: 1200px) {
    font-size: xxx-large;
    padding-bottom: 60px; 
  }
}

.flair {
  display: flex;

  @media (max-width: 1200px) {
    display: block;
  }
  
  .title {
    font-size: x-large; 
    text-transform: uppercase; 
    padding-top: 2vh;
    width: 80%; 
    border-top: 2px solid white;

    @media (max-width: 1200px) {
      width: 80%;
      padding-top: 1vh;
      padding-bottom: 1vh;
    }

    h2 {
      @media (max-width: 1200px) {
        font-size: xxx-large;
        font-weight: 800;
      }
    }
  }
  .subtitle {
    border-top: 4px solid white; 
    margin-left: 20px; 
    width: 20%; 
    padding-top: 1vh;
    
    @media (max-width: 1200px) {
      width: 80%;
      margin-left: 0px; 
      padding-top: 1vh;
      padding-bottom: 1vh;
    }
    p {
      @media (max-width: 1200px) {
        text-transform: uppercase;
        font-size: xxx-large;
        padding-top: 0vh;
        padding-bottom: 0vh;
        margin: 0;
      }
    }
  }
}

/* row is for handeling media/mobile display */
.row {
  display: flex;
  @media (max-width: 1200px) {
    display: block;
  }
}

/* Everything related to buttons */
button {
  /**/
  padding: 8px 24px 8px 24px;
  border-radius: 50%;
  font-family: 'DM Mono';
  background-color: var(--enterprise-white);

  opacity: 1;
  transition: all 0.5s ease;
  
  @media (max-width: 1200px) {
    font-size: large;
  }
}

button.arrow {
  border-radius: 40px;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 12px;
  padding-bottom: 8px;

  @media (max-width: 1200px) {
    font-size: large;
  }
}

button:hover {
  opacity: 1;
  background-image: linear-gradient(to right, rgb(123, 121, 121) 0%, slategrey 100%);
  color: var(--enterprise-white);
  cursor: pointer;
  border-color: var(--enterprise-gray);
}

button.dark {
  background-color: var(--enterprise-black);
  color: var(--enterprise-white);
}

button.dark:hover {
  opacity: 1;
  background-color: var(--enterprise-white);
  color: var(--enterprise-black);
}


button.blue {
  background-color: var(--enterprise-blue);
  color: var(--enterprise-white);
}
button.blue:hover {
  opacity: 1;
  background-color: var(--enterprise-teal);
  color: var(--enterprise-white);
}


.text_btn {
  display: flex; 
  align-items: center;
}


/* Sections are just divs where the width of the page has a notehr color */
.section {
  padding-left: var(--margin);
  padding-right: var(--margin);
  margin: 0px;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}  
.section.black {
  background-color: var(--enterprise-black);
  color: var(--enterprise-white);
}
.section.gray {
  background-color: var(--enterprise-light-gray);
}


/* Cards and columns for presenting information */
.card {
  background-color: white;
  border-radius: 10px;
  margin-right: 10px;
  padding: 20px;
  margin-bottom: 10px;
  border: 1px solid rgb(173, 173, 173);
  overflow-wrap: break-word;
}

/* Service cards, menat to display and present a given subject */
.service-card {
  margin-right: 20px;
  min-height: 425px;
  padding: 20px;
  width: 420px;
  background-color: white;
  border-radius: 10px;
  margin: 2px 20px 2px 2px;
  border-color: whitesmoke;
  transition: border-color 0.5s ease-in;
  position: relative;
  margin-bottom: 20px;
  overflow-wrap: break-word;
  

  @media (max-width: 900px) {
    width: 80vw;
  }
}
.service-card:hover {
  border: 2px solid transparent;
  /* Source for rounding w gradient: https://stackoverflow.com/questions/51496204/border-gradient-with-border-radius*/
  background:
    linear-gradient(white 0 0) padding-box,
    linear-gradient(to right, pink 0%, var(--enterprise-light-purple) 100%) border-box;
  
  margin: 0px 18px 18px 0px;
  border-radius: 10px;
  display: inline-block;
  opacity: 1;
}
.service-card .header {
  position: absolute;
  background-color: white;
  width: 80px;
  height: 50px;
  border-radius: 0px 0px 30px 0px;
  display: flex;
  vertical-align: middle;
  font-size: xx-large;
  border-right: 1px solid rgb(173, 173, 173);
  border-bottom: 1px solid rgb(173, 173, 173);
}
.card img {
  border-radius: 5px;
  width: 422px;
  height: 422px;
}
.imgage-container img{
  width: 420px;
  height: 280px;
  object-fit: cover;
  background-color: whitesmoke;
  margin-bottom: 10px;
}


.tag {
  font-size: small;
  border-radius: 30px;
  padding: 5px 20px 5px 20px;  
  margin-right: 10px; 
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  min-height: 32px;
}
.tag.blue {
  background-color: rgb(211,194,255);
  color: var(--enterprise-black);
}
.tag.purple {
  background-color: rgb(199,194,255);
  color: var(--enterprise-black);
}
.tag.dark-purple {
  background-color: rgb(196,199,255);
  color: var(--enterprise-black);
}


/* Service splash */
/* Splash cards for the main page */
.service-splash {
  border-left: 1px solid black;
  margin-right: 20px;
  padding: 20px;
  background-color: whitesmoke;
  border-radius: 0px 5px 5px 0px;
  flex-direction: column;
  position: relative;
  margin-bottom: 20px;
  opacity: 1;
  transition: all 0.5s ease;
  font-size: small;
  width: 30%;

  h2 {
    font-weight: 600;
    font-size: 4vh;
    text-transform: uppercase;
    margin: 0;
    font-stretch:condensed;
    text-align: end;
    font-family: Arial, Helvetica, sans-serif;
  }

  @media (max-width: 1200px) {
    width: 100%;
  }
}
.service-splash p{
   margin-bottom: 0px; 
   padding-bottom: 0px;
  @media (max-width: 1200px) {
    font-size: xx-large;
  }
}
.service-splash i{
  @media (max-width: 1200px) {
    font-size: xx-large;
  }
}

.service-splash:hover {
  border-left: 1px solid var(--enterprise-gray);
  opacity: 1;
}
.service-splash.initial {
  color: slategrey;
  width: 10%;
  display: flex;

  @media (max-width: 1200px) {
    display: none;
  }
}

.right {
  right: 20px;
}
.bottom {
  position: absolute;
  bottom: 20px;
}

.button-container {
  height: 64px;
  
  @media (max-width: 1200px) {
    button {
      display: none;
    }
  }
}

/* Everything related to input and forms */
input {
  font-family: 'DM Mono';
  padding: 10px;
  border-radius: 10px;
  border-style: solid;
  border-color: rgb(226, 226, 226);
  background-color: rgb(245, 245, 245);
}
input.dark {
  
  border-color: rgb(90, 90, 90);
  background-color: rgb(50, 50, 50);
  color: rgb(194, 194, 194);
}
input:focus {
  transition: 0.5s;
  outline: none;
  border: 2px solid var(--enterprise-light-purple);
  border-style: solid;
}

/* For code examples */
pre {
  padding: 10px;
  background-color: whitesmoke;
}

/* Portraits with personal information hidden within */





/* Stuffs for blogposts */

.blog_entry{
  margin-top: 20px;
  margin-bottom: 60px;
}
.blog_entry time{
  color: var(--enterprise-gray);
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.blog_entry h3 {

  padding: 0px;
  margin: 0px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.blog_entry h3 a{
  font-size: xx-large;
  color: var(--enterprise-white);
  margin: 0px;
  padding-top: 0px;
  margin-top: 0px;
}
.blog_entry .subtitle{
  color: var(--enterprise-white);
  padding-top: 0px;
  font-size: large;
  padding-bottom: 12px;
}
.blog_entry img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: 1px solid var(--enterprise-dark-gray);
  object-fit: cover;
}
.blog_entry .description {
  color: var(--enterprise-gray);
}




.initial_header_text {
    font-size: 2vh;
    vertical-align:top;
    padding-top: 8px;
    width: 60%;
}
.initial_header_motto {
  text-transform: uppercase; 
  font-stretch: condensed;
  text-align: end;

  h2 {
    font-weight: 600; 
    font-size: 5vh;
    margin: 0; 
  }
  @media (max-width: 1200px) {
    text-align: start;
    h2 {
      font-weight: 600; 
      font-size: 3vh;
      margin: 0; 
    }
  }
}
.headline_text {
    font-size: xx-large;
    padding-top: 0px;
    margin-top: 0px;
    vertical-align: top;
}
.service_description {
  @media (max-width: 1200px) {
      font-size: xx-large;
  }
}

.service_header { 
  padding-right: 40px;
  h2 {
    font-weight: 600; 
    font-size: 6vh; 
    text-transform: uppercase; 
    margin: 0; 
    font-stretch:condensed;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  @media (max-width: 1200px) {
    width: 100%;
    p {
      font-size: xx-large;
    }
    i {
      font-size: xx-large;
    }
    h3 {
      font-size: 2vh;
    }
    li {
      font-size: xx-large;
    }
  }
}


/* this is for handeling when elements are not in the right order */
.hideForMobile {
  text-align: end;
  display: block;
  @media (max-width: 1200px) {
    display: none;
  }
}
.showForMobile {
  display: none;
  @media (max-width: 1200px) {
    display: block;
  }
}


.tbl-statement {
  width: 40%; 
  font-weight: 600; 
  vertical-align: top;

  @media (max-width: 1200px) {
    font-size: xxx-large;
    width: 100%; 
  }
}
@media screen and (max-width: 1200px) {
    table {
        border: 0;
        width: 100%;
        margin: 0;
    }

    th {
        display: none;
        /* Hide header in mobile view */
    }

    td {
        padding: 10px;
        display: block;
        text-align: left;
        /* Ensure text remains left-aligned */
        position: relative;
      font-size: xx-large;
    }

    tr {
        display: block;
        margin-bottom: 10px;
    }
}
.stmt-p p {
  padding-top: 0px;
  margin-top: 0px;
}

a {
  color: slategray;
}

.section-box {
  background-color: white;
  border-radius: 10px;
  margin: 2px auto auto auto;
  padding: 60px 16vw 60px 16vw;
  
  @media screen and (max-width: 1200px) {
  }
}

.content_header {
  margin-bottom: 10px;
}

/* Handle black commic book squares */
.black-box {
  background-color: black; color: white;
  h1 {
    font-weight: 500; 
    font-size: 6vh;
    text-transform: uppercase;
    margin: 0;
    font-stretch:condensed;
    text-align: end;
  }
  hr {
    margin-bottom: 3vh;
  }
  
  @media screen and (max-width: 1200px) {
    p {
      font-size: xx-large;
    }
  }
}

.smallBb {
  width: 35%;
  @media screen and (max-width: 1200px) {
    width: 100%;
  }
}
.largeBb{
  width: 55%;
  @media screen and (max-width: 1200px) {
    width: 100%;
  }
}
.impactText {
  font-size: 6vh; 
  background-color: black; 
  color: black;
  font-weight: 800; 
  padding-left: 20px; 
  font-family: Arial, Helvetica, sans-serif;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: white;
  width: 40vw;

  @media screen and (max-width: 1200px) {
    font-size: 4vh; 
  }
}

.impactDescription {
  color: white;
  width: 40vw;
  padding-left: 20px;
  padding-right:20px;
  margin: auto 0px auto auto;
  right:0;
  padding-top:24px;
  @media screen and (max-width: 1200px) {
    width: 90%;
  }
}

/* glitch animation */
.glitch {
  text-transform: uppercase;
  max-height: 40vh;
  height: 40vh;
}


.mobileLinksFooter {
  ul {
    font-size: large;
    color: white;
    columns: 2;
    @media screen and (max-width: 1200px) {
      font-size: xxx-large;
      columns: 1;
    }
  }
}
.profile {
  object-fit: scale-down; 
  max-width: 200px;
  @media (max-width: 1200px) {
    object-fit: fill; 
    width: 80%;
    max-width: 80%;
  }
}

.contact_form { 
    background-color: black;
    color: white;
    padding: 30px;
    float: right;
    margin: auto;
}
.contact_form h2 {
    padding: 10px;
    margin: 0px;
}


td {
    padding-top: 10px;
    width: 100%;
}
select {
    padding: 10px;
    width: 320px;
}
input {
    padding: 10px;
    width: 300px;
}
.cbx {
    padding-left: 0px;
    float: left;
    width: 14px;
    padding-right: 20px;
}
.submit {
    border-radius: 50px;
    padding: 10px 20px 10px 20px;
    font-family: 'DM Mono';
    font-size: large;
    background-color: white;
    border-color: white;
    color: black;
}


.contactHeader {
  font-size: 12vh;
  font-weight: 1000;
  @media (max-width: 1200px) {
    font-size: xxx-large;
  }
}
.contactGreeting {
  width: 30%; 
  padding-right: 8vw;
  @media (max-width: 1200px) {
    font-size: xx-large;
    width: 100%;
  }
}
.contactText {
  margin-bottom: 24vh;
  h2 {
    font-weight: 600; 
    font-size: 4vh; 
    text-transform: uppercase; 
    margin: 0; 
    font-stretch:condensed;
    text-align: start; 
    font-family: Arial, Helvetica, sans-serif;
    @media (max-width: 1200px) {
      font-size: xxx-large;
      word-break: break-all;
    }
  }
}