@import url("./assets/font/font.css");
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hellix', sans-serif;
}

body {
    background-color: black;
    color: white;
} 

/* HEADER */

.header {
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    width: 60px;
}

.navbar ul {
    list-style-type: none;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    padding: 20px 0;
    z-index: 100;
}

.navLink {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
    padding: 6px 20px;
}

.navLink.active {
    border: 0.6px solid white;
    border-radius: 50px;
}

.contactUs {
    display: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 10;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 3px 0;
}

.close-btn {
    display: none;
    font-size: 24px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.show-menu .navbar ul {
    display: flex;
    z-index: 9;
}

.show-menu .hamburger {
    display: none;
}

.show-menu .close-btn {
    display: flex; 
    position: absolute;
    top: 30px;
    right: 30px;
}

.show-menu .logo {
    display: none;
}

/* HEADER */

.title {
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    text-align: center;
    font-size: 24px;
}

.subtitle {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-top: -8px;
}

/* HERO */

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 95%;
    margin: auto;

    .title {
        margin-top: 36px;
    }

    .subtitle {
        background: linear-gradient(84.09deg, #FFFFFF 38.01%, #AAAAAA 56.65%, #E6E6E6 73.86%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        margin-bottom: -8px;
    }

    .heroBottom {
        .heroImg {
            img {
                width: 100%;
                min-height: 170px;
            }
        }

        .building {
            width: 90%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin: 0 auto;

            .building-name {
                color: black;
                font-size: 14px;
                font-weight: 700;
                letter-spacing: 0.3em;
            }

            .building-description {
                margin: 12px 0;
                font-size: 12px;
                font-weight: 400;
            }

            .building-information {
                width: 85px;
                height: 28px;
                border-radius: 31px;
                border: 1px solid white;
                background-color: transparent;
                font-size: 12px;
                font-weight: 500;
                color: white;           
            }
        }

    }

    .mouse {
        margin-top: 26px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;

        span {
            display: inline-block;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid #A7A7A7;
            border-radius: 100%;

            img {
                width: 15px;
            }
        }

        p {
            font-size: 12px;
            font-weight: 300;
            line-height: 14.4px;
            text-align: center;
            color: #D6D5D5;
        }
    }
}

/* HERO */

/* ABOUT */

#about {
    margin-top: 66px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;

    .about-info {
        
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        margin-top: 44px;

        .about-img {
            width: 90%;
            img {
                width: 100%;
                border-radius: 50%
            }
        }

        .about-info-text {
            width: 95%;
            display: flex;
            flex-direction: column;
            gap: 16px;
            font-size: 12px;
            font-weight: 400;
            text-align: left;
            
            .about-desc {
                margin-top: 12px;
                display: flex;
                
                img {
                    width: 120px;
                }

                .about-desc-text {
                    margin-top: 20px;

                    .name {
                        font-size: 14px;
                        font-weight: 600;
                    }

                    .job {
                        font-size: 12px;
                        font-weight: 400;
                        color: #B3B3B3;  
                        line-height: 20px;                 
                    }
                }
            }
        }
    }

    .about-text {
        display: flex;
        flex-direction: column;
        align-items: center; 
        gap: 16px; 
        width: 100%; 
        max-width: 100vw; 
        overflow: hidden; 
        margin-top: 86px;

        .main-marquee-div {
            position: relative;
            display: flex;
            overflow-x: hidden;
        }

        .top-marquee-div1,
        .top-marquee-div3 {
            animation: marqueeRight 20s linear infinite;
            white-space: nowrap;
        }

        .bottom-marquee-div1,
        .bottom-marquee-div3 {
            position: absolute;
            top: 0;
            animation: marquee2Right 20s linear infinite; 
            white-space: nowrap;
        }

        .top-marquee-div2 {
            animation: marqueeLeft 20s linear infinite;
            white-space: nowrap;
        }

        .bottom-marquee-div2 {
            position: absolute;
            top: 0;
            animation: marquee2Left 20s linear infinite; 
            white-space: nowrap;
        }

        .text-1, .text-2, .text-3 {
            font-size: 32px;
            font-weight: 700;
            display: flex;
        }
    
        .text-1 {
            background: linear-gradient(84.09deg, rgba(255, 255, 255, 0.7) 38.01%, rgba(170, 170, 170, 0.7) 56.65%, rgba(230, 230, 230, 0.7) 73.86%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;

            .span1 {
                margin-right: 4rem;
            }
            .span2 {
                margin-right: 4rem;
            }

            .span3 {
                display: none;
            }
        }
    
        .text-2 {
            background: linear-gradient(84.09deg, rgba(255, 255, 255, 0.5) 38.01%, rgba(170, 170, 170, 0.5) 56.65%, rgba(230, 230, 230, 0.5) 73.86%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;

            .span1 {
                margin-right: 4rem;
            }
            .span2 {
                margin-right: 4rem;
            }
            .span3 {
                display: none;
            }
        }
    
        .text-3 {
            background: linear-gradient(84.09deg, rgba(255, 255, 255, 0.3) 38.01%, rgba(170, 170, 170, 0.3) 56.65%, rgba(230, 230, 230, 0.3) 73.86%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;

            .span1,
            .span2 {
                margin-right: 2rem;
            }
            .span3 {
                margin-right: 2rem;
            }
        } 
    }
}

/* ABOUT */

@keyframes marqueeLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes marquee2Left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0%);
    }
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0%);
    }
}

