/* COMMENTS */

/* ==================== GOOGLE FONTS ==================== */
@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Exo:wght@100;200;300;400;500;600;700;800;900&family=Goldman:wght@400;700&family=Hachi+Maru+Pop&family=Indie+Flower&family=MuseoModerno:wght@100;200;300;400;500;600;700;800;900&family=Nabla&family=Nova+Oval&family=Nova+Script&family=Original+Surfer&family=Poppins:wght@300;400;500;600;700;800;900&family=Righteous&family=Sigmar+One&family=Ubuntu:wght@400;700&family=Uncial+Antiqua&display=swap');

/* ==================== VARIABLES CSS ==================== */
:root{
    --header-height: 4rem;

    /* ========== Colors ========== */
    --hue: 174;
    --sat: 63%;

    /* Pallette */
    --color-one: #fff;
    --color-two: #fdf440;
    --color-three: #ffab49;
    --color-four: #f44849;
    --color-five: #939191;
    --color-six: #378e4b;
    --color-seven: #6cb7ee;
    --color-eight: #000;
    --color-nine: #4aa7dc;
    

    /* ============================ */

    --first-color: red; /* sunglow */
    --first-color-alt: hsl(var(--hue), var(--sat), 36%);
    --title-color: #fff;
    --label-color: #FFD700;
    --text-color: hsl(var(--hue), 8%, 35%);
    --body-color: #4b0082;
    --container-color: black;

    /* ========== Font and typography ========== */
    --body-font: 'Ubuntu', sans-serif;
    --h1-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --tiny-font-size: .625rem;

    /* ========== z index ========== */
    --z-tooltip: 10;
    --z-fixed: 100;

    --clr-magician: rgb(231, 247, 4);
    --clr-king: #6f00ff;
    --clr-warrior: #e60000;
    --clr-lover: rgb(0, 76, 255);
    --clr-gold: rgb(255, 215, 0);
    --clr-yin: #000000;
    --clr-yang: #ffffff;
    --clr-dark: rgb(28, 34, 67);
    --clr-light: rgb(111, 136, 167);

    /* fib sequence
    0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233 */

    /* sizes */
    --size-xxs: 0.5rem;
    --size-xs: 0.75rem;
    --size-sm: 0.875rem;
    --size-base: 1rem;
    --size-lg: 1.125rem;
    --size-xl: 1.25rem;
    --size-2xl: 1.5rem;
    --size-3xl: 1.875rem;
    --size-4xl: 2.25rem;
    --size-5xl: 3rem;
    --size-6xl: 3.75rem;
    --size-7xl: 4.5rem;
    --size-8xl: 6rem;
    --size-9xl: 8rem;
    --size-10xl: 10rem;
}
    /* ========== responsive typography ========== */
    @media screen and (min-width: 968px) {
        :root {
            --h1-font-size: 2.25rem;
            --normal-font-size: 1rem;
        }
    };

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

    html {
        scroll-behavior: smooth;
        height: -webkit-fill-available;
    }

    body {
        margin: var(--header-height) 0 0 0;
        font-family: var(--body-font);
        font-size: var(--normal-font-size);
        background-color: var(--color-six);
        color: #ffffff;
        min-height: 100vh;
        min-height: 100dvh;
        min-height: -webkit-fill-available;
    }

    ul{
        list-style: none;
    }

    li{
        padding-bottom: .5rem;
        color: var(--color-two);
    }

    a{
        text-decoration: none; 
        color: #39FF14;
    }
    a.inactive{
        color:white;
    }

    img{
        max-width: 100%;
        height: auto;
    }

    h3 {
        margin-bottom: .25rem;
    }

    h4{
        padding-top: 0;
        padding-bottom: 10px;
        margin-top: 0;
        color: black;
        font-size: 20px;
        margin: 0;
    }

    h5 {
        padding-top: 0;
        padding-bottom: 10px;
        color: var(--color-two);
        font-size: 16px;
        margin: 0;
    }

    
    p {
        margin-top: 0;
        margin-bottom: 1rem;
        color: white;
    }

    label {
        font-size: larger;
        font-weight: 300;
    }
    

    /* ========== REUSEABLE CSS CLASSES [start] ========== */
    h3.projects {
        text-align: center;
        margin: 0;
        padding: 4px;
        background-color: #FFD700;
        color: black;
        border-radius: 1rem;
    }
    h3.upcoming-projects {
        text-align: center;
        padding: 4px;
        background-color: #FFD700;
        color: black;
        border-radius: 1rem;
    }
    h4.project-title {
        margin-bottom: 0;
        padding: 4px;
        text-align: center;
        background-color: black;
        border-radius: 1rem;
        margin-top: 10px;
    }
    p.small-title{
        margin-bottom: 0;
        padding: 4px;
        text-align: center;
    }
    .section{
        padding: 4.5rem 0 2rem;
    }
    .section#about{
        padding: 4.5rem 0 0;
    }
    .section#portfolio {
        height: 1200vh;
        height: 1200dvh;
    }
    #team {
        padding: 0 0 2rem;
    }

    .section__title{
        font-size: var(--h1-font-size);
        color: var(--color-three);
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .subSection__title{
        color: #ffab49;
        font-size: 21px;
    }

    .pricing {
        color: white;
        text-shadow: 0 0 10px #0ef;
    }

    #about_me {
        text-align: center;
        padding: 1rem;
    }

    #name {
        color: white;
    }

    .section__height{
        height: 100vh;
        height: 100dvh;
    }
    .home_section__height{
        height: 110vh;
        height: 110dvh;
    }
    .about__section__height{
        height: 300vh;
        height: 300dvh;
    }
    .services__section__height{
        height: 310vh;
        height: 310dvh;
    }

    .text__emphasis{
        color: var(--title-color);
    }
    .text__emphasis__envision {
        color: var(--clr-magician);
    }
    .home__statement {
        display: block;
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 0.67em;
        margin-left: 0;
        margin-right: 0;
        font-weight: bold;
        text-align: center;
        text-shadow: 0 0 10px #0ef;
    }

    .link__social {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .home__img{
        margin-top: 1.5rem;
        width: 100%;
        border-radius: 1rem;
        box-shadow: 0 0 4rem 1rem var(--color-six);
    }

    .team__img__1 {
        width: 20rem;
        height: auto;
        border-radius: 50%;
        display: block;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
    }
    .team__img__label{
        text-align: center;
        padding-top: .5rem;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: large;
        text-shadow: 0 0 10px #0ef;

    }

    .contact h2 {
        font-size: 40px;
        color: #ededed;
        text-align: center;
        margin-bottom: 10px;

    }

    .contact form {
        width: 90%;
        text-align: center;
    }


    .field .item {
        width: 100%;
        padding: 18px;
        background: transparent;
        border: 2px solid #0ef;
        outline: none;
        border-radius: 6px;
        font-size: 16px;
        color: #ededed;
        margin: 12px 0;
    }

    .field.error .item {
        border-color: #a00c0c;
    }

    .selection {
        padding: 10px;
    }

    .field .item::placeholder{
        color: #ffab49;
    }

    .field .error-txt {
        font-size: 14.5px;
        color: #a00c0c;
        text-align: left;
        margin: -5px 0 10px;
        display: none;
    }

    .field.error .error-txt {
        display: block;
    }

    form .textarea-field .item {
        resize: none;
    }

    form .textarea-field .error-txt {
        margin-top: -10px;
    }



    form button {
        padding: 12px 32px;
        background-color: #0ef;
        border: none;
        outline: none;
        border-radius: 6px;
        box-shadow: 0 0 10px #0ef;
        font-size: 16px;
        color: #333;
        letter-spacing: 1px;
        font-weight: 600;
        cursor: pointer;
        margin-top: 20px;

    }

    form button:hover {
        box-shadow: none;

    }

    .services_subHeading {
        background-color: black
        ;
        padding: 10px;
        border-radius: 12px;
    }

    #home_img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        
    }
    #about_img1 {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

