
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* End of css reset */

header a{
    display: none;
}

p, a{
    font-family: Arial, Helvetica, sans-serif;
}

h1, h2, h3, li a{
    font-family: "Knewave", system-ui;
}

html{
    scroll-behavior: smooth;
    box-sizing: border-box;
}

:root {
    --background: #464729;
    --text: #ffffe9;
    --hover: #d8d8c3;
}

.top{
    background-image: url("pictures/background.jpg");
    min-height: 100vh;
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--text);
}

.topBar{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 15vh;
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
}

header h1{
    font-size: 30px;
    font-weight: bold;
}

nav{
    width: 50%;
    text-align: center;
    align-self: center;
    font-size: 20px;
}

nav ul{
    display: flex;
    list-style-type: none;
	justify-content: space-evenly;
    align-items: center;
    text-decoration: none;
    height: 100%;
}

nav li{
    width: 200px;
    text-align: center;
    margin: 0 10px;
}

nav li:hover{
    width: 200px;
    text-align: center;
    margin: 0 10px;
}


nav a:link, nav a:visited{
    text-decoration: none;
    color: var(--text);
}

nav a:link:hover, nav a:visited:hover{
    text-decoration: none;
    color: var(--hover);
}

#homeIntro{
    background-color: rgba(0, 0, 0, .15);
    height: 90vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding-left: 8%;
}

#homeIntro h1{
    margin-bottom: 15px;
    font-size: 55px;
}

#homeIntro p{
    font-size: 20px;
    width: 20%;
}

.learnMore{
    border-radius: 25px;
    width: 15%;
    background-color: var(--background);
    color: var(--text);
    text-align: center;
    padding: 10px 0;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    margin-top: 15px;
    scroll-behavior: smooth;
}

.workSamples {
    display: grid;
    box-sizing: border-box;
    grid-template-columns: 39.5% 39.5%;
    column-gap: 50px;
    row-gap: 50px;
    justify-content: center;
    margin-bottom: 25px;
    text-align: center;
    grid-column-start: 1;
    grid-column-end: 3;
    margin-top: 15px;
}

.headText{
    text-align: center;
    width: 100%;
    margin-top: 35px;
}

.headText h2{
    font-size: 22px;
    color: var(--background);
    margin-bottom: 15px;
}

.headText h3{
    font-size: 28px;
    font-weight: bold;
}

.workSample {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    background-color: var(--background);
    color: var(--text);
    padding-right: 3%;
}

.workSample img{
    width: 310px;
    height: 310px;
    object-fit: cover;
    grid-row-start: 1;
    grid-row-end: 2;
}
  
.description {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
  
.description a{
    margin-top: 1rem;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--text);
    transition: color 0.2s;
}

.link{
    text-decoration: underline;
}

.linkless{
    text-decoration: none;
}
  
.description a:hover {
    color: var(--hover);
}

.inProgress{
    background-color: white;
    color: black;
    width: 75%;
    padding: 10px 15px;
    justify-self: center;
    justify-items: center;
    text-align: center;
}

.inProgress img{
    width: 100%;
    object-fit: cover;
}

.inProgress a{
    color: black;
}

.inProgress a:hover{
    color: #68685d;
}


#certifications{
    display: grid;
    box-sizing: border-box;
    grid-template-columns: 33% 33% 33%;
    grid-template-rows: auto auto auto;
    column-gap: 50px;
    row-gap: 50px;
    justify-content: center;
    justify-self: center;
    justify-items: center;
    width: 100%;
    padding: 5% 15%;
    color: var(--text);
    background-color: var(--background);
    text-align: center;
}

#certifications figcaption{
    width: 100%;
}

#certifications h2{
    grid-row: 1 / 2;
    grid-column: 1 / 4;
    text-align: center;
    font-size: 25px;
}

#certifications div{
    justify-items: center;
    max-width: 50%;
}

.split-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.split-container h2{
    font-size: 18px;
    color: var(--background);
}

.split-container h3{
    font-size: 28px;
    font-weight: bold;
}

.left {
    flex: 1;
    display: flex;
    justify-content: center;
    background-color: #f4f4f4;
    padding: 5rem;
    width: 25%;
    padding-top: 10%;
}

.left p{
    font-size: 20px;
}

.left h3, .left h2{
    margin-bottom: 1rem;
    text-align: left;
}

.right {
    flex: 1;
    background-image: url('pictures/kinda\ head\ shot.jpg');
    background-size: cover;
    background-position: center;
}