@keyframes marquee2Right {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* PROJECTS */

#projects {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;

    .images-div {
        margin-top: 25px;
        display: flex;
        flex-direction: column;
        align-items: flex-start; 
        gap: 12px; 
        width: 100%; 
        max-width: 100vw; 
        overflow: hidden;

        .images{
            display: flex;
            flex-direction: row; 
            justify-content: center;
            gap: 12px; 
            text-align: center;
            white-space: nowrap; 
            overflow: hidden; 
            max-width: 100%; 

            img {
                width: 125px;
                border-radius: 1rem;
                object-fit: cover;
                height: 80px;
            }
        }
    }
}

/* PROJECTS */

/* CONTACT */

#contact {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;

    .contact-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
        gap: 40px;
        width: 95%;

        .form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 90%;

            input, textarea {
                width: 100%;
                background-color: transparent;
                outline: none;
                border: 0.6px solid #D6D6D6;
                border-radius: 15px;
                padding: 16px;
                color: white;
                font-size: 14px;
                font-weight: 300;
            }

            textarea {
                resize: none;
            }   

            input::placeholder,
            textarea::placeholder{
                color: #6B6B6B
            }

            button {
                width: 50%;
                max-width: 150px;
                padding: 14px 0;
                border-radius: 15px;
                background-color: #D9D9D9;
                font-size: 18px;
                font-weight: 500; 
                color: #080808;          
                border: none;
                cursor: pointer;
            }
        }
        .others {
            display: flex;
            flex-direction: column;
            gap: 30px;
            width: 90%;
    
            h3 {
                width: 100%;
                max-width: 270px;
                font-size: 18px;
                font-weight: 500;
                border-bottom: 2px solid white;
                padding-bottom: 10px;
            }
    
            .contact-items {
                display: flex;
                align-items: start;
                gap: 16px;
    
                img {
                    width: 20px;
                    height: 20px;
                }
    
                p {
                    font-size: 14px;
                    font-weight: 500;
                };
            }

            .social {
                display: flex;
                align-items: center;
                gap: 24px;

                a img {
                    width: 36px;
                }
            }
        }
    }

}

/* CONTACT */

/* FOOTER */

.footer {
    width: 95%;
    margin: 0 auto;
    margin-top: 42px;

    .map-frame {
        width: 100%;
        height: 200px;
        border: 0;
        border-radius: 15px;
        margin-bottom: 20px;
    }
    
    
    .footer-text {
        font-size: 14px;
        font-weight: 500;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 42px 0;

        .jeetwork {
            display: flex;
            justify-content: center;
            gap: 8px;
        }
    }
}

