@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400;500;600;700&family=Quicksand:wght@300;500;700&family=Roboto:wght@100;300;400;700&display=swap');

@property --gradient-angle{
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

* {
    font-family: 'Quicksand', sans-serif;
    font-family: 'Roboto', monospace;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
}

:root {
    --bg-color-gray: #2d2e31;
    --bg-color-dark-gray: #252629;
    --bg-color-darker-gray:#191f1c;
    --text-color-white: #fff;
    --text-color-green: #64f4ab;
    --text-color-gray: #8b8d90;
    --color-black: #000000;   
    --color-soft-orange: #ff9a3c;
    --color-yellow: #ffc93c;
}

html {
    overflow-x: hidden;
    font-size: 60%;
    scroll-behavior: smooth;
}

body {
    background: var(--bg-color-darker-gray);
    /* background-image: url("/images/bg-web.png"); */
    color: var(--text-color-white);
}

section{
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}

span{
    color: var(--color-soft-orange);
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 7%;
    padding: 3rem 12%;
    background: var(--bg-color-darker-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;        
}

.headerScale{
    height: 1rem;
    transition: 0.2s ease;
}

.header-scale nav a{
    font-size: .1rem;

}

.header .sticky {
    border: 0.5rem solid var(--text-color-green);    
}

.logo{
    font-size: 3rem;
    font-family: 'Domine', serif;
    color: var(--text-color-green);
}

.logo span{
    font-family: 'Domine', serif;
    color: var(--text-color-white);    
}



.navbar a {
    font-size: 1.7rem;
    color: var(--text-color-white);
    margin: 0 1.5rem 0 1.5rem;
    transition: 0.9s ease;
}

.navbar a:hover, 
.navbar a.active {
    color: var(--text-color-green);
    box-shadow: 0 0.5rem var(--text-color-green);
}


/*Hamburger Menu Icon Style*/
.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
}

#menu-icon {
    font-size: 3.6rem;
    display: none;
    color: var(--text-color-gray);
}

.home{
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-content h3{
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-color-green);
    line-height: 2;
}

.home-content h2{
    font-size: 4.6rem;
    font-weight: 400;
    line-height: 2;
    color: var(--text-color-gray);
}

.home-content h1{
    font-size: 10rem;
    font-weight: 700;
    line-height: 1.3;
}

.home-img{       
    box-shadow: 0 0  1rem var(--text-color-green);   
    border-radius: 2rem;  
    position: relative;   
    width: 30vw;  
    background: var(--bg-color-gray);
    transition: 0.5s ease; 
    max-height: 700px;
}

.home-img:hover{
    margin-top: -30px;      
}

/*Profile Picture Animation*/
.home-img::before,
.home-img::after {
    content: "";
    position: absolute;
    inset: -0.5rem;
    background: linear-gradient(
        var(--gradient-angle),
        var(--text-color-green),
        var(--text-color-gray),
        var(--color-yellow),
        var(--color-soft-orange));    
    border-radius: inherit;
    animation: rotation 3s linear infinite;
    z-index: -1;
    
}

.home-img::after{
    filter: blur(3rem);
    
}

@keyframes rotation{
    0% { --gradient-angle: 0deg;}
    100% { --gradient-angle: 360deg;}
}
/*End of Profile Picture Animation*/


.home-img img{
    width: 30vw;        
}

.home-content p{
    font-size: 2.5rem;
    margin: 3% 10% 2% 0;
    line-height: 2;
    font-weight: 100;
}

.home-content p span{
    font-weight: 700;
}

.social-media a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    background: transparent;
    border: .2rem solid var(--text-color-green);
    border-radius: 50% ;
    font-size: 2rem;
    color: var(--text-color-green);
    margin: 3rem 1.5rem 3rem 0;
    transition: 0.5s ease;
}

.social-media a:hover {
    background: var(--text-color-green);
    color: var(--bg-color-dark-gray);
    box-shadow: 0 0 1rem var(--text-color-green);
}

.btn{
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--text-color-green);
    border-radius: 50px;
    box-shadow: 0 0 16px var(--text-color-green);
    color: var(--bg-color-dark-gray);
    font-size: 2rem ;
    transition: 0.5s ease;
}

