html {
    scroll-behavior: smooth;
}

body {
    font-family: sans-serif;
    background-image: url("../PortfolioIMGS/BGStuff/BodyBG.png");
}

h2 {
    font-family: 'Unbounded',
        sans-serif;
}

p {
    font-family: 'Lexend', sans-serif;
    font-weight: 200;
}

.TopLogo img {
    max-width: 12vw;
    padding: 0.2em 0em -1em 0em;
    display: grid;
    align-items: center;
}

.carouselIMG {
    max-width: 33vw !important;
}

header {
    display: grid;
    grid-template-columns: 1fr;
    padding: 15px;
    color: black;
    text-align: center;
}

header nav a {
    font-family: 'Unbounded', sans-serif;
    font-weight: 500;
    float: right;
    padding: 15px 18px;
    text-decoration: none;
    color: black;
    transition: all 0.3s ease 0s;
}

header nav a:hover {
    color: rgb(92, 87, 87);
}

header nav #ProjectButton {
    color: #bac53d !important;
    transition: all 0.3s ease 0s;
}

header nav #ProjectButton:hover {
    color: #7e871d !important;
}

header nav #AboutButton {
    color: #D65F40 !important;
    transition: all 0.3s ease 0s;
}

header nav #AboutButton:hover {
    color: #8a341e !important;
}

.burgerMenu {
    background-image: url("../PortfolioIMGS/BGStuff/NavBG.png");
    background-size: cover;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr;
    padding: 15px;
    color: white;
    text-align: center;
    margin-bottom: 2em;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    flex: 1;
    /* Take up remaining space */
}

.Top-logo img {
    max-width: 16%;
    cursor: pointer;
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 6px 0;
    transition: 0.4s;
}

.nav-menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav-menu a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 14px 16px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
}

.nav-menu a:hover {
    background-color: #bac53d;
    color: rgb(228, 225, 225);
    border-radius: 10px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    transition: ease-in-out 0.2s;
}

.LandLogo {
    display: grid;
    justify-content: center;
}

.LandLogo a {
    text-align: center;
}

.LandLogo img {
    max-width: 38%;
}


/* END OF HEADER */
.ProjectTitle {
    /* display: grid; */
    text-align: center;
    font-family: 'Unbounded',
        sans-serif;
    padding-top: 1em;
    color: #bac53d;
}

.ProjectStart {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    grid-gap: 2em;
    padding: 2em;
}

.Project1Img {
    display: grid;
    justify-content: right;
}

.ProjectStart p {
    width: 20rem;
    text-emphasis: left;
    color: #bac53d;
}

.UpButton {
    max-width: 40px;
    /* float: right; */
    position: fixed;
    z-index: 99;
    bottom: 20px;
    right: 20px;
}

.DeskProjContainer #ProjectsDESKTOP {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
}

.imgDIVDESK {
    display: grid;
    justify-content: center;
    padding: 1em;
}

.descDIVDESK {
    display: grid;
    text-align: center;
    justify-content: center;
    color: #bac53d;
}

.imgDIV2DESK {
    display: none;
}

.ProjectContainer #Projects {
    display: none;
}

.imgDIV {
    display: none;
}

.descDIV {
    display: none;
}

p {
    width: 22rem;
    text-align: justify;
}

.imgDIV2 {
    display: none;
}

.Project1WideImgs {
    display: grid;
    grid-template-columns: 1fr !important;
    grid-gap: 2em;
}

.Project1Wide {
    display: grid;
    justify-content: center;
    padding: 0.5em;
}

.Project1Wide img {
    width: 900px;
    height: 700px;
}

.Project1Wide2 {
    display: grid;
    justify-content: center;
    padding: 0.5em;
}

.Project1Wide2 img {
    width: 900px;
    height: 700px;
}

