@font-face {
    font-family: 'Roboto';
    src:
        url('Roboto.woff2') format('woff2'),
        url('Roboto.woff') format('woff'),
        url(Roboto-VariableFont_wdth\,wght.ttf) format('truetype');
}

@font-face {
    font-family: 'Sports Jersey';
    src:
        url('fonts/sportsjersey.woff2') format('woff2'),
        url('fonts/sportsjersey.woff') format('woff'),
        url(sportsjersey.ttf) format('truetype');
}

body {
    font-family: Roboto, sans-serif;
    line-height: 1.5;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

p {
    font-family: Roboto;
    font-size: inherit;
    line-height: 1.6;
    color: #111111;
}

.hidden-nav {
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
}

.visible-nav {
    transform: translateY(0);
    transition: transform 0.4s ease-in-out;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fafafa;
    padding: 8px 16px;
    z-index: 1000;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

.navBg {
    background-color: var(--black) !important;
    background-color: #080808;
}

header {
    position: relative;
}

.h1Wrapper {
    margin-bottom: 5vh;
    margin-top: 10vh;
}

@supports (margin-top: 10svh) {
    .h1Wrapper {
        margin-top: 10svh;
        margin-bottom: 5svh;
    }
}

h1 {
    font-family: roboto;
    color: #111111;
}

h2 {

    font-size: clamp(1.5rem, 2.5vw + 1rem, 3rem);
    margin-bottom: 3vh;
}

.nav-item {
    margin: 0 2vh;
    font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
    justify-self: left;
}

.nav-link {
    color: #fafafa !important;
    font-family: Sports Jersey;
    justify-self: end;
}

.navbar .nav-link:focus {
    outline: 3px solid #9b30ff;  
    outline-offset: 3px;         
    border-radius: 4px;           
}
.navbar-toggler:focus {
    outline: 3px solid #9b30ff;
    outline-offset: 3px;
    border-radius: 4px;
}
.nav-link,
button,
a {

    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

:root {
    --black: #080808;
    --white: #fafafa;
    --purple: #8A2BE2;
}

.aboutBlurbContainer {
    width: 100%;
    margin: 0 auto;
    font-size: clamp(1rem, 2vw, 2.5rem);
    margin-bottom: 8vh;
    max-width: 75ch;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--purple);
    outline-offset: 2px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.projectList {
    padding: 2rem;
}

.projectList {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    grid-gap: 1rem;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.projectList2 {
    padding: 2rem;
}

.projectList2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 1rem;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.projectListItemWrapper {
    display: grid;
    grid-template-columns: 15% auto;
    grid-column-gap: clamp(10px, 2vw, 30px);
}

.whatWeDoIconWrapper {
    display: grid;
}

.specialLabelsWrapper {
    display: grid;

}

.specialLabels {
    font-size: clamp(0.9rem, 1vw + 0.6rem, 1rem);
    padding: 5px;

}

.specialLabels2 {
    font-size: clamp(0.9rem, 1vw + 0.6rem, 1rem);
    padding: 5px;
    text-align: center;
}

.whatWeDoIcon {
    font-size: clamp(1rem, 1vw + 0.6rem, 1.5rem);
    color: var(--purple);
    margin: 5px;
    margin-left: 20px;

}

.serviceIconWrapper {
    display: grid;
    place-items: center;
    height: 5svh;
}

.serviceIcon {
    font-size: clamp(1.25rem, 1.5vw + 0.5rem, 2rem);
    color: var(--purple);
    padding-bottom: 2vh;
}

.whatWeDoInfoWrapper {
    background-color: var(--black);
    padding: 1%;
    padding-bottom: 10vh;
}

.whatWeDoInfoTile {

    background-color: var(--white);
    color: #111111;
    border-radius: 1rem;
    width: 100%;
    display: grid;
    grid-template-rows: 15% 60% 20%;
    height: 100%;
}

.serviceTitleWrapper {
    display: grid;
    text-align: center;
    padding: 10px;
}

.serviceBlurbWrapper {
    display: grid;

}

.serviceBlurb {
    padding: 20px;
    max-width: 65ch;
    line-height: 1.65;
}

p {
    font-family: Roboto;
}

.h2Section {
    font-family: Sports Jersey;
    margin-bottom: 3vh;
    display: grid;
    text-align: center;
    color:#111111;
}

.h2Section2 {
    font-family: Sports Jersey;
    margin-bottom: 3vh;
    margin-top: 10vh;
    color: #fafafa;
    display: grid;
    text-align: center;
}

.h2Section3 {
    font-family: Sports Jersey;
    margin-bottom: 3vh;
    margin-top: 10vh;
    color: #111111;
    display: grid;
    text-align: center;
}

.tagLine {
    color: var(--white);
    font-size: clamp(3rem, 6vw, 8rem);
    padding-left: clamp(1rem, 5vw, 4rem);
    margin-top: clamp(1rem, 2vh, 3rem);
    position: relative;
}

.lastLogoWrapper {
    display: flex;
    justify-content: space-between;
}

.logo {
    height: 30vh;
    height: 30svh;
    right: 0;
    bottom: 10svh;
}

.hammy {
    height: 1.5em;
    color: #fafafa;
}

header {
    width: 100%;
    min-height: 100vh;
    height: auto;
    background-color: var(--black);
    position: relative;
    padding-top: 6rem;
    box-sizing: border-box;
    font-family: Roboto;
}

.trig-fade.enable-trig {
    position: static;
    --trig-delay: 0ms;
    --trig-duration: 2500ms;
}

article {
    width: 100%;
}

section {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    align-content: center;
}

.about {
    padding: 5vw 5vw 10vh;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.footerList {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    grid-gap: 1rem;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
    list-style: none;
}

.footerListItem {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footerWidth {
    width: 90%;
    margin: 0 auto;
}

.privacy {
    font-size: small;
}

.compImg {
    width: 100%;
}

.whatWeDoInfoRow {
    display: flex;
    flex-direction: column;
    gap: 2vh;
    justify-content: center;
    align-items: center;
}

.contactWrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 4vw;
}

.contactRows {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.conticon {
    width: 1.5rem;
    min-width: 1.5rem;
    text-align: center;
}

.contactItemWrapper {
    display: grid;
    grid-template-rows: auto auto;
}

.contactItem {
    font-weight: 500;
}

.contactLink {
    color: inherit;
    text-decoration: none;
}

.address {
    padding: 4vw;
    justify-content: center;
    font-weight: 500;
    text-align: left;
}

.addressStack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.houseInfo {
    padding: 4vw;
    justify-content: center;
    font-weight: 500;
}

h4 {
    font-size: small;
}

.copyWrite {
    display: grid;
    justify-content: center;
    margin-bottom: 2vh;
    font-family: roboto;
}

/* ============================================ */
/* MEDIA QUERIES - ORGANIZED BY BREAKPOINT    */
/* ============================================ */

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {

    .trig-reveal-left,
    .trig-fade,
    .trig-pop {
        animation: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Extra Small Devices: 0-359px */
@media only screen and (max-width: 359px) {
    .footerList {
        grid-gap: 0.5rem;
        width: 98%;
        padding: 0.5rem;
    }

    .logo {
        height: 15svh;
    }

    header {
        padding-top: 5rem;
    }

    .tagLine {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .about {
        padding-top: 6rem;
    }

    h2 {
        text-align: center;
    }

    .whatWeDoInfoWrapper {
        padding: 2% 0;
    }

    .projectList {
        grid-gap: 0.5rem;
        width: 98%;
        padding: 0.5rem;
    }

    .projectList2 {
        grid-gap: 0.5rem;
        width: 98%;
        padding: 0.5rem;
    }

    .projectListItemWrapper {
        grid-column-gap: 5px;
    }

    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .whatWeDoIcon {
        margin-left: 5px;
        margin-right: 5px;
    }

    .whatWeDoInfoWrapper {
        padding: 0.5%;
    }

    .serviceBlurb {
        padding: 10px;
    }
}


/* Extra Small Landscape */
@media only screen and (max-width: 576px) and (orientation: landscape) {
    .tagLine {
        font-size: clamp(1.2rem, 3.5vw, 2rem);
        margin-top: 0.5vh;
        padding-left: clamp(0.5rem, 3vw, 2rem);
    }

    .h1Wrapper {
        margin-top: 6vh;
        margin-bottom: 2vh;
    }

    header {
        padding-top: 3rem;
    }

}

/* Small Devices (Phones): 360-576px */
@media only screen and (min-width: 360px) and (max-width: 576px) {

    .whatWeDoInfoWrapper {
        padding: 2% 0;
    }

    .projectList2 {
        width: 95%;
        padding: 1rem;
    }

    .specialLabels {
        text-align: left;
    }

    .whatWeDoIcon {
        font-size: 2svh;
    }

    .tagLine {
        font-size: 4rem;
    }

    .logo {
        height: 15vh;
    }

    .about {
        margin-top: 8%;
    }

    .h1Wrapper {
        margin-top: 9vh;
    }

    .houseInfo {
        text-align: center;
        font-size: small;
    }

    .footerSection {
        width: 100%;
        min-height: max-content;
        align-content: center;
    }

    .footerWidth {
        width: 100%;
        padding: 0 5%;
    }

    .contactWrapper,
    .address,
    .houseInfo {
        padding: 2vw;
        text-align: left;
        font-size: clamp(0.875rem, 2vw + 0.5rem, 1rem);
    }

    .nav-item {
        margin: 0.5vh 1vw;
        font-size: 4vw;
    }

    p {
        line-height: 1.5;
    }
    h4 {
        font-size: 0.3rem;
    }
}

/* Medium Devices (Large Phones/Small Tablets): 577-767px */
@media only screen and (min-width: 577px) and (max-width: 767px) {
    header {
        padding-top: 4.5vh;
    }

    .whatWeDoIcon {
        font-size: 3vh;
    }

    .projectList2 {
        width: 100%;
    }

    .whatWeDoInfoRow {
        flex-flow: column;
        gap: 4vw;
    }

    .footerSection {
        width: 100%;
        align-content: center;
    }

    .contactWrapper {
        align-items: center;
        text-align: left;
    }

    .contactRow {
        justify-content: center;
    }

    p {
        line-height: 1.5;
    }

     h4 {
        font-size: 0.2rem;
    }
}

/* Medium Devices Landscape: 577-767px */
@media only screen and (min-width: 577px) and (max-width: 767px) and (orientation: landscape) {
    .tagLine {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        margin-top: 0.5vh;
    }

    .h1Wrapper {
        margin-top: 6vh;
        margin-bottom: 2vh;
    }

    header {
        padding-top: 3.5rem;
    }

}

/* Tablets/Landscape Phones: 768-1023px */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .whatWeDoInfoRow {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2vw;
    }

    .footerList {
        width: 60%;
    }

}

/* Special Range for whatWeDoWrapper: 768-1366px */
@media only screen and (min-width: 768px) and (max-width: 1366px) {

    .projectList2 {
        width: 60%;
        margin-left: auto;
        margin-right: auto;
    }

}

/* Landscape Tablets/Small Desktops: 768px+ landscape */
@media only screen and (min-width: 768px) and (orientation: landscape) {
    .h1Wrapper {
        margin-top: 5vh;
    }

    .tagLine {
        font-size: clamp(2rem, 4vw, 5rem);
        margin-top: 1vh;
    }

    .about {
        padding-top: 6rem;
    }

    p {
        line-height: 1.7;
    }

}

/* Large Devices (Desktops): 1024px+ */
@media only screen and (min-width: 1024px) {
    header {
        padding-top: 10vh;
    }

    .h1Wrapper {
        margin-top: 16vh;
    }

    .footerSection {
        margin-top: 5vh;
    }

    .contactWrapper {
        font-size: 2.5vh;
    }

    address {
        font-size: 2.5vh;
    }

    .houseInfo {
        font-size: 2.5vh;
    }
}

/* Extra Large Landscape (Wide Desktops): 1024px+ landscape */
@media only screen and (min-width: 1024px) and (orientation: landscape) {
    .h1Wrapper {
        margin-top: 20vh;
    }

    .footerSection {
        margin-top: 10vh;
        font-size: 3vh;
    }

    .footerWidth {
        width: 90vw;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1600px) {
    .projectList2 {
        width: 60%;
        margin-left: auto;
        margin-right: auto;
    }

    .footerList {
        width: 60%;
    }
}

@media only screen and (min-width: 1601px) and (max-width: 1920px) {
    .about {
        max-width: 1800px;
        padding-top: 1rem;
    }

    .aboutBlurbContainer {
        font-size: 2rem;
    }

    .projectList {
        width: 100%;
        grid-gap: 4rem;
    }

    .specialLabels {
        font-size: 1.5rem;
    }

    .specialLabels2 {
        font-size: 1.5rem;
    }

    .h2Section {
        font-size: 3rem;
    }

    .h2Section2 {
        font-size: 3rem;
    }

    .h2Section3 {
        font-size: 3rem;
    }

    .serviceBlurb {
        font-size: 1.1rem;
    }

}