
*,
*:after,
*::before {
    box-sizing: border-box;
}
/* html{
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
} */
[data-target-href]{
    cursor: pointer;
}
body{
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
}
body[data-color-theme="Dark_Purple"][data-theme-switch="Dark"]{
    background-color: #2D033B;
}
body[data-color-theme="Dark_Purple"][data-theme-switch="Light"]{
    background-color: white;
}
#switch_theme{
    appearance: none;
}
label[for="switch_theme"]{
    margin-left: auto;
    margin-right: 20px;
    width: 60px;
    height: 25px;
    border-radius:25px ;
    background-color: rgb(128, 128, 128 , .5);
    -webkit-border-radius:25px ;
    -moz-border-radius:25px ;
    -ms-border-radius:25px ;
    -o-border-radius:25px ;
    position: relative;
    cursor: pointer;
}
label[for="switch_theme"]::before{
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    left: 3px;
    top: 2.5px;
    transition: .3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transition: .3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition: .3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -ms-transition: .3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: .3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
label[for="switch_theme"]::after{
    font-family:FontAwesome;
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: color;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
#switch_theme:not(:checked) + [for="switch_theme"]::before{
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    background-color: black;
}
#switch_theme:checked + [for="switch_theme"]::before{
    transform: translateX(32px);
    -webkit-transform: translateX(32px);
    -moz-transform: translateX(32px);
    -ms-transform: translateX(32px);
    -o-transform: translateX(32px);
    background-color: white;
}
#switch_theme:not(:checked) + [for="switch_theme"]::after{
    content: "\f185";
}
#switch_theme:checked + [for="switch_theme"]::after{
    content: "\f186";
}

.sections__{
    width: 100%;
    height: calc(100vh - 75px);
    display: grid;
    place-items: center;
    font-size: 60px;
    color: white;
    background-color: goldenrod;
}
.sections__[data-theme-switch="Light"]{
    height: calc(100vh - 75px);
    background-color: goldenrod;
}
.sections__[data-theme-switch="Dark"]{
    height: calc(100vh - 75px);
    background-color: transparent;
}
#__nav_menu__{
    display: none;
} 
.speed{
    animation-duration: .3s;
}
.site_titles h1{
    font-size: clamp(50px , 6vw , 100px);
    width: 100%;
    text-align: center;
    margin-bottom: 100px;
    padding-top: 50px;
    font-weight: 700;
    position: relative;
    display: flex;
    justify-content: center;
}
.site_titles.dark h1{
    color: white;
    text-align: center;
    
}
.site_titles h1:after{
    content: " ";
    position: absolute;
    bottom: -20px;
    width:200px;
    height: 3px;
    background-color: black;  
}
.carousel-inner{
    color: transparent;
}
.carousel-item .carousel_content::after{
    content: "";
    inset: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
    /* box-shadow: 0 0 5px rgba(255, 255, 255, 0.5); */
    z-index: -1;
}
.carousel-item .carousel_content{
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
}
.carousel-item .carousel_content h1{
    font-size: clamp(30px , 4vw , 100px);
    color: white;
    text-align: center;
}
.carousel-item .carousel_content p{
   text-align: center;
   color: white;
}
.carousel-item:before{
    content: "sd";
    position: absolute;
    background-image: radial-gradient( transparent , rgba(0, 0, 0, 0.2));
    z-index: 1;
    width: 100%;
    height: 100%;
}
.carousel-item{
    position: relative;
    height: calc(100vh - 75px);
    background-image: url("../../images/nature.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.heading-2.banner-text{
    position: absolute;
    z-index: 5;
    color: white;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
@media (max-width: 1000px){
    .carousel-item .carousel_content{
        width: 95%;
    }
    label[for="switch_theme"]{
        scale: .75;
        margin-right: 5px;
        grid-column: 6/7;
        grid-row: 2/3;
    } 
    #__nav_menu__{
        display: grid;
        grid-column: 7/8;
        grid-row: 2/3;
        font-size: 20px;
        z-index: 999999;
    } 
    #__nav_menu__.fixed{
        position: fixed;
        bottom: 50px;
        font-size: 40px;
        background-color: white;
        color: black;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        display: grid;
        place-items: center;
} 
}