* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    color: white;
}

body,
html {
    width: 100%;
    min-height: 100%;
    background-color: #212121;
    position: relative;
    overflow-x: hidden;
}


/*-------------------  navbar ------------------- */

/* padding of left and right of whole website */
header,
section,
footer,
#follow-section {
    padding-left:11vw;
    padding-right:11vw;
}

header {
    width: 100%;
    height: 100px;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(34, 34, 34, 0.5);
    /* Adjust the alpha value for transparency */
    backdrop-filter: blur(5px);
    z-index: 3;
}

.logo h2 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: white;
    letter-spacing: 2px;
    font-size: 30px;
    margin-bottom: 8px;
}

.logo img {
    width: 100px;
    margin-left: -36px;
    margin-top: 10px;
}

#links {
    display: flex;
}

#nav-links {
    display: flex;
    align-items: center;
    gap: 4vw;
}

#nav-links li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

#nav-links li a {
    font-size: 17px;
    color: rgb(194, 190, 190);
    transition: all 0.02s linear;
}

#nav-links li a:hover {
    color: white;
    scale: 1.1;
}

#links div .ri-menu-3-line {
    display: none;
    color: white;
    cursor: pointer;
    font-size: 4vh;
}

.show-active-link {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: white;
    opacity: 0;
}

/*-------------------  sidebar ------------------- */
#sidebar {
    background-color: white;
    position: fixed;
    z-index: 9;
    width: 100%;
    height: 100vh;
    background-color: rgba(22, 22, 22, 0.5);
    /* Adjust the alpha value for transparency */
    backdrop-filter: blur(5px);
    /* Adjust the blur radius */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4vh;
    scale: 0;
    opacity: 0;
    transform: translateY(-100%);
    /* transition: all 0.1s linear;  */
}

.ri-close-large-line {
    position: absolute;
    color: white;
    font-size: 4vh;
    top: 38px;
    right: 5vw;
    cursor: pointer;
}

#sidebar h1 a {
    color: rgb(170, 165, 165);
}

#sidebar h1 :hover {
    scale: 1.1;
}


/*-------------------  hero section ------------------- */

#hero-section {
    width: 100%;
    /* min-height: 100vh; */
    background-color: #212121;
    /* padding-top: 240px; */
    padding-top: 160px;
    align-items: center;
    display: flex;
}

#hire-section {
    width: 58%;
    min-height: 100%;
}

#profile-section {
    width: 42%;
    min-height: 100%;
    display: flex;
    justify-content: end;
}

#hire-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hire-name {
    font-size: 30px;
    font-weight: 200;
}

.hire-title {
    font-size: 40px;
    line-height: 1.5;
}

.hire-desc {
    font-size: 15px;
    opacity: .8;
}

.hire-me {
    display: flex;
    align-items: center;
}

.hire-me p {
    font-weight: 200;
}

.hire {
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: end;
    background-color: #A7734A;
    margin-right: 2px;
}

.hire-button {
    display: flex;
    align-items: center;
    gap: 3vw;
}

.arrow-line {
    display: flex;
    align-items: center;
}

.horizontal-line {
    height: .7px;
    background-color: white;
    width: 20vh;
}

.hire-arrow {
    margin-left: -9px;
    margin-top: 0.6px;

}

.img-cont {
    width: 80%;
    height: 360px;
    /* background-color: #876037; */
    overflow: hidden;
    margin-top: -50px;
    border-radius: 6px;
}

.img-cont img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*-------------------  follow section ------------------- */

#follow-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10vw;
    padding-bottom: 10vw;
}

#left-follow {
    display: flex;
    align-items: center;
    gap: 5vw;
}

#right-follow {
    display: flex;
    flex-direction: column;
}

#contact-follow,
#follow-follow {
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.left-follow-title {
    font-size:18px;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.7px;
}

.left-follow-sub-title {
    font-size: 14px;
    font-weight: 200;
}

.verticle-line {
    height: 8vh;
    background-color: white;
    width: 1px;
}

.follow-arrow {
    rotate: 90deg;
    margin-left: -8px;
    margin-top: -10px;
}



/* services button */
.button-2-cont {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 7vh;
}


.button-2 {
    width: 150px;
    height: 60px;
    position: relative;
    padding: 10px 20px;
    background-color: transparent;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    z-index: 1;
    font-weight: 200;
}

.button-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #A7734A;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    z-index: -1;
}

.button-2:hover::before {
    width: 100%;
    background-color: #A7734A;
    left: 0;
    backdrop-filter: blur(0px);
}

.button-2:hover .button-text {
    color: #fff;
    /* Or any other color you prefer */
}