@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css");

:root {
    --clr_first: hsl(112, 12%, 35%);
    --clr_second:hsl(26, 69%, 83%);
    /* --clr_second:#C2996A; */
    
    --body_bg_clr: hsl(40, 100%, 98%);
    --clr_text: hsl(112, 11%, 30%);
    --clr_underline:hsl(26, 85%, 60%);
    --menu_hover_bg_clr: hsl(40, 47%, 93%);

    --navbar_width: 300px;
}

*,
::before,
::after {
    margin : 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-optical-sizing: auto;
}

.showcase {
    position: absolute;
    right: 0;
    width: 100%;
    min-height: 100vh;
    /* padding: 100px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #111;
    color: #fff;
    z-index: 2;     /* Always in front of the menu */
    transition: 0.3s;
}

.showcase.active {
    right: var(--navbar_width);
}

/*==================================
    HEADER
===================================*/
.showcase header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    z-index: 1000;
}

/*==================================
    HEADER LOGO
===================================*/
.header_logo {
    position: absolute;
    top: 1.2rem;
    left: 4rem;
}

.header_logo a {
    display: block;
}

.header_logo img {
    width: 150px;
    height: 150px;
}

/*==================================
    HEADER BURGER
===================================*/
.header_burger {
    position: absolute;
    top: 2.2rem;
    right: 3rem;
    width: 1.6rem;
    height: 1.3rem;
    z-index: 99;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header_burger span {
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 2rem;
    background-color: white;
    transition: all 0.3s ease;
}

.header_burger span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%);
}

.header_burger span:nth-child(2) {
    top: 0;
}

.header_burger span:nth-child(3) {
    bottom: 0;
}

.header_burger.active {
    transform: rotate(180deg);
}

.header_burger.active span:nth-child(1) {
    display: none;
}

.header_burger.active span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background-color: white;
}

.header_burger.active span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    background-color: white;
}

/*==================================
    VIDEO
===================================*/
.showcase video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/*==================================
    TITLE
===================================*/
.showcase_title {
    position: relative;
    z-index: 10;
    padding-left: 8rem;
}

.showcase_title h2 {
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: .6rem;
    opacity: 0.6;
}

.showcase_title h3 {
    font-size: 2.2rem;
    font-weight: 400;
    opacity: 0.6;
}

/*==================================
    SOCIAL
===================================*/
.showcase_social {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.showcase_social li {
    list-style: none;
    width: 3rem;
}

.showcase_social li a {
    display: inline-block;
    color: white;
    opacity: 0.6;
}

.showcase_social li a i {
    font-size: 1.7rem;
    transition: 0.3s;
}

.showcase_social li a:hover i {
    transform: translateY(-10px);
}

/*==================================
    SOCIAL
===================================*/
.navbar {
    position: absolute;
    top: 0;
    right: 0;
    width: var(--navbar_width);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar ul {
    list-style: none;
}

.navbar li {
    display: flex;
    align-items: center;
    height: 3rem;
}

.navbar ul li a {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    color: #111;
}

.navbar ul li a:hover {
    color: #b98d11;
}

/*==================================
    RESPONSIVE
===================================*/
@media (max-width: 800px) {
    .showcase_title {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .showcase_title h2 {
        font-size: 3.2rem;
    }
    .showcase_title h3 {
        font-size: 2rem;
    }
}

@media (max-width: 650px) {
    :root {
        --navbar_width: 250px;
    }
}

@media (max-width: 500px) {
    .header_logo {
        left: 2rem;
    }
    .header_burger {
        right: 1.8rem;
    }
}

@media (max-width: 480px) {
    :root {
        --navbar_width: 200px;
    }
    .navbar ul li a {
        font-size: 1.2rem;
    }
}