.btn:hover{
    box-shadow: none;    
}

/* About Section */

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    background: rgba(45, 46, 49, 0.7);    
    padding-bottom: 6rem;
}


.about-img{       
    box-shadow: 0 0  2rem var(--text-color-green);  
    border-radius: 2rem;  
    position: relative;   
    width: 30vw;  
    z-index: 2;
    transition: 0.5s ease;
}

.about-img:hover{
    margin-top: -30px;      
}

/*Profile Picture Animation*/
.about-img::before,
.about-img::after {
    content: "";
    position: absolute;
    inset: -0.5rem;
    background: linear-gradient(
        var(--gradient-angle),
        var(--text-color-green),
        var(--text-color-gray),
        var(--color-yellow),
        var(--color-soft-orange));    
    border-radius: inherit;
    animation: rotation 3s linear infinite;
    z-index: -1;
}

.about-img::after{
    filter: blur(3rem);
    
}


.about-img img{
    width: 30vw;   
    border-radius: 2rem;   
    background: var(--bg-color-dark-gray);  
}


.heading{
    text-align: left;
    font-size: 4.5rem;
}

.about-content h3{
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color-green);
    line-height: 2;    
}

.about-content h1{
    font-size: 10rem;
    font-weight: 700;
    line-height: 1.3;    
}

.about-content p{
    font-size: 2.5rem;
    margin: 3% 0 2% 0;
    text-align: left;
    line-height: 2;
    font-weight: 100;
}

.about-content p span{
    font-weight: 700;
}

.services{
    padding-top: 15rem ;

}

.services-container{
    display: flex;        
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.services-container .services-item{
    flex: 1 1 30rem;
    padding:  3rem 2rem 4rem;
    border-radius: 2rem;
    background: var(--bg-color-gray);
    text-align: center;
    box-shadow: 0 0  1rem var(--text-color-green);  
    transition: 0.5s ease;
}

.services-item i{
    font-size: 6rem;
    color: var(--text-color-green);
}


.services h1{
    font-size: 10rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 5rem;
    text-align: center;    
}

.services h2{
    font-size: 3.5rem;
    font-weight: 700;
}
 
.services-container .services-item p{
    font-size: 2.0rem;
    margin: 3rem 0 ;
    text-align: center;
    line-height: 2;
    font-weight: 100;    
}

.services-container .services-item:hover{
    background: var(--bg-color-darker-gray);
    box-shadow: 0 0  2rem var(--color-soft-orange);
    transform: scale(1.05);  
    transition: 0.5s ease;
}


/* SERVICES POPUPS */
.popup-container{
position: fixed;
top: 0;
left: 0;
min-height: 100vh;
width: 100%;
background: rgba(0, 0, 0, 0.8);
display: flex;
align-items: center;
justify-content: center;
z-index: 15;
visibility: hidden;
transition:   ease-in-out;
}

.popup-active{
    visibility: visible;    
    backdrop-filter: blur(1rem);
    transition: 0.5s ease-in-out;
}

.popup-container .popup-box{
    position: relative;
    max-width: 80vh;
    min-height: 100%;
    padding: 5rem 3rem;
    margin: 3rem;
    background-color: var(--bg-color-darker-gray);
    border-radius: 15px;
    box-shadow: 0px 2px 5px 5px rgba(255,154,60, 0.8); 
    transform: scale(0.01);
    transition: 0.3s ease-in-out;   
    text-align: center;   
}

.popup-container .popup-box img{
    max-height: 20rem;    
}

.popup-container .popup-box-active{
    transform: scale(1);
    transition: 0.3s ease-in-out;  
}


.popup-container .close-popup{
    border-radius: 50px;
    padding: .5rem;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: var(--color-soft-orange);
    color: var(--bg-color-darker-gray); 
    cursor: pointer;
    z-index: 100;
}

.popup-container .close-popup:hover{
    box-shadow: 0px 2px 5px 5px rgba(100,244,171, 0.9) ;
}


.popup-box h1{
    font-size: 7rem;
    font-weight: 700;
    text-align: center; 
    color: var(--text-color-green);    
}

.popup-box h2 {
    font-size: 4rem;
    font-weight: 200;
    text-align: center;
    color: var(--text-color-green);
    margin-bottom: 2rem;
}

.popup-box h3{
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-color-green);
    text-align: center;
    margin-bottom: 2rem;
}

