/* 
------------COLORS------------ 

PRIMARY COLOR
tint : #BEDBF9
normal : #157FE8
shade : #062441


SECONDARY COLOR
tint : #E6BEF9
normal : #A515E8
shade : #2F0641


TERTIARY COLOR
tint : #F9D0BE
normal : #E85815
shade : #411906

*/

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
}

a {
    user-select: none;
}


:root {
    --primary_color_tint: #F0EEF6;
    --primary_color_normal: #6558A4;
    --primary_color_shade: #08070D;
    --secondary_color_tint: #E6BEF9;
    --secondary_color_normal: #A515E8;
    --secondary_color_normal_aplha: rgb(165 21 232 / 80%);
    --secondary_color_shade: #2F0641;
    --tertiary_color_tint: #F9D0BE;
    --tertiary_color_normal: #E85815;
    --tertiary_color_shade: #411906;
    --text_color: #333;
    --bg_color: #eee;
    --li_hover_color: #2f064138;
    --border_color: #b642eb;
    --light_bg_color: #9e9e9e2d;
    --text_font: "Poppins",sans serif;
    
}

[data-theme="dark"] {
    --bg_color: #181818f7;
    --text_color: #ddd;
}

[data-theme="light"] {
    --bg_color: #eee;
    --text_color: #333;
}

[data-theme="dark"] #light {
    display: block;
}
[data-theme="dark"] #dark {
    display: none;
}

[data-theme="light"] #dark {
    display: block;
}
[data-theme="light"] #light {
    display: none;
}


[x-cloak] { display: none !important; }


::selection {
    background-color: var(--secondary_color_tint);
    color: var(--primary_color_shade);
}

::-moz-selection {
    background-color: var(--secondary_color_tint);
    columns: var(--primary_color_shade);
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background: var(--secondary_color_normal);
}

::-webkit-scrollbar-track {
    border-radius: 0;
    background: var(--secondary_color_shade);
}

body {
    min-height: 100vh;
    display: grid;
    background-color: var(--primary_color_tint);
    overflow-x: hidden;
    background-color: var(--bg_color);
    color: var(--text_color);
    transition: all 0.4s ease;
    grid-template-rows: auto 1fr auto;
}



.bg-blur{
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 99999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.801);
}


.signin-form {
    opacity: 0;
    transition: opacity 0.4s ease;
}


#logo-name {
    font-family: "Coiny", system-ui;
}


header{
    position: sticky;
    z-index: 50;
    top: 0;
}

.top-header {

    /* background-color: hsl(0, 78%, 42%); */
    background-color: var(--secondary_color_normal_aplha);
    font-family: "Poppins", sans-serif;
    padding: 10px;
    transition: all 0.2s ease;
    backdrop-filter: blur(15px);

    /* padding-left: 70%; */

}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 5px;

}


.navbar-ul {
    transition: all 0.2s ease;
}
.navbar-ul a{
    position: relative;
    transition: all 0.3s ease;
}



/* NOT WORKING PLESE FIX IT LATER.. */
/* 
.navbar-ul a::after{
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0px;
    height: 2px;
    width: 0px;
    background: var(--primary_color_tint);
    transition: width 0.3s ease;
}


.navbar-ul a:hover::after{
    width: 100%;
}
.navbar-ul a:active::after{
    width: 100%;
} */

/* THE END  */


.logo {
    margin-left: 1rem;
}

.search-bar-mob {
    display: none;
}

.search-bar{
    position: relative;
    margin-left: 100px;
}

.search-bar input {
    padding: 8px 20px;
    padding-right: 40px;
    border: none;
    font-size: 17px;
    width: 15rem;
    border-radius: 50px;
}

.search-bar-icon {
    position: absolute;
    color: var(--secondary_color_shade);
    right: -10px;
    bottom: -5%;
    cursor: pointer;
    font-size: 18px;
    background: none;
}

.search-bar-mob-btn {
    display: none;
}



.navbar-ul li {
    padding: 5px 15px;
    list-style: none;
    display: inline-block;
    font-size: 1rem;
    transition: all 0.2s ease;
    border-radius: 10px;
}


.navbar-ul li:hover {
    background-color: var(--li_hover_color);
}

a {
    color: #fff;
    font-weight: 500;
    /* transition: all 0.2s ease; */
}

.share-icons {
    display: block;
    font-size: 1.3rem;
}

#share-icons-mob {
    display: none;
}



button {
    color: rgb(0, 0, 0);
    padding: 7px 12px;
    margin: 0px 10px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    max-width: 100px;
    font-family: "Poppins", sans-serif;

}


button a {
    color: var(--header_color);


}

/* button:hover {
    background-color: var(--tertiary_color_normal);
    color: var(--primary_color_tint);
} */

button:hover a {

    color: var(--content_color);
}

.dropbtn {
    border: none;
    font-weight: 500;
    color: rgb(255, 255, 255);
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;

}

.dropdown-content a {
    float: none;
    color: var(--header_color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: var(--hover_color);
    color: var(--content_color);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: hsl(0, 0%, 99%);
    z-index: 1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    transition: all 0.2s ease;
}

/* .dropdown:hover .dropdown-content{
    display: block;
} */


.menu {
    color: var(--primary_color_tint);
    display: none;
}

.cross {
    color: var(--primary_color_tint);
    display: none;
    /* transform: translate(0px, -21px); */

}

.menu-cross {
    display: none;
    transition: all 0.4s ease;
}


.themes {
    color: #fff;
    font-size: 18px;
    padding: 10px;
    font-size: 20px;
    min-width: 40px;

}

#light {
    color: #fff;
    cursor: pointer;
    display: none;
}

