html {
    scroll-behavior: smooth;
}


/* Font Family */

@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* Styles */

* {
    margin: 0px;
    padding: 0px;
    font-family: "Jost", serif;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color); /* Dynamically changes */
    color: var(--text-color); /* Dynamically changes */
    transition: background-color 0.3s, color 0.3s;
}

/* WRAPPER */

.wrapper {
    overflow: hidden !important;
}

.main-content {
    /*margin-left: 300px;*/
}

/* Color Root Combinations */

:root {
    --primary-color: #020E1C;
    --secondary-color: #03eeff;
    --white-color: #ffffff;
    --headings-color: #0E161F;
    --btn-bg: #292929;
    --box-shadow: 0px 12px 40px 0px rgba(0, 0, 0, 0.16);
}

[data-theme="dark"] {
    /* Dark Mode Colors */
    --primary-color: #02B1CB;
    --bg-color: #292929; /* Background for Dark Mode */
    --text-color: #ffffff; /* Text Color for Dark Mode */
    --header-background: #4F4F4F; /* Header Background For Dark Mode */
    --btn-bg: #0E161F;
    --border: #3F3F3F;
}

::-webkit-scrollbar{width: 6px;}
::-webkit-scrollbar-button, ::-webkit-scrollbar-thumb{background-color: var(--primary-color);}
::-webkit-scrollbar-track{box-shadow: inset 0 0 5px grey;}

hr {margin: 0px;}
hr:not([size]){
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    color: var(--headings-color);
    padding: 0px;
    text-transform: uppercase;
}

h1 {
    font-size: 46px;
    font-weight: 800;
    color: var(--primary-color);
}

h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
}

h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
}

h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}

h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

h6 {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-color);
}

ul,
ol,
li {
    list-style: none;
    margin: 0px;
    padding: 0px;
    color: var(--text-color);
    font-size: 16px;
}

span{
    display: inline-block;
    font-size: 16px;
}

a {
    display: inline-block;
    margin: 0px;
    padding: 0px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: var(--primary-color);
}

p {
    margin: 0px;
    padding: 0px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-color);
}

img,
svg {
    width: 100%;
    display: block;
    object-fit: cover;
}

input,
select,
textarea {
    width: 100%;
    /* color: var(--white-color); */
    padding: 12px 40px;
    border-radius: 4px;
    outline: unset;
    border: none;
}

textarea {
    height: 250px;
}

section {
    border-bottom: 1px solid var(--border);
    padding: 70px 0px;
}

.footer{
    padding-top: 50px;
    padding-bottom: 30px;
    background-color: var(--primary-color);
}

.footer .site-copy-right{
    color: var(--white-color);
    width: 100%;
    font-weight: 400;
}

.footer .col-lg-6.col-md-12.col-sm-12.col-12:last-child .site-copy-right {
    text-align: right;
}

.color-palette{
    position: fixed;
    top: 50%;
    right: 0%;
    width: 160px;
    display: flex;
    align-items: center;
    z-index: 99;
    transform: translate(130px, -50%);
    transition: all .3s ease-in-out;
}

.color-palette.active{
    transform: translate(0, -50%);
} 

.color-palette .color-palette-icon{
    width: 60px;
    height: 40px;
    border: none;
    border-radius: 8px 0 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
}

.colors {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    padding: 10px;
    background: rgba(255, 255, 255, 0.2); /* Semi-transparent */
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(15px);
}

.color-box {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.color-box:hover {
    transform: scale(1.1);
    transition: 0.2s;
}

.color-palette .color-palette-icon i {
    color: var(--white-color);
}

/* Dark Light Mode Switcher */

.toggle-container {
    position: fixed;
    top: 15px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    row-gap: 10px;
    z-index: 99;
}

  .toggle-label {
    font-size: 10px;
  }

  .toggle-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
  }

  .toggle-icon {
    font-size: 15px;
    color: var(--white-color);
  }
  #toggleIcon {
    color: var(--white-color);
    font-size: 18px;
}

/* Title */

.web-title{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 30px;
}

.title-line{
    width: 7px;
    height: 40px;
    background-color: var(--primary-color);
}

/* Hame Burger */

.sidebar-hameburger {
    position: fixed;
    top: 5%;
    left: 1%;
    z-index: 110;
}

.sidebar-hameburger a {
	border: 1px solid var(--primary-color);
    padding: 5px;
    border-radius: 5%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
}

.sidebar-hameburger a i {
    color: var(--white-color);
    font-size: 22px;
}

.main-content.active {
    margin: 0px;
}

.error-page .web-btn{
    margin-top: 20px;
}

.recent-posts .row {
    row-gap: 15px;
}

/* Music On Scroll */