.popup-box p{
    font-size: 2rem;
    font-weight: 100;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 2.5rem;
}

.popup-box p span{
    font-weight: 700;
    color: var(--text-color-white);
}

/* Web development Technoligies icons */
.tech-container{
    display: flex;        
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5rem;
}

.tech-card {
    text-align: center;
    font-size: 2rem;
}

.tech-card h4{
    font-size: 2rem;
    font-weight: 100;
}

.tech-card i{
    font-size: 5rem;
}

/* Wordpress Link Containers */

.wordpress-links-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;        
}

.wordpress-links-container a{
    display: flex;
    padding: 1rem 3rem;
    background-color: var(--text-color-green);
    border-radius: 50px;
    box-shadow: 0 0 16px var(--text-color-green);
    color: var(--bg-color-dark-gray);
    font-size: 2rem ;
    transition: 0.5s ease;
}

.wordpress-links-container .blue-pill:hover{
    background-color: #0000ff;
    color: var(--text-color-white);
}

.wordpress-links-container .red-pill:hover{
    background-color:#ff0000;
    color: var(--text-color-white);
}




/* CONTACT SECTION */

.contact{
    background: rgba(45, 46, 49, 0.7);    
    gap: 4rem;
}

.contact-container{
    display: flex;        
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 0 3rem;
}

.contact-container .contact-items{
    flex: 1 1 30rem;
}

.contact-container .contact-content h2{
 font-weight: 700;
 font-size: 6rem;
 color: var(--text-color-green); 
}

.contact-container .contact-content h3{
    font-weight: 700;
    font-size: 3rem;
    color: var(--color-soft-orange); 
   }
   

.contact-container .contact-content p{
    font-size: 2rem;
    margin: 3% 0 2% 0;
    text-align: left;
    line-height: 2;
    font-weight: 100;
}
.contact-container .contact-content a{
    font-size: 2rem;
    margin: 3% 0 2% 0;
    text-align: left;
    line-height: 2;
    font-weight: 700;
    color: var(--color-soft-orange);
}


.contact h1{
    font-size: 10rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    text-align: center; 
}

.contact form{
    max-width: 90rem; 
    min-width: 30rem;
    margin: 1.5rem auto 3rem auto;
    text-align: center;
}

.contact form .input-container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact form .input-container input, .contact form textarea{
    width: 100%;
    padding: 1.5rem;
    font-size: 2rem;
    color: var(--text-color-white);
    background-color: var(--bg-color-dark-gray);
    border-radius: 1rem;
    margin: 0.5rem 0 ;
}

.contact form textarea{
    resize: none;
    margin-bottom: 5rem;
}

.footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 9%;
   /* background: var(--bg-color-dark-gray);*/
}

.footer-text p{
    font-size: 2rem;
}

.footer-iconTop a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.8rem;
    background: #64f4ab;
    color: var(--bg-color-darker-gray);
    border-radius: 0.8rem;
    transition: 0.5s ease;
}

.footer-iconTop a:hover{
    background: var(--color-yellow);
    box-shadow: 0 0 2rem var(--color-yellow);
    transform: scale(1.2);
}

.footer-iconTop a i{
    font-size: 3rem;
}


/******WEB PAGES*******/

/* ABOUT Page */

.about-intro{
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;    
    padding: 5rem 2rem ;    
    height:80vh;    
}

.about-intro h1{
    font-size: 10rem;
    font-weight: 900;
    line-height: 1.3;
    margin: 3rem 2rem;
    text-align: center; 
}

.about-intro h1 span{
    color: #64f4ab;
}

.about-intro h2{
    font-size: 3rem;
    font-weight: 600;
    text-align: center; 
    color: #ff9a3c;
}

.about-intro p{
    font-size: 2.5rem;
    margin: 3% 0  ;
    text-align: center;
    line-height: 2;
    font-weight: 100;    
}

.about-intro-container{
    display: flex;
    font-size: 4rem;
    font-weight: 700;
    padding: 5rem 0;
    justify-content: center;
    align-items: center;
}

.about-intro-item{
    flex: 1 1 30rem;
    padding:  0% 10%;
    text-align: center;
    color: var(--text-color-green);    
}

