/* Inter Font */
@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter/inter.ttf') format('truetype');
}
/* Rajdhani Medium Font */
@font-face {
    font-family: 'RajMed';
    src: url('/assets/fonts/Rajdhani/Rajdhani-Medium.ttf') format('truetype');
}
/* Rajdhani Light Font */
@font-face {
    font-family: 'RajLight';
    src: url('/assets/fonts/Rajdhani/Rajdhani-Light.ttf') format('truetype');
}
/* Rajdhani Bold Font */
@font-face {
    font-family: 'RajBold';
    src: url('/assets/fonts/Rajdhani/Rajdhani-Bold.ttf') format('truetype');
}
/* CSS Variables */
:root {
    --nav-height: 50px;
    --mobile-cutoff-width: 700px;
    --background: #dfdfdf;
    --background-grad: radial-gradient(ellipse farthest-corner at center bottom, hsl(180, 100%, 92%) 0%, #dfdfdf 50%);
    --text: #1a1a1a;
    --nav-btn-bg: rgba(0,0,0,0.25);
}
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --background: #000000;
        --background-grad: radial-gradient(ellipse farthest-corner at center bottom, rgb(10, 70, 70) 0%, rgb(0,0,0) 50%);
        --text: #f5f5f5;
        --nav-btn-bg: rgba(255,255,255,0.1);
    }
    :root:not([data-theme="light"]) .la-h-col .col-inner {
        background: rgba(255,255,255,0.1);
        color: white;
    }
}
:root[data-theme="dark"] {
    --background: #000000;
    --background-grad: radial-gradient(ellipse farthest-corner at center bottom, rgb(10, 70, 70) 0%, rgb(0,0,0) 50%);
    --text: #f5f5f5;
    --nav-btn-bg: rgba(255,255,255,0.1);
}
:root[data-theme="dark"] .la-h-col .col-inner {
    background: rgba(255,255,255,0.1);
    color: white;
}
body.dark {
    background: black;
}

html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    background: transparent;
    color: var(--text);
    font-family: "RajMed", sans-serif;
    overflow-x: clip;
}

.main-content {
    color: var(--text);
    background: transparent;
    width: 100%;
    height: fit-content;
    min-height: 100vh;
    position: relative;
}
.main-content::after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35vh;
    pointer-events: none;
    background: var(--background-grad);
    z-index: -1;
}
.main-content::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: var(--background);
    z-index: -1;
}

.main-content .main-nav {
    --padding: 15px;
    transition: all 0.5s ease;
    width: calc(100% - (var(--padding) * 2));
    height: 52px;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(0px, calc(0px - (var(--nav-height) + 5px)));
    z-index: 10000;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
}
.main-nav.show-nav {
    transform: translate(0px, 0px);
}
.main-nav .nav-title {
    font-family: "RajBold";
    font-size: 125%;
    padding: 10px;
    height: fit-content;
    border-radius: 14px;
    background: rgba(0,0,0,0.001);
    backdrop-filter: 
        blur(6px)
        brightness(1);
    cursor: pointer;
}
.main-nav .nav-links {
    font-family: "RajLight";
    width: fit-content;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.nav-links .nav-btn {
    transition:
        all 0.15s ease,
        border-bottom 0.15s ease,
        border-right 0.15s ease 0.015s,
        border-top 0.15s ease 0.03s,
        border-left 0.15s ease 0.045s;
    --ver-padding: 6px;
    --ver-margin: 6px;
    margin: var(--ver-margin) 10px;
    margin-right: 0;
    width: fit-content;
    height: calc(100% - (var(--ver-padding) * 2) - (var(--ver-margin) * 2));
    padding: var(--ver-padding) 16px;
    border-radius: 14px;
    background: var(--nav-btn-bg);
    backdrop-filter: 
        blur(6px)
        brightness(0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid transparent;
}
.nav-btn i {
    color: white;
    mix-blend-mode: difference;
}
.nav-btn:hover {
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    border-top: 1px solid white;
    border-left: 1px solid white;
}
@media (prefers-color-scheme: light) {
    :root:not([data-theme="dark"]) .nav-btn:hover {
        border-bottom: 1px solid black;
        border-right: 1px solid black;
        border-top: 1px solid black;
        border-left: 1px solid black;
    }
}
:root[data-theme="light"] .nav-btn:hover { border-color: black; }
:root[data-theme="dark"] .nav-btn:hover { border-color: white; }



.footer {
    width: 100%;
    height: fit-content;
    min-height: 25vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 15vh;
}
.footer .footer-col-img {
    width: 25%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-col-img img {
    width: 80%;
    height: auto;
    mix-blend-mode: difference;
}
.footer .footer-col-links {
    width: 75%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}
.footer-col-links .f-link-section {
    width: 33%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.f-link-section .f-link-title {
    font-size: 155%;
    white-space: nowrap;
    text-overflow: clip;
}
.f-link-section .f-link-links {
    font-size: 95%;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.f-link-links .f-link {
    cursor: pointer;
    color: var(--text);
    position: relative;
    margin: 2px 0;
}
.f-link::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translate(-50%, 0);
    background: var(--text);
    width: 0%;
    height: 1px;
    overflow: clip;
    transition: all 0.3s ease;
}
.f-link:hover::after {
    transition: all 0.15s ease;
    width: 100%;
}






@media only screen and (max-width: 850px) {
    .footer {
        position: relative;
    }
    body.landing {
        --land-card-bg: linear-gradient(45deg, rgba(0,0,0,0.5) 10%, rgba(10,10,10,0.85) 90%);
        --land-card-color: rgb(255, 255, 255);
    }
    .landing-header {
        flex-direction: column;
    }
    .landing-header .la-h-col:not(.col2) {
        width: 100%;
        z-index: 10;
        min-height: 100vh;
    }
    .landing-header .la-h-col.col2 {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9;
    }
    .landing-header .la-h-col.col2::after {
        content: "";
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.01);
        backdrop-filter: 
            blur(8px)
            saturate(125%)
            brightness(0.95);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 5;
        pointer-events: none;
    }
    .la-h-col .col-inner {
        background: rgba(0, 0, 0, 0.5);
        border-radius: 8px;
        border-top-right-radius: 58px;
    }
    .la-h-col .col-inner h1 {
        color: rgb(255, 255, 255);
    }
    .la-h-col .col-inner p {
        color: rgb(200, 200, 200);
    }
    .landing-section .feature-card {
        max-width: 65vw;
    }
    .landing-section .feature-card {
        box-shadow:
            inset 1px 1px 3px 0px rgba(255,255,255,0.1),
            3px 3px 4px 0px rgba(0,0,0,0.35);
    }
}