/* FOOTER */

@media (min-width: 768px) {
    .header {
        padding: 27px 36px;
        position: static;

        .logo {
            width: 88px;
        }

        .navbar ul {
            display: flex;
            flex-direction: row;
            position: static;
            gap: 0;
        }

        .contactUs {
            display: flex;
            text-decoration: none;
            width: 132px;
            height: 43px;
            border-radius: 50px;
            border: 1px solid white;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 14px;
            font-weight: 600;
            line-height: 16.8px;
            color: white;
            background-color: black;
        }

        .hamburger {
            display: none;
        }

        .close-btn {
            display: none;
        }
    }

    .title {
        font-size: 40px;
    }
    
    .subtitle {
        font-size: 54px;
    }

    .hero {
        margin-top: 36px;

        .title {
            margin-top: 0px;
        }
    
        .subtitle {
            margin-bottom: -12px;
        }
    
        .heroBottom {
            position: relative;
            width: 100%;
            height: 300px;
    
            .heroImg {
                width: 100%;
                display: flex;
                justify-content: center;
                img {
                    position: absolute;
                    height: 100%;
                    width: 100%;
                    z-index: 1;
                }
            }
    
    
            .building {
                position: absolute;
                max-width: 240px;
                left: 50px;
                top: 50%;
                transform: translate(0, -50%);
                z-index: 2;
                align-items: flex-start;
    
                .building-description {
                    color: #626262;
                }
    
                .building-information {
                    border: 1px solid #2F2F2F;
                    color: #2F2F2F;           
                }
            }
    
        }
    
        .mouse {
            margin-top: 56px;
    
            span {
                width: 70px;
                height: 70px;
                img {
                    width: 24px;
                }
            }
        }
    }

    #about {
    
        .about-info {
            
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 24px;
            margin-top: 44px;
    
            .about-img {
                width: 50%;
                
        
                img {
                    width: 100%;
                    min-height: 520px;
                    border-radius: 48%
                }
            }
    
            .about-info-text {
                width: 50%;
                max-width: 720px;
                font-size: 16px;
                padding: 0 4px;
                
                .about-desc {
                    
                    img {
                        margin-left: -20px;
                        width: 180px;
                    }
    
                    .about-desc-text {
                        margin-left: -20px;
    
                        .name {
                            font-size: 18px;
                        }
    
                        .job {
                            font-size: 14px;                
                        }
                    }
                }
            }
        }
    
        .about-text {
    
            .text-1, .text-2, .text-3 {
                font-size: 52px;
            }

            .text-1 {
                .span1,
                .span2 {
                    margin-right: 6rem;
                }
            }

            .text-2 {
                .span1,
                .span2 {
                    margin-right: 6rem;
                }
            }

            .text-3 {
                .span1,
                .span2,
                .span3 {
                    margin-right: 5rem;
                }
            }
        }
    }

    #projects {
        margin-top: 100px;
    
        .images-div {
            margin-top: 50px;
            gap: 25px; 
    
            .images{
                gap: 25px; 
    
                img {
                    width: 200px;
                    border-radius: 24px;
                    object-fit: cover;
                    height: 120px;
                }
            }
        }
    }

    #contact {
        margin-top: 72px;
    
        .contact-main {
            flex-direction: row;
            margin-top: 40px;
            gap: 20px;
            width: 95%;
    
            .form {
                width: 50%;
    
                input, textarea {
                    padding: 18px 24px;
                    font-size: 16px;
                }
    
                button {
                    padding: 18px 0;
                    font-size: 20px;
                }
            }
            .others {
                gap: 36px;
                width: 50%;
        
                h3 {
                    max-width: 520px;
                    font-size: 24px;
                    border-bottom: 3px solid white;
                    padding-bottom: 12px;
                }
        
                .contact-items {
        
                    p {
                        font-size: 16px;
                    };
                }
            }
        }
    
    }

    .footer {
    
        .map-frame {
            height: 350px;
        }
        
        
        .footer-text {
            flex-direction: row;
            justify-content: space-between;
            gap: 5px;
        }
    }
}