/* ========== REUSEABLE CSS CLASSES [stop] ========== */

    /* ========== LAYOUT [start] ========== */
    .container{
        max-width: 968px;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .about__subSection {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 6rem 0 2rem;
        max-width: 968px;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .coming-soon {
    display: flex;
    align-content: center;
    justify-content: center;
    }

    #gif{
        object-fit: contain;
    }

    /* ========== LAYOUT [stop] ========== */

    /* ========== HEADER [start] ========== */
    .header{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: var(--container-color);
        z-index: var(--z-fixed);
        transition: .4s;
    }
    /* ========== HEADER [stop] ========== */

    /* ========== NAV [start] ========== */
    .nav{
        height: var(--header-height);
        display: flex;
        background-color: var(--color-one);
        justify-content: space-around;
        align-items: center;
        padding: .5rem;
    }
    
    .nav__img{
        width: 4rem;
        border-radius: 50%;
    }


    .nav__logo{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: .5rem;
        flex-wrap: wrap;
        color: var(--color-eight);
        font-weight: 700;
        font-size: 1.2rem;
        font-family: 'Righteous', sans-serif;
    }

    .nav__logoImg{
        width: 10rem;
        height: auto;
    }

    @media screen and (max-width: 767px) {
        .nav__menu{
            position: fixed;
            bottom: 0;
            left: 0;
            background-color: var(--color-one);
            box-shadow: 0 1px 12px hsla(51, 100%, 50%, 0.752);
            width: 100%;
            height: 4rem;
            padding: 0;
            display: grid;
            align-content: center;
            border-radius: 1.25rem 1.25rem 0 0;
            transition: .4s;
        }
    }

    .nav__list,
    .nav__link {
        display: flex;
    }

    .nav__link{
        flex-direction: column;
        align-items: center;
        row-gap: 4px;
        color: var(--color-nine);
        font-weight: 600;
    }
    .nav__link__connect{
        color: var(--color-six);

    }

    .nav__list{
        justify-content: space-around;
        padding: 1rem;
    }

    .nav__name{
        font-size: var(--tiny-font-size);
    }

    .nav__icon{
        font-size: 1.5rem;
    }

    /* ========== NAV [stop] ========== */

/* Active Link */
.active-link{
    position: relative;
    color: var(--color-eight);
    transition: .3s;

    
}

/* Minimalist design, active link */


/* Change background header */
.scroll-header{
    box-shadow: 0 1px 12px hsla(51, 100%, 50%, 0.752);
}

/* =============== MEDIA QUERIES =============== */
/* For small devices */
/* Remove if you choose, the minimalist design */
@media screen and (max-width: 320px) {
    .nav__name {
        display: none;
    }
    .video__container {
        width: 250px;
        height: 141px;
    }
}

/* For medium devices */

@media screen and (min-width:320) and (max-width: 444px) {
    .video__container {
        width: 300px;
        height: 169px;
    }
}

@media screen and (max-width: 444px) {
    .nav__logo {
        margin-top: .25rem;
    }
}

@media screen and (min-width: 576px) {
    .nav__list {
        justify-content: center;
        column-gap: 3rem;
    }

    .video__container {
        width: 500px;
        height: 282px;
    }
}


@media screen and (min-width: 767px) {
    body {
        margin: 0;
    }

    .section {
        padding: 7rem 0 2rem;
    }

    .nav{
        height: calc(var(--header-height) + 1.5rem); /* 4.5rem */
    }

    .nav__img{
        padding-right: 1rem;
    }

    .nav__icon{
        display: none;
    }

    .nav__name{
        font-size: var(--normal-font-size);
    }

    .nav__link:hover{
        color: var(--color-eight);
    }

    .active-link::before{
        content: "";
        position: absolute;
        bottom: -.75rem;
        width: 4px;
        height: 4px;
        background-color: var(--color-eight);
        border-radius: 50%;
    }

    #home_img {
        width: 75%;
    }
    #about_img1 {
        width:  70%;
    }


}

@media screen and (max-width: 900px) {



}
@media screen and (max-width: 550px) {


}

/* For Large devices */
@media screen and (min-width: 1024px) {
    .container{
        margin-left: auto;
        margin-right: auto;
    }
    .about__subSection {
        margin-left: auto;
        margin-right: auto;
    }

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav__img{
        padding-right: 2rem;
        width: 6rem;
        border-radius: 50%;
    }

    .nav__menu{
        padding-right: 3rem;
    }

    .nav__logo{
        font-weight: 700;
        font-size: 2rem;
        padding-left: 1rem;
    }

    .nav__logoImg{
        width: 20rem;
        height: auto;
    }
    .video__container {
        width: 900px;
        height: 506px;
    }

    #home_img {
        width: 75%;
    }
    #about_img1 {
        width:  70%;
    }
}


