@font-face {
    font-family: 'Audex';
    src: url('./Fonts/Audex.woff2') format('woff2'),  /* Best for modern browsers */
         url('./Fonts/Audex.woff') format('woff'),    /* Fallback for older browsers */
         url('./Fonts/Audex.ttf') format('truetype'), /* Extra fallback */
         url('./Fonts/Audex.otf') format('opentype'); /* Optional for advanced typography */
    font-weight: normal;
    font-style: normal;
}


:root {
    --bg: #000000;
    --text-color: #ffffff;
    --focus-font: 'Audex', monospace, sans-serif;
    --main-font: "Quicksand", sans-serif;
    --logo-color: #F57B28;
    --logo-color2: #EC3951;
    --logo-color3: #0000ff;
    --logo-color4: #7900fb;
    --background-image: linear-gradient(135deg, #F57B28, #EC3951);
}

::selection {
    color: var(--bg);
    background-color: var(--logo-color);
}

::-webkit-scrollbar {
    display: none;
    /* width: 10px; */
    /* background-color: #1e1e1e; */
}

/* ::-webkit-scrollbar-thumb {
    background-color: #adadad;
} */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body  {
    background-color: var(--text-color);
    color: var(--bg);
    font-family: var(--main-font);
    line-height: 1.8;
    font-size: 1.1rem;
    overflow-x: hidden;
}

p, h1, h2, h3, h4, h5, h6 {
    cursor: default;
}

.loader {
    position: fixed;
    height: 100vh;
    width: 100vw;
    background-color: var(--text-color);
    left: 0;
    z-index: 9999;
    overflow: hidden;
    animation: close 2s ease-in-out;
    bottom: 0;
    opacity: 0;
    /* animation-delay: 1s; */
    user-select: none;
    pointer-events: none;
}

.black-card {
    height: 200vh;
    width: 100%;
    background-color: black;
    position: absolute;
    transform: translateY(-100%);
    animation: slide-up 2s ease-in-out;
}

@keyframes slide-up {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes close {
    0% {
        opacity: 1;
        height: 200vh;
    }
    100% {
        opacity: 1;
        height: 0;
    }
}

header {
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 997;
    background-color: var(--bg);
}
  
  
.logo {
    display: flex;
    align-items: center;
    margin: 0 clamp(5px, 5vw, 120px);
}

.main-logo {
    height: clamp(60px, 8vw, 150px);
    width: auto;
    max-width: 100%;
    transform: translateY(-10%);
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: translateY(0);
}

nav {
    margin: 0 2.5vw;
    display: flex;
}

nav a {
    text-decoration: none;
    font-size: 1rem;
    font-family: var(--focus-font);
    padding: 0 2em;
    border-radius: 1.05em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    text-align: center;
    text-wrap: nowrap;
    height: 40px;
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
    overflow: hidden;
}

nav a > span * {
    display: block;
    /* background-color: red; */
    height: 40px;
}

nav a:hover {
    box-shadow: 4px 4px 20px rgb(0, 0, 0);
    transform: scale(1.1);
}

nav a {
    /* background-color: #ffffff54; */
    background-color: #797979;
    color: var(--text-color);
}

nav a > span {
    bottom: 14px;
    position: relative;
    transition: bottom .1s ease;
}

nav a:hover > span {
    position: relative;
    bottom: -26px;
}

.main-container {
    display: flex;
    flex-direction: row;
    gap: clamp(60px, 20vw, 200px);
    /* background-color: red; */
    width: fit-content;
    margin: 0 auto;
}

.heading {
    font-size: clamp(2.2rem, 8.5vw, 3rem);
    text-transform: uppercase;
    line-height: 1;
    font-family: var(--focus-font);
    /* font-weight: 100; */
    text-wrap: nowrap;
    width: fit-content;
}

.sub-heading {
    font-family: var(--focus-font);
    /* font-weight: 100; */
    text-wrap: nowrap;
    line-height: 1.5;
    font-size: clamp(1.4rem, 3.5vw, 1.6rem);
    text-transform: uppercase;
    letter-spacing: 0.4vw;
    filter: opacity(50%);
    width: fit-content;
}

.form-container {
    width: 400px;
    padding: 20px;
    /* background-color: red; */
    /* margin-left: 10vw; */
    margin-top: 30px;
}

form {
    margin-top: 40px;
}
.form-group {
    margin-bottom: 15px;
}

.form-group * {
    font-family: var(--focus-font);
    font-weight: normal;
}

label {
    display: block;
    color: #ff6200;
    font-weight: bold;
    margin-bottom: 5px;
}
input, textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 16px;
    background-color: var(--bg);
    color: var(--text-color);
    font-size: 16px;
}
textarea {
    height: 100px;
    resize: none;
    border-radius: 30px;
}
button {
    background-color: var(--bg);
    color: var(--text-color);
    padding: 10px 20px;
    border: none;
    border-radius: .6em;
    cursor: pointer;
    font-size: 2rem;
    font-weight: bold;
    transition: all .3s ease;
}
button:hover {
    background-color: var(--logo-color3);
    box-shadow: 4px 4px 5px rgba(0, 0, 0, .3);
    transform: scale(1.1);
}

.social-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.social-container p {
    color: #808080;
    font-family: var(--focus-font);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 22px;
}

.social-container a {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin: 4px;
    transition: all .3s ease;
}

.social-container a:hover {
    box-shadow: 4px 4px 5px rgba(0, 0, 0, .3);
    transform: scale(1.1);
}

.social-container img {
    height: 100%;
}

footer {
    padding: 2em 0;
    font-family: var(--focus-font);
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

footer a {
    color: var(--logo-color2);
}

@media (max-width: 1060px) {
    .main-container {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 10px;
    }
}