.docs {
    display: flex;
    height: 50vh;
    width: 100%;
    background-image: url('pictures/background.jpg');background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.docsLeft {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    font-size: 40px;
}

.docsRight {
    flex: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.docsRight a{
    text-align: center;
    font-size: 25px;
    color: whitesmoke;
    text-decoration: none;
}

.docsRight i{
    font-size: 35px;
}

.docsLeft, .docsRight{
    color: whitesmoke;
    background-color: rgba(0, 0, 0, .15);
}

.quote{
    text-align: center;
    background-color: var(--background);
    height: 25vh;
    align-content: center;
    box-sizing: border-box;
    color: var(--text);
}

.quote p{
    width: 50%;
    justify-self: center;
    font-size: 23px;
}

.quote h2{
    font-size: 30px;
    margin-bottom: 35px;
}

#contact{
    text-align: center;
    padding-bottom: 5%;
}

#contact h2{
    font-size: 25px;
    margin-top: 25px;
    color: var(--background);
}

#contact h3{
    font-size: 35px;
    margin-top: 30px;
}

.info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info section{
    display: flex;
    justify-content: center;
    margin-top: 30px;
    font-size: 23px;
    color: var(--background);
    text-decoration: none;
    font-weight: bold;
}

.info section p{
    margin-left: 8px;
}

.orgs {
    height: 75vh;
    display: flex;
}


.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    position: relative;
    width: 33%;
    align-items: center;
  }
  
  .image {
    display: block;
    width: 100%;
    
  }
  
  .overlay {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background-color: var(--background);
    color: var(--text);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
    
  }
  
  .container:hover .overlay {
    display: flex;
    bottom: 0;
    height: 100%;
    align-items: center;
  }
  
  .text {
    color: white;
    font-size: 20px;
    position: absolute;
    overflow: hidden;
    text-align: center;
    align-items: center;
    padding: 0 15px;
  }

  .name{
    display: flex;
    width: 50%;
    height: 15vh;
    align-items: center;
    padding-left: 10%;
  }


  #sticky-button {
    position: fixed;
    bottom: 20px; /* Adjust as needed for vertical position */
    right: 20px; /* Adjust as needed for horizontal position */
    z-index: 1; /* Make sure it's above other content */
    /* Add your desired button styles here */
    color: white;
    border-radius: 5px;
    padding: 10px;    
  }

  .toTop{
    padding: 10px;
  }

  @media screen and (max-width: 414px) {

    .topBar {
        flex-direction: row;
        height: auto;
        text-align: center;
      }
    
      header h1, header a {
        font-size: 22px;
        color: var(--text);
        text-align: center;
      }

      header a{
        padding-right: 15px;
        display: block;
      }
    
      nav {
        width: 100%;
        display: none;
        position: relative;
      }
    
      nav ul {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 0;
      }
    
      #homeIntro {
        padding: 1rem;
        text-align: center;
      }
    
      #homeIntro h1 {
        font-size: 28px;
      }
    
      #homeIntro p {
        font-size: 16px;
        width: 100%;
      }
    
      .learnMore {
        width: 40%;
        font-size: 16px;
        align-self: center;
      }
    
      .workSamples {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
      }

      .workSample{
        display: grid;
        grid-template-columns: 8em  auto;
        gap: 1rem;
        background-color: var(--background);
        color: var(--text);
        padding: 15px 0;
        padding-right: 3%;
      }
    
      .workSample img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        grid-row-start: 1;
        grid-row-end: 2;
      }


      #certifications{
        height: auto;
        width: 100%;
      }

      #certifications img{
        width: fit-content;
      }


      .orgs{

        flex-direction: column;
        height: auto;
      }
    

      .split-container{
        width: 100%;
        height: auto;
        font-size: 10px;
      }

      .docs {
        flex-direction: column;
        height: 50vh;
        font-size: 10px;
      }
    
      .left, .right, .docsLeft, .docsRight, .name {
        width: 100%;
        font-size: 16px;
        padding: 1rem 0;
      }
    
      .quote p, .quote h2 {
        width: 100%;
        font-size: 18px;
        text-align: center;
      }
    
      .info section {
        flex-direction: column;
        font-size: 16px;
      }
    
      .container {
        width: 100%;
      }
    
      #sticky-button {
        bottom: 15px;
        right: 15px;
        font-size: 14px;
        padding: 10px 15px;
      }

      .docs {
        display: flex;
        height: auto;
        width: 100%;
        background-image: url('pictures/background.jpg');background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .docsLeft {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem 0;
        text-align: center;
        font-size: 40px;
        height: 100%;
    }
    
    .docsRight {
        flex: 1;
        background-size: cover;
        background-position: center;
        display: flex;
        justify-content: space-around;
        align-items: center;
        height: 100%;
    }

    .docsLeft, .docsRight{
        color: whitesmoke;
        background-color: rgba(0, 0, 0, 0);
    }

    .inProgress{
        display: flex;
        flex-direction: column;
    }

    .inProgress a{
        text-align: center;
    }
    
  } 