@import "../styles/root.css";
@import "../styles/bootstrap/bootstrap.css";
@import "../styles/nb-elements/nb-elements.css";
@import "../styles/components/header.css";


@font-face {
    font-family: "Trajan-Regular";
    src: url("../assets/fonts/TrajanPro-Regular.ttf");
}

/* Headers  */
@font-face {
    font-family: "Trajan-Bold";
    src: url("../assets/fonts/TrajanPro-Bold.otf");
}

/* Noxbytes */
@font-face {
    font-family: "Orbitron-Regular";
    src: url("../assets/fonts/Orbitron-Regular.ttf");
}

/* Text */
@font-face {
    font-family: "Inter";
    src: url("../assets/fonts/Inter/Inter-VariableFont_opsz\,wght.ttf");
}

* {
    font-family: "Inter";
    font-weight: 500;
    box-sizing: border-box;
    color: var(--text-normal);
    font-size: 0.95rem;
    margin: 0;
    scrollbar-color: #6e6e6e6b var(--secondary);
    scrollbar-width: thin;
}

html {
    scroll-behavior: smooth;
}

body{
    background-image: url("../assets/images/bg-galaxy-1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; 
}

.main-section {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    position: static;
}

main{
    flex: 1;
}

/* header */

.nb-header-banner figure {
    margin: auto !important;
    padding: 5px 0;
}

.tds-banner{
    width:100%;
    margin-top: 5px;
}

.tds-logo {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
}

.text-header-primary {
    background: var(--linear-primary);
    background-clip: text; 
    -webkit-text-fill-color: transparent; 
    -webkit-background-clip: text; 
}

.text-header-secondary {
    background: var(--linear-secondary);
    background-clip: text; 
    -webkit-text-fill-color: transparent; 
    -webkit-background-clip: text; 
}


/* buttons */
.btn {
    border: 0px;
    border-top: 2px solid;
    border-bottom: 2px solid;
    border-radius: 7px !important;
    /* font-size: 1.1rem; */
    font-weight: 500;
}

.btn-primary {
    background: var(--linear-primary);
    background-clip: text; 
    -webkit-text-fill-color: transparent; 
    -webkit-background-clip: text; 
}

.btn-primary:hover {
    background: var(--linear-secondary);
    background-clip: text; 
    -webkit-text-fill-color: transparent; 
    -webkit-background-clip: text; 
}


a {
    color: var(--primary) !important;
    text-decoration: none;
}

a:hover {
    background: var(--linear-secondary);
    background-clip: text; 
    -webkit-text-fill-color: transparent; 
    -webkit-background-clip: text; 
}

.a-icon {
    margin-left: 0.2rem;
}

.fa-arrow-up-right-from-square{
    display:none;
}

a:hover .fa-link{
    display:none;
}

a:hover .fa-arrow-up-right-from-square {
    display:inline-block;
}

.small-text, .small-text * {
    font-size: 0.75rem;
}


.link {
    color: var(--success);
    text-decoration: none;
}

.github {
    fill: rgba(255, 255, 255, 1);
}

.github-page .github {
    width: 33px;
}

.linkedin{
    fill: #0a66c2;
    width: 36px;
    height: 36px;
}



/* utility classes */
.hidden{
    display:'none';
}

.no-select {
    user-select: none; /* supported by Chrome and Opera */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
}

.gradient-text, .gradient-text:hover{
    background-clip: text; 
    -webkit-text-fill-color: transparent; 
    -webkit-background-clip: text; 
}

@media screen and (min-width: 576px) { 
    
    .content-section {
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0px 15px 15px 4px rgba(0, 0, 0, 0.632);
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

}

@media screen and (min-width: 992px) { 
    
    * {
        font-size: 1.1rem;
    }
    
}


@media (hover: none) {
    .fa-arrow-up-right-from-square {
        display:inline-block;
    }

    .fa-link {
        display:none;
    }
}

