* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #080808;
    color: #fff;
    font-family: Arial, Tahoma, sans-serif;
    overflow-x: hidden;
}


/* LOADER */

.loader {
    position: fixed;
    inset: 0;
    background: #050505;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transition: 1s;
}

.loader-logo {
    font-size: 32px;
    font-weight: bold;
}

.loader-line {
    width: 150px;
    height: 1px;
    background: #555;
    margin-top: 25px;

    position: relative;
    overflow: hidden;
}

.loader-line::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;

    transform: translateX(-100%);
    animation: loading 1.5s forwards;
}

@keyframes loading {
    to {
        transform: translateX(0);
    }
}


/* NAVBAR */

.navbar {
    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 6%;

    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: .75;

    transition: .3s;
}

nav a:hover {
    opacity: 1;
}

.menu-btn {
    display: none;

    background: transparent;
    color: white;

    border: none;
    font-size: 25px;
}


/* HERO */

.hero {
    position: relative;

    min-height: 100vh;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 70% 40%,
            #262626 0%,
            #101010 35%,
            #050505 75%
        );
}


/* BACKGROUND */

.hero-bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.95),
            rgba(0,0,0,.35),
            rgba(0,0,0,.15)
        );
}


/* LIGHTS */

.light {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: .15;

    animation: lightMove 8s ease-in-out infinite alternate;
}

.light-one {
    background: white;
    right: 10%;
    top: 10%;
}

.light-two {
    background: #888;
    left: 10%;
    bottom: 0;
    animation-delay: 2s;
}

@keyframes lightMove {

    from {
        transform: translate(0,0);
    }

    to {
        transform: translate(50px,-30px);
    }

}


/* HERO TEXT */

.hero-content {

    position: absolute;

    z-index: 20;

    right: 7%;
    top: 50%;

    transform: translateY(-50%);

    direction: rtl;

    animation: heroText 1.5s ease forwards;

}

.small-title {

    font-size: 11px;

    letter-spacing: 5px;

    direction: ltr;

    margin-bottom: 25px;

    opacity: .6;
}

.hero-content h1 {

    font-size: clamp(65px, 9vw, 140px);

    line-height: .9;

    font-weight: 900;

    letter-spacing: -5px;

}

.hero-content h1 span {

    -webkit-text-stroke: 1px white;

    color: transparent;

}

.hero-content p {

    margin-top: 30px;

    font-size: 18px;

    opacity: .65;

}

.hero-buttons {

    display: flex;

    gap: 15px;

    margin-top: 35px;

}

.primary-btn,
.secondary-btn {

    padding: 15px 30px;

    text-decoration: none;

    font-size: 13px;

    transition: .3s;

}

.primary-btn {

    background: white;

    color: black;

}

.secondary-btn {

    border: 1px solid rgba(255,255,255,.4);

    color: white;

}

.primary-btn:hover {

    transform: translateY(-4px);

}

.secondary-btn:hover {

    background: white;

    color: black;

}

@keyframes heroText {

    from {

        opacity: 0;

        transform: translateY(-40%);

    }

    to {

        opacity: 1;

        transform: translateY(-50%);

    }

}


/* MODEL AREA */

.model-area {

    position: absolute;

    left: 7%;

    bottom: 0;

    width: 48%;

    height: 90%;

    z-index: 10;

}


/* FLOOR */

.floor {

    position: absolute;

    bottom: 0;

    left: -30%;

    width: 160%;

    height: 20%;

    background:

        linear-gradient(
            180deg,
            transparent,
            rgba(255,255,255,.08)
        );

    transform: perspective(500px) rotateX(60deg);

}


/* MODEL */

.model {

    position: absolute;

    left: 50%;

    bottom: 5%;

    width: 300px;

    height: 720px;

    transform: translateX(-50%);

    animation: modelMove 5s ease-in-out infinite alternate;

}

@keyframes modelMove {

    0% {

        transform:
            translateX(-50%)
            translateY(0)
            rotateY(-1deg);

    }

    100% {

        transform:
            translateX(-50%)
            translateY(-8px)
            rotateY(2deg);

    }

}


/* SHADOW */

