@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

:root {
    --f-poppins-for-paragraph: "Poppins", sans-serif;
    --f-plus-jakarta-links: "Plus Jakarta Sans", sans-serif;
    --f-for-some: "Lora", serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding: 100px;
}


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

body {
    /* background-color: #121212; */
    background-color: #0e0e0e;
}

/* NAVBAR */

nav {
    width: 800px;
    height: 55px;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 100px;
    /* background-color: #161616; */
    background-color: #1616167e;
    backdrop-filter: blur(20px);
    padding-left: 20px;
    padding-right: 7px;
    border-radius: 0.1rem;
    top: 15px;
    left: calc(50% - 400px);
    border: 1px solid rgba(255,255,255,0.050);
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
}

.logo > a {
    display: flex;
    align-items: center;
    column-gap: 5px;
    text-decoration: none;
}

.logo > a > img {
    width: 20px;
    transform: translateY(2px);
}

.logo > a > span {
    font-family: var(--f-plus-jakarta-links);
    color: white;
    font-weight: 700;
}

.links {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.links > a {
    display: grid;
    place-content: center;
    text-decoration: none;
    color: white;
    font-family: var(--f-plus-jakarta-links);
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
}

.links > a::after {
    content: '';
    width: 0%;
    height: 1.5px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    bottom: -3px;
    transition: 400ms;
}

.links > a:hover::after {
    width: 100%;
}

.lets-talk {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    background-color: #222328;
    text-decoration: none;
    color: white;
    font-family: var(--f-plus-jakarta-links);
    padding: 8px 10px;
    border-radius: 0.1rem;
    border: 1px solid rgba(255, 255, 255, 0);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: 400ms;
    text-transform: uppercase;
    border-left: 1px solid #f82400;
    border-right: 1px solid #f82400;
}

.lets-talk:hover {
    background-color: rgb(26, 26, 27);
    /* border-left: 1px solid #f82400;
    border-right: 1px solid #f82400; */
}

/* MENU */

.menu {
    height: 100%;
    display: none;
    align-items: center;
    column-gap: 10px;
}

.menu-links {
    position: absolute;
    width: 100%;
    left: 0;
    top: 65px;
    background-color: #222328;
    background-color: rgb(16, 16, 16);
    border: 1px solid rgba(255, 255, 255, 0.1);
   display: none;
    flex-direction: column;
    align-items: center;
    row-gap: 25px;
    padding: 20px;
    font-family: var(--f-plus-jakarta-links);
}

.menu-links > a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
}

.lets-talk-menu-links-inner {
    width: 100%;
    display: grid;
    place-content: center;
    background-color: #222328;
    text-decoration: none;
    color: white;
    font-family: var(--f-plus-jakarta-links);
    padding: 8px 10px;
    border-radius: 0.1rem;
    border: 1px solid rgba(255, 255, 255, 0);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: 400ms;
    text-transform: uppercase;
    border-left: 1px solid #f82400;
    border-right: 1px solid #f82400;
}

.menu-itself {
    width: 35px;
    height: 65%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.menu-itself * {
    position: absolute;
}

.menu-itself > div {
    width: 100%;
    height: 2px;
    background-color: white;
    transition: 350ms;
}

.menu-top {
    transform: translateY(-8px);
}

.menu-bottom {
    transform: translateY(8px);
}

.menu-js > .menu-itself > .menu-top {
    transform: translateY(0) rotateZ(42deg);
}

.menu-js > .menu-itself > .menu-middle {
    transform: rotateY(-90deg);
}

.menu-js > .menu-itself > .menu-bottom {
    transform: translateY(0) rotateZ(-42deg);
}

.menu-js > .menu-links {
    display: flex;
}

.body-scroll {
    overflow: hidden;
}

/* CONTENT */

main {
    width: 100%;
}

.gallery {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 200px;
}

.gallery-text-and-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 50px;
}

.gallery-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-text > h1 {
    color: white;
    font-family: var(--f-poppins-for-paragraph);
    font-size: 4rem;
    font-weight: 200;
}

.gallery-text > p {
    color: white;
    font-family: var(--f-poppins-for-paragraph);
    font-weight: 200;
    font-size: 1.5rem;
    width: 650px;
    text-align: center;
}

