@font-face {
    font-family: mainFont;
    src: url(/fonts/mainFont.ttf);
  }

body {
    background-color: black;
    color: white;
    font-family: mainFont;
    margin: 0;
    scroll-behavior: smooth;
}

header {
    background-color: black;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 2vh;
    position: fixed;
    width: 100vw;
    z-index: 999;
}

h1 {
    font-size: 3vh;
    font-weight: 400;
}

ul{
    margin: 0;
    padding: 2vh;
}

hr {
    border: .25vh solid #f7b500;
    opacity: 0;
    width: 0;   
}

.logo-image {
    height: 6vh;
}

.section-header {
    color: #f7b500;
    display: inline-block;
    font-size: 6vh;
    font-weight: 500;
    margin: auto;
    padding-top: 2vh;
    position: sticky;
    top: 0vh;
    text-align: center;
    z-index: 1000;
  }

.quote-button {
    border: none;
    background-color: #f7b500;
    border-radius: 5px;
    color: black;
    font-family: mainFont;
    font-size: 2.5vh;
    margin-right: 5vh;
    padding: 0 1.5vw;
}

.logo-clickable {
    align-items: center;
    column-gap: 1vh;
    display: flex;
    font-size: 4vh;
    pointer-events: none;
}

.home-section {
    height: 95vh;
    position:sticky;
    top: 0vh;
    width: 100vw;
    z-index: -2;
}

.home-section img {
    height: 100vh;
    object-fit: cover;
    position: sticky;
    top: 0;
    width: 100vw;
    z-index: 1;
}

.slogan {
    animation: slideIn 1.5s .15s forwards ease-out;
    border-left: solid .5vw #f7b500;
    bottom: 15vh;
    color: transparent;
    font-size: 5vw;
    font-weight: 500; 
    margin: 0;
    left: 5vw;
    position: absolute;
    width: 45vw;
    z-index: 2;
}

.about-section {
    background-color: black;
    border-radius: 10vw 10vw 0 0;
    display: flex;
    flex-direction: column;
    /* height: 400vh; */
    justify-content: space-evenly;
    padding-top: 2.5vh;
    width: 100vw; 
}

.moveUp {
    animation: moveUp 1.5s ease-in-out;
}

.about-image {
    border-radius: none;
    height: 35vw;
    object-fit: cover; 
    opacity: 0;
    width: 35vw;
}

.about-text-container {
    display: flex;
    flex-direction: column; 
    font-size: 2vw;
    text-align: center;
    width: 40vw;
}

.about-title {
    font-size: 3vw;
}

.about-description {
    font-weight: 100;
    opacity: 0;
}

.about {
    display: flex;
    height: 100vh;
    justify-content: space-evenly;
    align-items: center;
    /* padding-top: 5vh; */
}

.about-animation {
    hr {
        animation: lineGrow .5s .25s forwards ease-out;
    }
    .about-description {
        animation: showText 1s .25s forwards;
    }
    .about-image{
        animation: imageBorder 1.25s forwards;
    }
}

.review-section {
    background-color: black;
    background-image: url("/images/parkinggarage-min.webp");
    background-size:cover;
    display: flex;
    height: 100vh;
    justify-content: center;
    position: sticky;
    top: 0vh;
    width: 100vw;
}

.overlay {
    position: absolute;
    z-index: 2;
    height: 100%;
    width: 100%;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.581);
}

.review-overlay {
    background-color: rgba(0, 0, 0, 0); 
    height: 100%;
    margin: 0;
    position: absolute;
    width: 100%;
    z-index: 2;
}

.review-text {
    margin: auto;
    opacity: 0;
    text-align: center;
    width: 75%;
    z-index: 3;
}

.review-description {
    font-size: 8vh;
}

.review-animation {
    .review-overlay {
        animation: overlayAppear 1.5s forwards;
    }
    .review-text {
        animation: showText 1s .5s forwards;
    }
    .review-line {
        animation: reviewLineGrow 1s .5s forwards;
    }
}

.form-section {
    align-items: center;
    background-color: rgb(0, 0, 0);
    border-radius: 100px 100px 0 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    position:sticky;
    text-align: center;
    top: 0; 
    width: 100vw;
}

.contact-button {
    background-color: transparent;
    border: solid .25vh #f7b500;
    border-radius: 1vh;
    color: #f7b500;
    font-family: mainFont;
    font-size: 3vh;
    margin: 0;
    opacity: 0;
    padding: 1.5vh 2.5vh;
    transition: all .15s;
}

.contact-button:hover {
    background-color: #f7b500;
    color: black;
}

.button-animation {
    animation: showText .75s .75s forwards;
}

footer {
    align-items: center;
    background-color: rgb(33, 33, 33);
    display: flex;
    font-size: 5vw;
    height: 70vh; 
    justify-content: space-evenly;  
    top: 0;
    width: 100vw;
}

.footer-section {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    list-style: none;
    z-index: 1;
}

.main-footer {
    flex-direction: column;
}

.first-bleh {
    align-items: center; 
    border-radius: 3vw;
    box-shadow: rgba(0, 0, 0, 0.601) 0px 2px 4px 0px, rgba(4, 4, 4, 0.583) 0px 2px 16px 0px;
    display: flex;
    flex-direction: column;
    height: 60vh;
    justify-content: center;
    width: 55vw;  
}

.second-bleh {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 60vh;
    justify-content: space-around;
}

/* .phone-number {
    color: white;
    text-decoration: none;
} */

.mission-section {
    display: flex;
    flex-direction: row;
}

.mission-animation {
    animation: shadowGrow .75s .5s forwards;
}

