﻿body {
    background-color: #F5F5F5;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;1,400&display=swap'); /*java script keep this*/
@font-face {
    font-family: "Grandview";
    src: url(fonts/GrandviewLight.ttf) format('truetype');
}

@font-face {
    font-family: "Fauna";
    src: url(fonts/FaunaOne-Regular.ttf) format('truetype');
}

@font-face {
    font-family: "Lora";
    src: url(fonts/Lora-Regular.ttf) format('truetype');
}

.topScreen {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    font-family: 'Grandview';
    grid-template-rows: auto auto;
    background-color: #800020;
}

* {
    margin: 0;
/*    padding: 0;*/
    box-sizing: border-box;
}

html {
    font-size: 80%;
    font-family: 'Roboto', sans-serif;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.header {
    border-bottom: 1px solid #E2E8F0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #f4f4f4; /*hamburger icon color*/
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-content: center;
}

.nav-item {
    margin-left: 5rem;
}

.nav-link {
    font-size: 1.6rem;
    font-weight: 400;
    color: #f4f4f4; /*menu text colors*/
}

.nav-link:hover {
    color: #FF8E12; 
    transition: color 0.2s;/*menu text hover color*/
}

.listing #wrapper > footer, .simple #wrapper > footer, .gallery #wrapper > footer {
    position: relative;
    width: 90%;
    margin: 35px auto;
    padding: 30px 0 39px;
    clear: both;
    border-top: 1px solid #eaeaea;
    max-width: 1140px;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    text-align: center;
}

.socials {
    color: #800020;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    /*flex-wrap: wrap;*/
    float: right;
}

.socials:hover {
    color: #FF8E12;
    transition: color 0.2s;
    text-decoration: none;
    margin: 0 10px;
}

.icons{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

ion-icon {
    font-size: 30px;
}

video {
    width: 960px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.portfolioLayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: -40px;
    align-items: center;
    justify-items: center;
}

.portfolioWork {
    list-style: none;
    position: relative;
    width: 550px;
}

.pVideo {
    position: relative; 
}

.pVideo video{
    width: 550px;
}

.pText {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    font-family: Grandview;
    /*justify-content: space-between;*/
    line-height: 22px;
    margin-bottom: 6px;
}

.artGrid {
    display: block;
    justify-content: center;
    padding-left: 180px;
}

.artItems {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5%;
}

.artItems img {
    object-fit: cover;
    min-height: 50%;
    width: 50%;
}

.aboutMe {
    height: 100vh;
    width: 100%;
    padding: 70px;
}

.about {
    width: 1130px;
    max-width: 85%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.aboutText {
    width: 540px;
}

.aboutText h2 {
    font-size: 60px;
    margin-bottom: 10px;
    font-family: Grandview;
}

.aboutText h5 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: Grandview;
}

.aboutText p {
    font-size: 18px;
    line-height: 25px;
    font-family: Grandview;
}

form {
    max-width: 420px;
    margin: 50px auto;
}

.feedback-input {
    color: black; /*FORM TEXT COLOR*/
    font-family: Lora;
    font-weight: 500;
    font-size: 18px;
    border-radius: 5px;
    line-height: 22px;
    background-color: transparent;
    border: 2px solid #FF8E12; /*BORDER COLOR  #FF8E12 #800020*/
    transition: all 0.3s;
    padding: 13px;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
    outline: 0;
}

.feedback-input:focus {
    border: 2px solid #CC4949;
}

textarea {
    height: 150px;
    line-height: 150%;
    resize: vertical;
}

[type="submit"] {
    font-family: Lora;
    width: 100%;
    background: #FF8E12; /*BUTTON COLOR*/
    border-radius: 5px;
    border: 0;
    cursor: pointer;
    color: white;
    font-size: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: all 0.3s;
    margin-top: -4px;
    font-weight: 700;
}

[type="submit"]:hover {
    background: #800020;
}

.resume {
    font-family: Lora;
    font-size: 18px;
    display: block;
    justify-content: center;
    background: #FF8E12;
    padding: 15px;
    cursor: pointer;
    text-decoration: none;
    width: 420px;
    text-align: center;
    border-radius: 5px;
    font-size: 20px;
    align-items: center;
    transition: all 0.3s;
}

.resume p {
    color: white;
}

.resume:hover {
    background: #800020;
}

.youTube {
    width: 960px;
    height: 540px;
}

.filmLayout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    /*    gap: -40px;*/
    align-items: center;
    /*    justify-items: center;*/
}

.projectLayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /*    align-items: center;*/
    gap: 20px;
    margin-right: auto;
    margin-left: auto;
    width: 600px;
}