@media only screen and (max-width: 767px) {
    .menu-toggle {
            display: flex;
        }
    
        .burgerMenu {
            background-image: url("../PortfolioIMGS/BGStuff/NavBG.png");
            border-radius: 10px;
            display: grid;
            grid-template-columns: 1fr;
            padding: 15px;
            color: white;
            text-align: center;
            margin-bottom: 2em;
            width: 88.5vw;
        }
    
        .nav-menu {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 76px;
            left: 0;
            width: 100%;
            background-color: #D65F40;
            z-index: 1;
            border-radius: 10px;
        }
    
        .nav-menu a {
            font-family: 'Fredoka', sans-serif;
            font-weight: 500;
            color: white;
        }
    
        .nav-menu.active {
            display: flex;
        }
    
        .Top-logo img {
            /* max-width: 56%; */
            display: none;
        }
    
        .Mobile-logo img {
            max-width: 56%;
        }
    
        .ProjectStart {
            display: grid;
            grid-template-columns: 1fr;
            justify-content: center;
            grid-gap: 2em;
            padding: 2em;
        }
    
        .Project1img {
            justify-content: center;
        }
    
        .ProjectStart p {
            width: 22rem;
            text-align: justify;
        }
    
        /* .ProjectContainer #Projects {
            display: grid;
            grid-template-columns: 1fr;
            justify-content: center;
        }
    
        .Project1WideImgs .Project1Wide,
        .Project1Wide2 {
            display: none;
        }
    
        .imgDIV {
            display: grid !important;
            grid-template-columns: 1fr;
            justify-content: center;
            grid-gap: 2em;
            padding: 1em;
        }
    
        .imgDIV2 {
            display: grid !important;
            grid-template-columns: 1fr;
            justify-content: center;
            grid-gap: 2em;
            padding: 1em;
        } */
    
        .Proj1Descript {
            display: grid;
            justify-content: center;
        }
    
        .descDIV {
            display: grid;
            text-align: center;
            justify-content: center;
        }
    
        .DeskProjContainer #ProjectsDESKTOP {
            display: grid;
            grid-template-columns: 1fr;
            justify-content: center;
        }
    
        .imgDIVDESK {
            display: grid;
            justify-content: center;
            padding: 1em;
        }
    
        .descDIVDESK {
            display: grid;
            text-align: center;
            justify-content: center;
            color: #bac53d;
        }
    
        .Project1WideImgs {
            display: grid;
            grid-template-columns: 1fr !important;
            grid-gap: 2em;
        }
    
        .Project1Wide {
            display: grid;
            justify-content: center;
            padding: 0.5em;
            background-image: url(../PortfolioIMGS/PhotoEssay/PhotoEssayMockupFrontBack.png);
            width: 92vw;
            height: 32vh;
            background-repeat: no-repeat;
            background-size: 119%;
            background-position-x: -43px;
        }
    
        .Project1Wide img {
            display: none;
        }
    
        /* .ProjectContainerDESKTOP section {
            display: none;
        }
    
        .imgDIVDESK {
            display: none;
        }
    
        .descDIVDESK {
            display: none;
        }
    
        .imgDIV2DESK {
            display: none;
        } */
}

@media only screen and (max-width: 414px) {
    .menu-toggle {
        display: flex;
    }

    .burgerMenu {
        background-image: url("../PortfolioIMGS/BGStuff/NavBG.png");
        border-radius: 10px;
        display: grid;
        grid-template-columns: 1fr;
        padding: 15px;
        color: white;
        text-align: center;
        margin-bottom: 2em;
        width: 88.5vw;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background-color: #D65F40;
        z-index: 1;
        border-radius: 10px;
    }

    .nav-menu a {
        font-family: 'Fredoka', sans-serif;
        font-weight: 500;
        color: white;
    }

    .nav-menu.active {
        display: flex;
    }

        .Top-logo img {
            /* max-width: 56%; */
            display: none;
        }
    
        .Mobile-logo img {
            max-width: 56%;
        }

    .ProjectStart {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: center;
        grid-gap: 2em;
        padding: 2em;
    }

    .Project1img {
        justify-content: center;
    }

    .ProjectStart p {
        width: 22rem;
        text-align: justify;
    }

    /* .ProjectContainer #Projects {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: center;
    }

    .Project1WideImgs .Project1Wide,
    .Project1Wide2 {
        display: none;
    }

    .imgDIV {
        display: grid !important;
        grid-template-columns: 1fr;
        justify-content: center;
        grid-gap: 2em;
        padding: 1em;
    }

    .imgDIV2 {
        display: grid !important;
        grid-template-columns: 1fr;
        justify-content: center;
        grid-gap: 2em;
        padding: 1em;
    } */

    .Proj1Descript {
        display: grid;
        justify-content: center;
    }

    .descDIV {
        display: grid;
        text-align: center;
        justify-content: center;
    }

    .DeskProjContainer #ProjectsDESKTOP {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: center;
    }

    .imgDIVDESK {
        display: grid;
        justify-content: center;
        padding: 1em;
    }

    .descDIVDESK {
        display: grid;
        text-align: center;
        justify-content: center;
        color: #bac53d;
    }

    .Project1WideImgs {
        display: grid;
        grid-template-columns: 1fr !important;
        grid-gap: 2em;
    }

    .Project1Wide {
        display: grid;
        justify-content: center;
        padding: 0.5em;
        background-image: url(../PortfolioIMGS/PhotoEssay/PhotoEssayMockupFrontBack.png);
        width: 92vw;
        height: 32vh;
        background-repeat: no-repeat;
        background-size: 119%;
        background-position-x: -43px;
    }

    .Project1Wide img {
        display: none;
    }

    /* .ProjectContainerDESKTOP section {
        display: none;
    }

    .imgDIVDESK {
        display: none;
    }

    .descDIVDESK {
        display: none;
    }

    .imgDIV2DESK {
        display: none;
    } */
}

