@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}

:root {
    --text-color: #ffc448;
    --bg-color: #222;
    --white: #fff;
    --black: #000;
    --mob-color: #2d2d2d;
}

.container {
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
}

/* Header Start */

header {
    background: var(--bg-color);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .logo {
    z-index: 1;
}

nav .logo a {
    text-decoration: none;
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
}

nav .logo a span {
    color: var(--text-color);
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    font-size: 18px;
    list-style: none;
    z-index: 1;
}

nav ul li a {
    text-decoration: none;
    color: var(--white);
    transition: 0.4s ease;
}

nav ul li a:hover {
    color: var(--text-color);
}

nav ul li a.active {
    color: var(--text-color);
}

nav .hamburger {
    position: relative;
    width: 30px;
    cursor: pointer;
    appearance: none;
    background: none;
    outline: none;
    border: none;
    display: none;
    scale: 0.8;
}

nav .hamburger .bar,
nav .hamburger::after,
nav .hamburger::before {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    margin: 6px 0;
    transition: 0.4s;
}

nav .hamburger.active::before {
    transform: rotate(-45deg) translate(-8px, 5px);
}

nav .hamburger.active::after {
    transform: rotate(45deg) translate(-8px, -5px);
}

nav .hamburger.active .bar {
    opacity: 0;
}

/* Header End */

/* Home Start */

.home {
    background: var(--bg-color);
    position: absolute;
    top: 0;
    width: 100%;
    height: 120vh;
    z-index: -1;
    padding: 300px 0 50px;
}

.home .home-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-info .left {
    flex: 1;
}

.left span {
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(130deg, #383528 0%, #191919 100%);
    border: 1px solid #3b3b3b;
    color: var(--white);
    padding: 5px 25px;
    border-radius: 25px;
}

.left h1 {
    font-size: 6rem;
    margin: 25px 0;
    color: var(--white);
}

.left p {
    width: 90%;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: #c3c3c3;
    mask-border: 50px;
    margin-bottom: 35px;
    text-align: justify;
}

.left .btn {
    display: flex;
    align-items: center;
    gap: 20px;
}

.left .btn button {
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 6px;
    color: var(--white);
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s ease-in;
}

.left .btn button:first-child {
    background: var(--text-color);
    border: 2px solid var(--text-color);
}

.left .btn button:first-child:hover {
    background: var(--black);
    color: var(--text-color);
    transform: translateY(-5px);
}

.left .btn button:last-child {
    background: var(--black);
    border: 2px solid var(--black);
}

.left .btn button:last-child:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-5px);
    border-color: var(--white);
}

.social {
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.social .social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links a {
    font-size: 20px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(130deg, #383528 0%, #191919 100%);
    border: 1px solid #3b3b3b;
    transition: 0.4s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
}

.home-info .right {
    flex: 1;
}

.right .profile {
    text-align: right;
}

.right .profile img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--text-color);
    box-shadow: 0 0 50px var(--text-color);
}

/* Home End */

/* Media Screen */

@media screen and (max-width: 1280px) {
    nav {
        padding: 0 50px;
    }

    .home {
        padding: 250px 50px 50px;
        z-index: auto;
    }

    .left h1 {
        font-size: 5rem;
    }

    .right .profile img {
        width: 450px;
        height: 450px;
    }
}

@media screen and (max-width: 992px) {
    header {
        background: var(--mob-color);
    }

    nav .hamburger {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 80px;
        left: 100%;
        width: 100%;
        height: 80vh;
        background: var(--mob-color);
        flex-direction: column;
        padding: 50px;
        gap: 30px;
        transition: 0.5s ease-in;
    }

    nav ul li a {
        font-size: 28px;
    }

    nav ul.active {
        left: 0%;
    }

    .home {
        position: relative;
        padding: 50px;
        height: 100%;
    }

    .home-info {
        flex-direction: column-reverse;
    }

    .left {
        padding-top: 50px;
    }

    .left h1 {
        font-size: 4rem;
    }

    .left p {
        width: 100%;
    }

    .left .btn {
        padding-bottom: 50px;
    }

    .right .profile {
        padding-top: 50px;
    }

    .social {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .left span {
        font-size: 14px;
    }

    .left h1 {
        font-size: 3rem;
    }

    .right .profile img {
        width: 375px;
        height: 375px;
    }
}

@media screen and (max-width: 567px) {
    nav {
        padding: 0 30px;
    }

    nav .logo a {
        font-size: 30px;
    }

    .home {
        padding: 30px;
    }

    .left .btn button {
        font-size: 13px;
        padding: 10px 20px;
    }

    .right .profile img {
        width: 300px;
        height: 300px;
    }
}