.about-intro-item i{
    font-size: 6rem;
    color: var(--text-color-green);
}

.journey{
    background: rgba(45, 46, 49, 0.7);
     
    height: auto; 
    min-height: 100vh;
}

.journey h1 {
    font-size: 10rem;
    font-weight: 900;
    line-height: 1.3;    
    text-align: center; 
    margin-bottom: 8rem;
}

.journey h1 span{
    color: #64f4ab;
}


.journey-container {    
    align-items: center;
    justify-content: center;
}

.journey-img{
    text-align: center;
}
.journey-img img{
    max-height: 700px; 
    width: 40vw;  
    text-align: center; 
    position: relative; 
}

.journey-content p{
    font-size: 2.5rem;      
    line-height: 2;
    font-weight: 100;
    text-align: center;
}

.journey-timeline{
    position: relative;
    max-width: 85vw;
    margin: 6rem auto;
}

.timeline-container{
    padding: 1rem 3rem;
    position: relative;
    width: 50%;   
    /* background-color: rgba(0, 0, 0, 0.9);  */
    border-radius: 2rem;
    animation: movedown 1s linear forwards;
    opacity: 0;
}

/* Items animations */
@keyframes movedown {
    0%{
        opacity: 1;
        transform: translateY(-1.5rem);
    }
    100%{
        opacity: 1;
        transform: translateY(0rem);
    }
}

.timeline-container:nth-child(1){
    animation-delay: 0s;
}

.timeline-container:nth-child(2){
    animation-delay: 1.5s;
}

.timeline-container:nth-child(3){
    animation-delay: 2.5s;
}

.timeline-container:nth-child(4){
    animation-delay: 3.5s;
}

.timeline-container:nth-child(5){
    animation-delay: 4.5s;
}

/* Timeline Item */
.timeline-item{
    position: relative;
    padding: 1rem 2rem;
}

.timeline-item h2{
    color: var(--text-color-green);
    font-size: 3rem;
    padding: 2rem 2rem;   
}

.timeline-item p{
    font-size: 2.1rem;
    line-height: 4rem;
    font-weight: 100;
    margin-bottom: 2rem;
    padding: 0 2rem 2rem;
}

.left-container{
    left: 0%;
}

.right-container{
    left: 50%;
} 

.timeline-container i{
    position: absolute;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 6rem;
    background: var(--bg-color-dark-gray);
    border: .2rem solid var(--text-color-green);
    border-radius: 50% ;
    font-size: 4rem;
    color: var(--text-color-green);
    margin: 3rem 1.5rem 3rem 0;
    transition: 0.5s ease;
    right: -4.5rem;
    top: 10rem;
    z-index: 10;
    transition: 1s ease;
}

.timeline-container i:hover {
    background: var(--text-color-green);
    color: var(--bg-color-dark-gray);
    box-shadow: 0 0 1rem var(--text-color-green);
}

.right-container i{
    left: -3rem;
}

/* About Page - Timeline Middle line build and animation */
.journey-timeline::after{
    content: '';
    position: absolute;
    width: 0.5rem;
    height: 100%;
    background: var(--color-soft-orange);
    top: 0;
    left: 50%;
    margin-left: -3px;    
    z-index: -1;
    animation: moveline 5s linear forwards;
}

@keyframes moveline {
    0%{
        height: 0;
    }

    100%{
        height: 100%;
    }
    
}

.contact-about{
    background-color: rgba(0, 0, 0, 0.5);
}


/* About Page Interest Section */

#interests{
    display: none;
}

.interest-intro h1{
    font-size: 10rem;
    font-weight: 900;
    line-height: 1.3;    
    text-align: center; 
    margin-bottom: 8rem;
}

.interest-intro p{
    font-size: 2.5rem;
    margin: 3% 0  ;
    text-align: center;
    line-height: 2;
    font-weight: 100;    
}


/* BREAKPOINTS */

@media(max-width: 1200px){
    html{
        font-size: 55%;
    }

    .journey-timeline{
        margin: 3rem auto;
    }

    .journey-timeline::after{
        left: 3rem;
    }

    .timeline-container{
        width: 100%;
        padding-left: 5rem;
        padding-right: 0rem;
    }

    .timeline-item{
        font-size: 3rem;
    }

    .right-container{
        left: 0;
    }

    .left-container i, .right-container i{
        left:0rem
    }    
}