@media only screen and (max-width: 360px) {
    .menu-toggle {
            display: flex;
        }
    
        .burgerMenu {
            background-image: url("../PortfolioIMGS/BGStuff/NavBG.png");
            border-radius: 10px;
            display: grid;
            grid-template-columns: 1fr;
            padding: 15px;
            color: white;
            text-align: center;
            margin-bottom: 2em;
            width: 88.5vw;
        }
    
        .nav-menu {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 76px;
            left: 0;
            width: 100%;
            background-color: #D65F40;
            z-index: 1;
            border-radius: 10px;
        }
    
        .nav-menu a {
            font-family: 'Fredoka', sans-serif;
            font-weight: 500;
            color: white;
        }
    
        .nav-menu.active {
            display: flex;
        }
    
        .Top-logo img {
            /* max-width: 56%; */
            display: none;
        }
    
        .Mobile-logo img {
            max-width: 56%;
        }
    
        .ProjectStart {
            display: grid;
            grid-template-columns: 1fr;
            justify-content: center;
            grid-gap: 2em;
            padding: 2em;
        }
    
        .Project1img {
            justify-content: center;
        }
    
        .ProjectStart p {
            width: 22rem;
            text-align: justify;
        }
    
        /* .ProjectContainer #Projects {
            display: grid;
            grid-template-columns: 1fr;
            justify-content: center;
        }
    
        .Project1WideImgs .Project1Wide,
        .Project1Wide2 {
            display: none;
        }
    
        .imgDIV {
            display: grid !important;
            grid-template-columns: 1fr;
            justify-content: center;
            grid-gap: 2em;
            padding: 1em;
        }
    
        .imgDIV2 {
            display: grid !important;
            grid-template-columns: 1fr;
            justify-content: center;
            grid-gap: 2em;
            padding: 1em;
        } */
    
        .Proj1Descript {
            display: grid;
            justify-content: center;
        }
    
        .descDIV {
            display: grid;
            text-align: center;
            justify-content: center;
        }
    
        .DeskProjContainer #ProjectsDESKTOP {
            display: grid;
            grid-template-columns: 1fr;
            justify-content: center;
        }
    
        .imgDIVDESK {
            display: grid;
            justify-content: center;
            padding: 1em;
        }
    
        .descDIVDESK {
            display: grid;
            text-align: center;
            justify-content: center;
            color: #bac53d;
        }
    
        .Project1WideImgs {
            display: grid;
            grid-template-columns: 1fr !important;
            grid-gap: 2em;
        }
    
        .Project1Wide {
            display: grid;
            justify-content: center;
            padding: 0.5em;
            background-image: url(../PortfolioIMGS/PhotoEssay/PhotoEssayMockupFrontBack.png);
            width: 92vw;
            height: 32vh;
            background-repeat: no-repeat;
            background-size: 119%;
            background-position-x: -43px;
        }
    
        .Project1Wide img {
            display: none;
        }
    
        /* .ProjectContainerDESKTOP section {
            display: none;
        }
    
        .imgDIVDESK {
            display: none;
        }
    
        .descDIVDESK {
            display: none;
        }
    
        .imgDIV2DESK {
            display: none;
        } */
}