@media (min-width: 1024px) {
    .title {
        font-size: 54px;
        line-height: 67.61px;
    }
    
    .subtitle {
        font-size: 94px;
        line-height: 112.82px;
        margin-top: -24px;
    }

    .hero {
        max-width: 1136px;
        width: 94%;
    
        .subtitle {
            margin-bottom: -20px;
        }
    
        .heroBottom {
            height: 434px;  
    
            .building {
                max-width: 390px;
                left: 70px;
    
                .building-name {
                    font-size: 22px;
                    line-height: 26.4px;
                }
    
                .building-description {
                    font-size: 20px;
                    line-height: 24px;
                }
    
                .building-information {
                    width: 105px;
                    height: 38px;
                    font-size: 20px;
                    line-height: 24px;          
                }
            }
        }
    }

    #about {
        .about-info {
            gap: 52px;

            .about-img {
                img {
                    width: auto;
                    height: 620px;
                    border-radius: 50%
                }
            }
    
            .about-info-text {
                width: 100%;
                gap: 24px;
                font-size: 20px;
                line-height: 24px;
                
                .about-desc {
                    margin-top: 12px;
                    display: flex;
                    
                    img {
                        margin-left: -40px;
                        width: 246px;
                    }
    
                    .about-desc-text {
    
                        .name {
                            font-size: 24px;
                            line-height: 28.8px;
                        }
    
                        .job {
                            font-size: 20px;
                            line-height: 24px;                 
                        }
                    }
                }
            }
        }
    
        .about-text {
            gap: 24px; 
            margin-top: 116px;
    
            .text-1, .text-2, .text-3 {
                font-size: 74px;
                line-height: 88.81px;
            }

            .text-1 {
    
                .span1,
                .span2 {
                    margin-right: 16rem;
                }
    
                .span3 {
                    margin-right: 16rem;
                    display: block;
                }
            }
        
            .text-2 {
    
                .span1,
                .span2 {
                    margin-right: 16rem;
                }
    
                .span3 {
                    margin-right: 8rem;
                    display: block;
                }
            }
        
            .text-3 {
    
                .span1,
                .span2,
                .span3 {
                    margin-right: 10rem;
                }
            } 
        }
    }

    #projects {
        margin-top: 140px;
    
        .images-div {
            margin-top: 75px;
            gap: 50px; 
    
            .images{
                gap: 50px; 
    
                img {
                    width: 351px;
                    border-radius: 2rem;
                    object-fit: cover;
                    height: 196px;
                }
            }
        }
    }

    #contact {
        margin-top: 144px;
        
    
        .contact-main {
            margin-top: 80px;
            gap: 24px;
            max-width: 1140px;
            justify-content: space-between;
    
            .form {
                gap: 25px;
                max-width: 568px;
    
                input, textarea {
                    padding: 24px 32px;
                    font-size: 24px;
                    line-height: 28.8px;                 
                }
    
                button {
                    width: 215px;
                    height: 81px;
                    font-size: 24px;
                    font-weight: 500;
                    line-height: 28.8px; 
                }
            }
            .others {
                gap: 48px;
                max-width: 475px;
        
                h3 {
                    font-size: 28px;
                    line-height: 33.61px;
                }
        
                .contact-items {
                    gap: 24px;
        
                    img {
                        width: 24px;
                        height: 24px;
                    }
        
                    p {
                        max-width: 331px;
                        font-size: 24px;
                        line-height: 28.8px;
                    };
                }
    
                .social {
                    gap: 32px;

                    a img {
                        width: 50px;
                    }
                }
            }
        }
    
    }

    .footer {
        max-width: 1127px;
        margin-top: 62px;
    
        .map-frame {
            height: 419px;
        }
    }
}