#dark {
    color: #fff;
    display: block;
    cursor: pointer;
}

#system {
    color: #fff;
    display: none;
    cursor: pointer;
}

main {
    margin: 0px 10%;

    /* background-color: #fff; */
    /* box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); */
}

.cros-button {
    top: 80px;
    left: 11vw;
    color: var(--primary_color_tint);
    background-color: var(--tertiary_color_normal);
    position: absolute;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.cros-button:hover {
    background-color: var(--tertiary_color_shade);
    color: var(--primary_color_tint);
}

.x-btn {
    position: relative;
    top: 23%;
    left:8%;
}


.Section1 {
    margin-top: 51px;
    padding: 1rem;
    font-family: var(--text_font);
}

.Section1 h1 {
    text-align: left;
    font-size: 24px;
    font-weight: 700;
}

.Section1 p {
    text-align: left;
    font-weight: 400;
}

.container-content {
    background-color: var(--light_bg_color);
    margin-top: 46px;

}

.content {
    /* display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; */

    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 1.5;

}

.img img {
    margin-top: 30px;
    width: 65%;

}

.paragraph {
    margin-top: 20px;
    margin-left: 10px;
    font-size: 16px;
    text-align: left;
}

.paragraph p {
    letter-spacing: normal;
    margin: 10px 10px;
    color: var(--text_color);
    line-height: 1.7;
}

.Section2 {
    padding: 1rem;
    font-size: 24px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    padding: 1rem;
}

.Section3 {
    padding: 1rem;
    font-size: 2rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.footer {
    background-color: var(--primary_color_shade);
    text-align: center;
    padding: 20px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
    margin-top: auto;
    margin-top: +10px;
}

.footer-ul {
    padding-bottom: 10px;
}

.footer-ul li {
    padding: 5px 15px;
    list-style: none;
    display: inline-block;
    border-radius: 10px;
}

.footer-ul a {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
}

@media (max-width:900px) {
    main {
        width: 100vw;
        margin: 0px;
    }

    .cros-button {
        left: 10px;
    }

    .container-content {
        border: none;
        margin-top: 10px;
    }

    .Section1 {
        margin-top: 0;
        padding-left: 10px;
    }

}


.nav-mob {
        display: none;
    }

@media (max-width:1000px) {

    .navbar {
        margin-right: 5px;
    }

    .navbar-mob {
        display: flex;
        flex-direction: column;
        position: absolute;
        background-color: var(--secondary_color_normal_aplha);
        margin-top: 10px;
        top: 50px;
        right: 0px;
        width: 100vw;
        height: 200px;
        align-items: center;
        z-index: 1;
        animation: mobSidebar 0.4s ease 0s 1 normal;
        backdrop-filter: blur(15px);
        font-family: var(--text_font);
    }

    @keyframes mobSidebar {
        0% {opacity: 0; scale: 0.9;}
        100% {opacity: 1; scale: 1;}
    }

    .img img {
    width: 100%;

    }

    .navbar ul {
        display: none;
        padding-top: 20px;
        align-items: center;
    }

    .search-bar{
        display: none;
        position: unset;
        margin: 0px 7px;
    }

    .search-bar-mob{
        display: block;
        position: relative;
        margin-top: 10px;
    }

    .search-bar-mob input {
        padding: 8px 20px;
        padding-right: 40px;
        border: none;
        font-size: 17px;
        width: 15rem;
        border-radius: 50px;
        background-color: #fff;
    }

    .search-bar-mob-icon {
        position: absolute;
        color: var(--secondary_color_shade);
        right: 12%;
        top: -35%;
        cursor: pointer;
        font-size: 18px;
        background: none;
        user-select: none;
    }

    .search-bar-mob-btn {
        display: block;
        background: none;
        color: #fff;
        padding: 0;
        margin: 0;
        

    }

    .share-icons {
        display: none;
    }

    #share-icons-mob {
        display: block;
    }

    .search-bar input {
        padding: 5px;
        font-size: 12px;
    }

    .cros-button {
        left: 10px;
    }

    .menu-cross {
        display: block;
    }


    .navbar-mob li {
        padding: 10px;
        max-width: fit-content;
        text-align: center;
    }

    button {
        margin: 10px 30px;
        
    }

    

    .dropdown-content {
        position: relative;
        box-shadow: none;
        border-radius: none;
        background-color: var(--header_color);
        color: var(--background_color);
    }

    .dropdown-content a {
        color: var(--background_color);
    }

    .search-bar-icon {
        position: absolute;
        left: 82vw;
        top: 19px;
        color: var(--header_color);
    }

    .paragraph {
        margin-left: 0;
    }

    .paragraph p {
        margin: 0;
    }

}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --bg_color: #181818f7;
    --text_color: #ddd;
  }
  #light {
    display: block;
  }
  #dark {
    display: none;
  }
}



@media (min-width:1840px) {
    body {
        background-color: var(--bg_color);
    }
    header {
        width: 1840px;
        margin-left: auto;
        margin-right: auto;
    }
    main {
        width: 1840px;
        margin-left: auto;
        margin-right: auto;
        background-color: var(--bg_color);
    }
    footer {
        width: 1840px;
        margin-left: auto;
        margin-right: auto;
    }
}