.contact-footer {
    align-items: center;
    border-radius: 3vw;
    box-shadow: rgba(0, 0, 0, 0.601) 0px 2px 4px 0px, rgba(4, 4, 4, 0.583) 0px 2px 16px 0px;
    align-items: center;
    height: 35%;
    width: 25vw;
    font-size: 1.5vw;
    justify-content: center;
}

#location-phone {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.icon {
    height: 3vh;
}

.list {
    align-items: center;
    display: flex;
    font-size: 3vh;
}

.navigation-footer {
    color: #f7b500;
    cursor: pointer;
    display: flex;
    font-size: 2vh;
    height: 30vh;
    line-height: 2;
    margin: 0;
}

.navigation-footer li {
    transition: all .35s;
}

.navigation-footer li:hover {
    font-weight: 700;
}

.footer-logo {
    height: 8vh;
    width: 8vh;
}

.mission-statement {
    border-left: solid .3vh #f7b500;
    font-size: 2vh;
    opacity: 0;
    padding: 1vh;
    width: 75%;
}

.ccb-number {
    font-size: 1.5vh;
    color: white;
    cursor: none;
}


@keyframes shadowGrow {
    0% {
        opacity: 0;
        padding-left: 10vw;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        padding-left: 1vw;
    }
}

@keyframes slideIn {
    0% {
        color: transparent;
        height: 0;
        padding: 0 50vw;
    }
    40% {
        color: transparent;
        height: 12.5vw;
    }
    100% {
        color: white;
        height: 12.5vw;
        padding: 0 1vw;
    }
}


@keyframes reviewLineGrow {
    from {
        opacity: 0;
        width: 0;
        
    }
    to {
        opacity: 1;
        width: 10%;
    }
}

@keyframes overlayAppear {
    from {
        background-color: rgba(0, 0, 0, 0);
    }
    to {
        background-color: rgba(0, 0, 0, 0.545);
    }
}

@keyframes lineGrow {
    from {
        opacity: 0;
        width: 0;
    }
    to {
        opacity: 1;
        width: 30%;
    }
}

@keyframes showText {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes moveUp {
    0% {
        transform: translateY(0vh);
    }
    50% {
        transform: translateY(-8vh);
    }
    80% {
        transform: translateY(-8vh);
    }
    100% {
        transform: translateY(0vh);
    }
}

@keyframes imageBorder { 
    from {
        border-radius: none;
        opacity: 0;
    }
    to {
        border-radius: 4vh;
        opacity: 1;
    } 
} 


@media only screen and (max-width: 1024px){
    h1 {
      display: none;
    }

    .quote-button {
        margin-right: 3vh;
    }
    /* .section-header {
        font-size: 5vw;
      } */
    
    .moveUp {
        animation: moveUp 1.5s ease-in-out;
    }

.navigation-footer {
    color: #f7b500;
    display: flex;
    font-size: 2vh;
    line-height: 2;
    margin: 0;
}

footer {
    align-items: center;
    background-color: rgb(33, 33, 33);
    display: flex;
    flex-direction: column;
    font-size: 5vh;
    height: 80vh; 
    justify-content: space-evenly;  
    top: 0;
}

.contact-footer {
    display: flex;
    align-items: center;
    width: 38vw;
}
.first-bleh {
    width: 90vw;
    height: 45vh;
}

.second-bleh {
    width: 100vw;
    height: 30vh;
    display: flex;
    flex-direction: row;
}
.mission-statement {
    font-size: 2vh;
    width: 80%;
    padding: 0;
}

.contact-button {
    display:none;
}

.list {
    font-size: 1.5vh;
}

.footer-logo {
    height: 6vh;
    width: 6vh;
}

.icon {
    height: 3vh;
}


    @keyframes slideIn {
      0% {
          color: transparent;
          height: 0;
          padding: 0 50vh;
      }
      40% {
          color: transparent;
          height: 12.5vh;
      }
      100% {
          color: white;
          /* height: 12.5vh; */
          padding: 0 1vh;
      }
  }
}

@media only screen and (max-width: 820px) {
    .section-header {
        font-size: 5vh;
    }
    
    .about-title {
        font-size: 4vh; 
        margin-bottom: 0;
    }

    #seal-coating .about-text-container{
      background-image: url(/images/sealcoatingflippedabout.webp);
    }

    #asphalt-repair .about-text-container{
        background-image: url(/images/asphaltpatchingabout.webp);
    }

    #strip-lining .about-text-container{
        background-image: url(/images/newasphaltabout.webp);
    }

    #curb-repair .about-text-container{
        background-image: url(/images/curbrepairabout.webp);
    }

    .about-image {
      display: none;
    }

  .about-description {
    margin: 0;
    opacity: 1;
    font-size: 4.75vw;
  }

  .about-text-container {
      background-size: cover;
      border-radius: 5vw;
      height: 80vw;
      font-size: 3.5vh; 
      padding: 1vw;
      width: 80vw;
  }

  .review-description {
    font-size: 4vh;
}
}

@media only screen and (max-width: 500px) {
    .section-header {
        font-size: 4vh;
    }
    .about {
        height: 55vh;
      }
    .about-text-container {
        font-size: 4vw; 
    }

    .slogan {
        width: 80%;
        font-size: 9vw;
    }

    footer {
        height: 85vh;
    }
    .mission-statement {
        width: 85%;
        padding: 0;
    }
    .first-bleh {
        height: 50vh;
    }

    .contact-footer {
        width: 41vw;
    }

    .list {
        font-size: 2vh;
    }
}