.model-shadow {

    position: absolute;

    bottom: 3%;

    left: 50%;

    width: 300px;

    height: 50px;

    background: black;

    border-radius: 50%;

    filter: blur(25px);

    transform: translateX(-50%);

    opacity: .7;

}


/* HEAD */

.head {

    position: absolute;

    top: 0;

    left: 50%;

    width: 110px;

    height: 130px;

    transform: translateX(-50%);

}

.face {

    position: absolute;

    inset: 10px 5px 0;

    background:
        linear-gradient(
            130deg,
            #c99575,
            #9c674e
        );

    border-radius:
        48%
        48%
        45%
        45%;

}


/* HAIR */

.hair {

    position: absolute;

    z-index: 5;

    left: 50%;

    top: 0;

    width: 120px;

    height: 60px;

    transform: translateX(-50%);

    background: #161616;

    border-radius:
        60%
        60%
        20%
        15%;

}


/* EARS */

.ear {

    position: absolute;

    width: 17px;

    height: 30px;

    background: #a87055;

    top: 45px;

    border-radius: 50%;

}

.left-ear {
    left: -10px;
}

.right-ear {
    right: -10px;
}


/* GLASSES */

.glasses {

    position: absolute;

    top: 42px;

    left: 50%;

    transform: translateX(-50%);

    width: 110px;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 20;

}

.lens {

    width: 45px;

    height: 27px;

    background: #080808;

    border: 3px solid #222;

    border-radius: 8px;

    box-shadow:
        inset 0 0 10px rgba(255,255,255,.15);

}

.bridge {

    width: 15px;

    height: 3px;

    background: #111;

}


/* NOSE */

.nose {

    position: absolute;

    top: 67px;

    left: 50%;

    width: 8px;

    height: 22px;

    border-right: 2px solid rgba(0,0,0,.25);

    transform: translateX(-50%);

}


/* MOUTH */

.mouth {

    position: absolute;

    top: 97px;

    left: 50%;

    width: 22px;

    height: 5px;

    border-bottom: 2px solid rgba(0,0,0,.45);

    transform: translateX(-50%);

}


/* NECK */

.neck {

    position: absolute;

    top: 112px;

    left: 50%;

    width: 55px;

    height: 70px;

    transform: translateX(-50%);

    background: #a66d51;

}


/* BODY / SHIRT */

.body {

    position: absolute;

    top: 155px;

    left: 50%;

    width: 250px;

    height: 310px;

    transform: translateX(-50%);

}

.shirt {

    width: 100%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            #101010,
            #181818,
            #0b0b0b
        );

    border-radius:
        35px
        35px
        15px
        15px;

    position: relative;

    box-shadow:
        0 20px 50px rgba(0,0,0,.5);

}


/* SHIRT SHOULDERS */

.shirt::before {

    content: "";

    position: absolute;

    top: -10px;

    left: 25px;

    width: 200px;

    height: 60px;

    background: #121212;

    border-radius: 50%;

}


/* LOGO */

.shirt-logo {

    position: absolute;

    top: 80px;

    left: 50%;

    transform: translateX(-50%);

    font-size: 11px;

    color: white;

}


/* SHIRT FOLDS */

.shirt-fold {

    position: absolute;

    width: 2px;

    height: 170px;

    background: rgba(255,255,255,.04);

    top: 100px;

}

.fold-one {

    left: 75px;

    transform: rotate(3deg);

}

.fold-two {

    right: 75px;

    transform: rotate(-3deg);

}


/* ARMS */

.arm {

    position: absolute;

    top: 165px;

    width: 55px;

    height: 270px;

    background:
        linear-gradient(
            90deg,
            #111,
            #222,
            #111
        );

    border-radius: 30px;

    z-index: -1;

}

.left-arm {

    left: 5px;

    transform: rotate(6deg);

    animation: leftArm 5s ease-in-out infinite alternate;

}

.right-arm {

    right: 5px;

    transform: rotate(-6deg);

    animation: rightArm 5s ease-in-out infinite alternate;

}

@keyframes leftArm {

    to {
        transform: rotate(9deg);
    }

}

@keyframes rightArm {

    to {
        transform: rotate(-9deg);
    }

}


/* HANDS */

