*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.dark{
    
    --backgroungColor:#1e1f1f;
    --darkOne:#312f3a;
    --darkTwo:#45424b;
    --text-color:white;


}
.light{
    --mainColor:#64bcf4;
    --hoverColor:#5bacdf;
    --backgroungColor:#ECE8E4;
    --darkOne:#312f3a;
    --darkTwo:#45424b;
    --text-color:#1e1f1f;
}
img{
    width: 100%;
}
a{
    text-decoration: none;

}
li{
    list-style: none;
    color: var(--text-color);
}
.big-wrapper{
    position: relative;
    padding: 1.7rem 0 2rem;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background-color: var(--backgroungColor);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hero-logo{
   display: flex;
   align-items: center;
   cursor: pointer;
}
.logo-mg{
    width: 35%;
    margin-right: -1rem;
}
.bg-color{
    color: var(--text-color);
    font-size: 1.3rem;
    font-family: monospace;
    font-weight: 600;
}
.container{
    position: relative;
    /* background-color: salmon; */
    max-width: 90rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    z-index: 10;
}
header{
    position: relative;
    z-index: 70;
}
header .container{
    display: flex;
    justify-content: center;
    justify-content: space-between;
    align-items: center;
}

.links ul{
    display: flex;
    list-style: none;
    align-items: center;
}
.links a{
    color: var(--text-color);
    margin-left: 4.5rem;
    display: inline-block;
    transform: 0.3s;
}
.links a:hover{
    color: rgb(252, 195, 175);
    transform: scale(1.05);
}
.overlay{
    display: none;
}
.hamburger-menu{
    width: 2rem;
    position: relative;
    z-index: 99;
    height: 2rem;
    background-color: rgb(255, 250, 250);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: none;
}
.hamburger-menu .bar{
    position: relative;
    width: 100%;
    height: 3px;
    background-color: rgb(58, 58, 58);
    border-radius: 3px;
    transition: 0.5s;
}
.bar::before, .bar::after{
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    border-radius: 3px;
    transition: 0.5s;

}
.bar::before{
    transform: translateY(-8px);
}
.bar::after{
    transform: translateY(8px);
}
.big-wrapper.active .hamburger-menu .bar{
    background-color: transparent;
}
.big-wrapper.active .bar::before{
    transform:  translateY(0) rotate(-45deg);
}
.big-wrapper.active .bar::after{
    transform:  translateY(0) rotate(45deg);
}
.showcase-area .container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    background-color: var(--backgroungColor);
}
.round{
    border-radius: 20%;
}
.big-title{
    font-size: 1.4rem;
    color: var(--darkOne);
    text-transform: capitalize;
    line-height: 1.4;
}
h1, p{
    color: var(--text-color);
}
.btn{
    display: inline-block;
    padding: 0.9rem 1.9rem;
    border-radius: 16px;
    margin-top: 1.9rem;
    text-transform:capitalize ;
    
}
.btn:hover{
    background-color: rgb(252, 195, 175);
}
.text{
    color: var(--lightOne);
    font-size: 1.1rem;
    margin: 1.9rem 0 2.5rem;
    max-width: 600px;
    line-height: 2.3;
}
/* .showcase-area .btn{
    box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.5);
} */
.toggle-btn{
    display: inline-block;
    border: none;
    margin-left: 4.5rem;
    background-color: var(--backgroungColor);
    color: var(--text-color);
    outline: none;
    cursor: pointer;
    height: 39px;
    width: 39px;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: 0.3s;
}
.toggle-btn i{
    line-height: 39px;
}
.toggle-btn i:last-child{
    display: none;
}
.toggle-btn:hover{
    background-color: rgb(252, 195, 175);
}
.big-wrapper.light .toggle-btn i:last-child{
    display: none;
}
.big-wrapper.light .toggle-btn i:first-child{
    display: block;
}
.big-wrapper.dark .toggle-btn i:last-child{
    display: block;
}
.big-wrapper.dark .toggle-btn i:first-child{
    display: none;
}

.bottom-area ul{
    display: flex;
    gap: 4.5rem;
    justify-content: center;
    align-items: center;
    max-width: 90rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;

}
.action-links{
    color: var(--text-color);
    font-size: 1.5rem;
}
.action-links:hover{
   color:rgb(252, 195, 175) ;
}

/* 
media quries
*/

@media screen and (max-width: 870px) {
    .showcase-area .container{
        grid-template-columns: 1fr;
        justify-content: center;
        grid-gap: 2rem;
    }
    .big-title{
        font-size: 1.1rem;
    }
    .text{
        font-size: 0.95rem;
        margin: 1.4rem 0 1.5rem;
    }
    img{
        width: 100%;
    }
    .hamburger-menu{
        display: flex;
    }
    .links{
        position: fixed;
        top: 0;
        right: 0;
        max-width: 450px;
        width: 100%;
        height: 100%;
        background-color: black;
        z-index: 95;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: .5s;
    }
    .toggle-btn{
        margin-left: 0;
    }
    .links ul{
        flex-direction: column;
    }
    .links a{
        color: white;
        margin-left: 0;
        padding: 2rem 0;
    }
    .links .btn{
        background: none;
    }
    .overlay{
        display: block;
        position: fixed;
        opacity: 0;
        pointer-events: none;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.7);
        transition: 0.5s;
    }
    .big-wrapper.active .links{
        transform: translateX(0);
    }
    .big-wrapper.active .overlay{
            pointer-events: all;
            opacity: 1;
    }
}

@media screen and(max-width: 470px) {
    .container{
        padding: 0 1.5rem;
    }
    .big-title{
        font-size: 0.9rem;
    }
    .text{
        margin: 1.1rem 0 1.5rem;
    }
    .showcase-area .btn{
        font-size: 0.8rem;
    }
    
}