@media(max-width: 991px){
    .header{
        padding: 2rem 3%;
    }

    section{
        padding: 10rem 3% 2rem;
    }

    .services{
        padding-top: 10rem;
        padding-bottom: 10rem;
    }

    .footer{
        padding: 2rem 3%;
    }   

    .journey-img img{
        min-width: 50vh;
    }   
}

@media(max-width: 768px){
    #menu-icon{
        display: block;
    }

    .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 3%;
        background: var(--bg-color-dark-gray);
        border-top: .1rem solid rgba(0, 0, 0, 0.2);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
        display: none;     
    }

    .navbar.active{
        display: block;
        
    }

    .navbar a{
        display: block;
        font-size: 2rem;
        margin: 3rem 1rem;
    }

    .services{
        padding-top: 10rem;
        padding-bottom: 10rem;
    }

    .contact{
        padding-top: 10rem;
        padding-bottom: 10rem;
    }
    
    .home{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .home-img{       
       
        width: 70vw; 
        margin: 5rem 0 ; 
        
    }
    
    .home-img:hover{
        margin-top: 5rem;      
    }
    
    
    .home-img img{
        width: 70vw;        
    }

    .home-content p{
        margin: 3% 3% 2% ;
        font-weight: 200;
    }
    

    .about{
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }   
    
    .heading{
        text-align: center;
    }

    .about-content h1{
        margin: 6rem 0 1rem ;
    }

    .about-content p{
        margin: 3% 3% 4% ;
        font-weight: 200;
        text-align: center;
    }

    .about-img{       
        width: 50vw; 
        margin: 1rem 0 1rem 0;         
    }
    
    .about-img:hover{
        margin-top: 5rem;      
    }
    
    
    .about-img img{
        width: 50vw;        
    }

    /*****About Page*****/
    .about-intro{
        height: 80vh;
    }

    .about-intro h1{
        font-size: 8rem;                
    }

    .about-intro h2{
        font-size: 2.5rem;
        font-weight: 400;
        line-height: 2;
    }

    .about-intro h3{
        font-size: 3rem;
    }

    .about-intro p{
        font-size: 2rem;
    }

    
    .about-intro-item{
        flex: 1 1 20rem;
        padding:  1% 3%;
        text-align: center;   
    }

    .about-intro-item i{
        font-size: 4rem;
    }

   
    .journey h1{
        font-size: 5rem;   
        margin-bottom: 3rem;             
    }

    .journey p{
        font-size: 2rem;
        margin: 1.5rem;
    }
        
}

@media(max-width:606px) {
    
    .popup-container .popup-box{
        margin-top: 10rem;
    }   

    .about-intro h1{
        font-size: 5rem;                
    }
}

@media (max-width:430px) {
   
    .logo{
        font-size: 2.5rem;
    }

    .home h1, .about h1, .services h1, .contact h1{
        font-size: 4rem;
    }

    .home h3, .about h3{
        font-size: 1.5rem;
        text-align: center;
    }
   
    .home p, .about p, .contact-container .contact-content h2, .contact-container .contact-content h3, .contact-container .contact-content p{
        font-size: 2.1rem;
        text-align: center;
    }

    .contact {
        padding: 5rem 0 ;
    }
 

    /* About Page */
    .about-intro{
        height: auto;
        
    }
    .about-intro h1{
        font-size: 6rem;
        margin-top: 0rem;
    }

    /*Popup Service section in the Index page*/

    .popup-container .popup-box h1{
        font-size: 3rem;
    }

    .popup-container .popup-box h2{
        font-size: 2rem;
    }

    .popup-box p {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .tech-container {      
        gap: 2.5rem;
    }

    .tech-card h4{
        font-size: 2rem;
        font-weight: 100;
    }
    
    .tech-card i{
        font-size: 2.5rem;
    }
}

@media (max-width: 375px) {

    .about-intro h1{
        font-size: 4rem;
        margin: 0 0 1rem;
    }

    .about-intro h3 {
        font-size: 2.5rem;
    }
    
}