.hand {

    position: absolute;

    bottom: -15px;

    left: 50%;

    width: 38px;

    height: 50px;

    background: #a87055;

    border-radius: 40%;

    transform: translateX(-50%);

}


/* PANTS */

.pants {

    position: absolute;

    top: 450px;

    left: 50%;

    width: 190px;

    height: 190px;

    transform: translateX(-50%);

    display: flex;

    gap: 8px;

}

.leg {

    width: 91px;

    height: 190px;

    background:
        linear-gradient(
            90deg,
            #101010,
            #222,
            #0d0d0d
        );

    border-radius:
        5px
        5px
        12px
        12px;

}


/* SHOES */

.shoe {

    position: absolute;

    bottom: 0;

    width: 100px;

    height: 40px;

    background: #050505;

    border-radius:
        15px
        25px
        8px
        8px;

    box-shadow:
        0 10px 20px rgba(0,0,0,.5);

}

.left-shoe {

    left: 45px;

}

.right-shoe {

    right: 45px;

}


/* SCROLL */

.scroll {

    position: absolute;

    bottom: 40px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 9px;

    letter-spacing: 4px;

    opacity: .5;

    direction: ltr;

}

.scroll-line {

    width: 50px;

    height: 1px;

    background: white;

}


/* NUMBER */

.hero-number {

    position: absolute;

    bottom: 35px;

    right: 6%;

    font-size: 12px;

    opacity: .4;

}


/* PRODUCTS */

.products {

    min-height: 100vh;

    padding: 130px 7%;

    background: #f4f4f2;

    color: #111;

}

.section-title span {

    font-size: 11px;

    letter-spacing: 4px;

    opacity: .5;

}

.section-title h2 {

    font-size: clamp(40px, 6vw, 80px);

    margin-top: 20px;

}


.product-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    margin-top: 70px;

}

.product-card {

    cursor: pointer;

}

.product-image {

    height: 500px;

    background:
        linear-gradient(
            145deg,
            #ddd,
            #aaa
        );

    display: flex;

    align-items: flex-end;

    justify-content: center;

    padding-bottom: 30px;

    transition: .6s;

}

.product-image span {

    font-size: 30px;

    font-weight: 900;

    opacity: .25;

}

.product-card:hover .product-image {

    transform: translateY(-10px);

}

.product-card h3 {

    margin-top: 20px;

    font-size: 20px;

}

.product-card p {

    margin-top: 10px;

    opacity: .5;

}


/* ABOUT */

.about {

    min-height: 80vh;

    padding: 140px 7%;

    display: flex;

    align-items: center;

    background: #111;

}

.about span,
.contact span {

    letter-spacing: 5px;

    font-size: 11px;

    opacity: .5;

}

.about h2 {

    font-size: clamp(50px, 8vw, 120px);

    line-height: .95;

    margin: 30px 0;

}

.about p {

    max-width: 500px;

    line-height: 2;

    opacity: .6;

}


/* CONTACT */

.contact {

    min-height: 70vh;

    padding: 120px 7%;

    background: #050505;

}

.contact h2 {

    font-size: clamp(50px, 8vw, 120px);

    line-height: .9;

    margin: 30px 0 50px;

}

.contact button {

    padding: 18px 45px;

    background: white;

    color: black;

    border: none;

    cursor: pointer;

    font-size: 15px;

}


/* FOOTER */

footer {

    padding: 40px 7%;

    display: flex;

    justify-content: space-between;

    background: #050505;

    border-top: 1px solid #222;

}

footer p {

    opacity: .4;

}


/* MOBILE */

@media (max-width: 900px) {

    nav {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero-content {

        right: 8%;

        top: 25%;

    }

    .hero-content h1 {

        font-size: 70px;

    }

    .model-area {

        width: 100%;

        left: 0;

        opacity: .6;

    }

    .model {

        transform:
            translateX(-50%)
            scale(.8);

    }

    .product-grid {

        grid-template-columns: 1fr;

    }

    .product-image {

        height: 400px;

    }

    .hero-buttons {

        flex-wrap: wrap;

    }

}

@media (max-width: 500px) {

    .hero-content {

        top: 20%;

    }

    .hero-content h1 {

        font-size: 58px;

    }

    .model {

        transform:
            translateX(-50%)
            scale(.65);

    }

}