.projectLayout p {
    font-family: Grandview;
    font-size: 20px;
}

.projectBox {
    display: flex;
    flex-direction: column;
}

.projectButton {
    font-family: Lora;
    font-size: 18px;
    display: block;
    justify-content: center;
    background: #FF8E12;
    padding: 15px;
    cursor: pointer;
    text-decoration: none;
    width: 300px;
    text-align: center;
    border-radius: 5px;
    font-size: 20px;
    align-items: center;
    transition: all 0.3s;
}

.projectButton p {
    color: white;
}

.projectButton:hover {
    background: #800020;
}

.filmWork {
    list-style: none;
    position: relative;
    width: 300px;
}

.fVideo {
    position: relative; 
}

.fVideo video{
    width: 340px;
}

.fText {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    font-family: Grandview;
    /*justify-content: space-between;*/
    line-height: 22px;
    margin-bottom: 6px;
}

.mM video{
    width: 560px;
    height: auto;
}

iframe {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.projectText {
    display: flex;
    justify-content: center;
}

.projectText h1 {
    font-family: Grandview;
    font-size: 50px;
}

.projectText p {
    font-family: Grandview;
    font-size: 25px;
}

.tempWIP {
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.tempWIP p {
    font-size: 70px;
}
@media only screen and (max-width: 768px) /*mobile*/ {

    .topScreen {
        display: flex;
        flex-direction: row;
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        z-index: 100;
        top: 5rem;
        flex-direction: column;
        background-color: #800020;
        width: 100%;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow:
            0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 2.5rem 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        -webkit-transform: translateY(8px) rotate(45deg);
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        -webkit-transform: translateY(-8px) rotate(-45deg);
        transform: translateY(-8px) rotate(-45deg);
    }

    video{
        width: 100%;
    }

    .portfolioLayout {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        justify-items: center;
    }

    .pVideo video {
        width: 100%;
        height: 100%;
    }

    .artGrid {
        display: grid;
        justify-content: center;
    }

    .artItems {
        display: grid;
        grid-template-columns: 1fr;
        gap: 5%;
    }

    .artItems img {
        object-fit: cover;
        min-height: 20%;
        width: 20%;
    }

    .about {
        width: 100%;
        display: block;
    }

    form {
    max-width: 420px;
    margin: 50px auto;
    }

  .feedback-input {
    color: black; /*FORM TEXT COLOR*/
    font-family: Lora;
    font-weight: 500;
    font-size: 18px;
    border-radius: 5px;
    line-height: 22px;
    background-color: transparent;
    border: 2px solid #FF8E12; /*BORDER COLOR  #FF8E12 #800020*/
    transition: all 0.3s;
    padding: 13px;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
    outline: 0;
  }

  .feedback-input:focus {
        border: 2px solid #CC4949;
  }

  textarea {
    height: 150px;
    line-height: 150%;
    resize: vertical;
  }

  [type="submit"] {
    font-family: Lora;
    width: 100%;
    background: #FF8E12; /*BUTTON COLOR*/
    border-radius: 5px;
    border: 0;
    cursor: pointer;
    color: white;
    font-size: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: all 0.3s;
    margin-top: -4px;
    font-weight: 700;
  }

  [type="submit"]:hover {
        background: #800020;
  }

  .resume {
    font-family: Lora;
    font-size: 18px;
    display: block;
    justify-content: center;
    background: #FF8E12;
    padding: 15px;
    cursor: pointer;
    text-decoration: none;
    width: 420px;
    text-align: center;
    border-radius: 5px;
    font-size: 20px;
    align-items: center;
    transition: all 0.3s;
  }

  .resume p {
    color: white;
  }

  .resume:hover {
    background: #800020;
  }

  .youTube {
    width: 100%;
    height: auto;
  }

  .projectLayout {
    display: grid;
    grid-template-columns: 1fr;
    /*    align-items: center;*/
    gap: 20px;
    margin-right: auto;
    margin-left: auto;
    width: 300px;
  }

  .iframe {
      width: 100%;
      height: auto;
  }

  .mM video {
    width: 100%;
    height: auto;
  }

}