.gallery-info {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.gallery-info > div {
    width: 240px;
    height: 75px;
    background-color: rgb(33, 32, 32);
    background-color: #161616;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 3px;
    font-family: var(--f-poppins-for-paragraph);
    text-transform: uppercase;
    border-radius: 0.1rem;
}

.gallery-info > div > span:nth-of-type(1) {
    color: rgb(180,180,180);
    letter-spacing: 2px;
    font-weight: 300;
    font-size: 0.85rem;
}

.gallery-info > div > span:nth-of-type(2) {
    color: white;
    letter-spacing: 2px;
    font-weight: 400;
    text-align: center;
    font-size: 0.90rem;
}

.gallery-info > div > a {
    color: white;
    letter-spacing: 2px;
    font-weight: 400;
    font-size: 0.90rem;
    text-decoration: none;
}

.gallery-project-info {
    width: 100%;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 150px;
}

.gallery-photo {
    width: 95%;
    height: 650px;
    background: url(https://images.unsplash.com/photo-1618661148759-0d481c0c2116?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D) no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.3rem;
}

.noise {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-repeat: repeat;
    background-image: url(https://framerusercontent.com/images/rR6HYXBrMmX4cRpXfXUOvpvpB0.png);
    opacity: 0.050;
}

/* ABOUT THE CHALLENGES/GOAL/RESULT */

.gallery-about-project {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 120px;
}

.about-project-left {
    display: flex;
    flex-direction: column;
    padding-left: 80px;
    position: relative;
}

.about-project-left > h2 {
    top: 90px;
    position: sticky;
    color: white;
    font-family: var(--f-poppins-for-paragraph);
    font-weight: 200;
    font-size: 2.5rem;
    width: 500px;
}

.about-project-right {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding-right: 80px;
}

.about-project-right-inner {
    background-color: #161616;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.about-project-right-inner > h2 {
    color: white;
    font-family: var(--f-poppins-for-paragraph);
    font-weight: 200;
}

.about-project-right-inner > p {
    color: rgb(180,180,180);
    font-family: var(--f-poppins-for-paragraph);
    font-weight: 200;
    line-height: 30px;
}

/* CONTACT */

.contact {
    padding-bottom: 125px;
    background-color: #101010;
}

.contact-loop-text {
    width: 100%;
    height: 50px;
    background-color: #161616;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-loop-text > ul {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 20px;
    column-gap: 20px;
}

.contact-loop-text > ul > li {
    color: white;
    font-family: var(--f-plus-jakarta-links);
    font-weight: 200;
    text-transform: uppercase;
    list-style: none;
}


.plus-text {
    transform: translateY(-2px);
}

.loop-one {
    animation: 12s linear infinite loopOne;
}

@keyframes loopOne {
    to{transform: translateX(-100%);}
}

.loop-two {
    position: absolute;
    right: -100%;
    animation: 12s linear infinite loopTwo;
}

@keyframes loopTwo {
    to{transform: translateX(-100%);}
}

.contact-itself {
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 20px;
}

.contact-itself > h1 {
    color: white;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 4rem;
    font-family: var(--f-poppins-for-paragraph);
    font-weight: 200;
}

.social-media-apps-to-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-media-apps-to-contact > a {
    width: 50px;
    height: 50px;
    border-radius: 3rem;
    display: grid;
    place-content: center;
    background-color: rgb(33, 32, 32);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 300ms;
}

.social-media-apps-to-contact > a > svg {
    color: white;
    width: 25px;
    height: 25px;
}

.social-media-apps-to-contact > a:hover {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgb(44, 44, 44);
}

/* FOOTER */

footer {
    width: 100%;
    padding: 20px;
    background-color: #101010;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-one {
    display: flex;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo > a {
    display: flex;
    align-items: center;
    column-gap: 5px;
    text-decoration: none;
}

.footer-logo > a > img {
    width: 45px;
    transform: translateY(3px);
}

.footer-logo > a > span {
    font-family: var(--f-plus-jakarta-links);
    color: white;
    font-weight: 200;
    font-size: 2rem;
}

.footer-links {
    display: flex;
    align-items: center;
    column-gap: 40px;
}

.footer-links > a {
    text-decoration: none;
    color: white;
    font-family: var(--f-plus-jakarta-links);
    text-transform: uppercase;
    font-weight: 200;
}

.footer-links > a:hover {
    color: rgb(200,200,200);
}

/* MEDIA QUERIES */

/* MAIN */

@media (max-width: 1279px) {
    .gallery {
        padding-top: 130px;
    }
}

@media (max-width: 1200px) {
    .gallery-text > h1 {
        font-size: 3.5rem;
    }
    .gallery-about-project {
        display: flex;
        flex-direction: column;
        row-gap: 30px;
    }
    .about-project-left {
        flex-direction: row;
        justify-content: center;
        padding-inline: 30px;
    }
    .about-project-left > h2 {
        text-align: center;
        width: auto;
    }
    .about-project-right {
        padding-right: 0;
        padding-inline: 20px;
    }
}

@media (max-width: 1100px) {
    .gallery-info {
        display: grid;
        grid-template-columns: repeat(4,1fr);
        padding-inline: 20px;
    }
    .gallery-info > div {
        width: auto;
    }
}

@media (max-width: 900px) {
    .gallery-info {
        display: grid;
        grid-template-columns: 1fr;
        padding-inline: 20px;
        gap: 15px;
    }
    .gallery-project-info {
        margin-top: 60px;
    }
    .gallery-text > h1 {
        font-size: 3rem;
    }
    .gallery-text > p {
        font-size: 1.2rem;
        width: 80%;
    }
    .gallery-photo {
        height: 500px;
    }
    .about-project-left > h2 {
        font-size: 2rem;
    }
    .gallery-text-and-info {
        row-gap: 40px;
    }
}

@media (max-width: 500px) {
    .about-project-right-inner {
        padding: 35px;
    }
}

@media (max-width: 420px) {
    .gallery-text > h1 {
        font-size: 2.5rem;
    }
    .gallery-text > p {
        font-size: 1rem;
        width: 90%;
    }
    .gallery-project-info {
        padding-inline: 15px;
    }
    .gallery-info {
        padding-inline: 15px;
    }
    .gallery-photo {
        width: 100%;
        height: 400px;
    }
    .about-project-right-inner {
        padding: 30px;
    }
}

@media (max-width: 375px) {
    .about-project-left > h2 {
        font-size: 1.8rem;
    }
}

/* NAVBAR */

@media (max-width: 900px) {
    nav {
        width: 96%;
        left: calc(50% - 48%);
        padding-right: 10px;
    }
    .links {
        display: none;
    }
    .talk-btn-one {
        display: none;
    }
    .menu {
        display: flex;
    }
}

@media (max-width: 380px) {
    nav {
        padding-left: 10px;
    }
    .links {
        background-color: red;
    }
    .lets-talk {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .lets-talk-navbar {
        display: none;
    }
}

/* MEDIA QUERIES OF CONTACT */

@media (max-width: 1160px) {
    .talk-text-one {
        display: none;
    }
}

@media (max-width: 1060px) {
    .talk-text-two {
        display: none;
    }
}

@media (max-width: 900px) {
    .contact-itself > h1 {
        font-size: 3rem;
    }
    .social-media-apps-to-contact {
        column-gap: 10px;
    }
    .contact-itself {
        margin-top: 80px;
    }
}

@media (max-width: 913px) {
    .talk-text-three {
        display: none;
    }
}

@media (max-width: 760px) {
    .talk-text-four {
        display: none;
    }
}

@media (max-width: 620px) {
    .talk-text-five {
        display: none;
    }
}

@media (max-width: 465px) {
    .contact-loop-text > ul {
        padding-inline: 10px;
        column-gap: 0;
    }
    .contact-loop-text > ul > li {
        font-size: 0.8rem;
    }
}

@media (max-width: 500px) {
    .contact-itself > h1 {
        font-size: 2.5rem;
    }
    .contact-itself {
        padding-inline: 20px;
    }
}

@media (max-width: 408px) {
    .social-media-apps-to-contact {
        padding-inline: 70px;
    }
}

@media (max-width: 350px) {
    .social-media-apps-to-contact {
        padding-inline: 40px;
    }
}

/* FOOTER */

@media (max-width: 630px) {
    footer {
        padding: 0;
        padding-bottom: 30px;
        flex-direction: column;
        row-gap: 30px;
    }
}

@media (max-width: 400px) {
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 20px;
    }
}