/* Font Faces */
@font-face {
    font-family: 'Satoshi';
    src: url("/static/font/Satoshi/Satoshi-Light.d1d1eaba7a32.otf") format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url("/static/font/Satoshi/Satoshi-LightItalic.0f712df4c1cc.otf") format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi';
    src: url("/static/font/Satoshi/Satoshi-Regular.177a4dda04b5.otf") format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url("/static/font/Satoshi/Satoshi-Italic.e12f5b2bf973.otf") format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi';
    src: url("/static/font/Satoshi/Satoshi-Medium.378def5c1f4d.otf") format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url("/static/font/Satoshi/Satoshi-MediumItalic.d65b71e1365c.otf") format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi';
    src: url("/static/font/Satoshi/Satoshi-Bold.4a6fdcfc68ad.otf") format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url("/static/font/Satoshi/Satoshi-BoldItalic.7fcee65089c5.otf") format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi';
    src: url("/static/font/Satoshi/Satoshi-Black.22d9e9fdd872.otf") format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url("/static/font/Satoshi/Satoshi-BlackItalic.6a497defaeb0.otf") format('opentype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'AstroSpace';
    src: url("/static/font/AstroSpace-0Wl3o.1588b6ee947e.otf") format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Page Layout */
html {
    scroll-behavior: smooth;
}

* {
    border: 0;
    outline: none;
    box-sizing: border-box;
    font-family: 'Satoshi', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

/* Styles for Tags */

/* Navbar */
nav.navbar {
    width: 100%;
    height: 75px;
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 75px;
    z-index: 999;
    transition: background-color 250ms;
}

nav.background {
    background-color: rgba(10, 13, 42, 0.925);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

div.nav-logo {
    opacity: 1;
    transition: 250ms;
}

div.nav-logo.hidden {
    transform: rotate(45deg);
    opacity: 0;
}

ul.navbar-buttons {
    list-style: none;

}
ul.navbar-buttons li {
    display: inline;
    padding: 11px 8px 10px 8px;
    margin: 0 5px;
    border-radius: 20px;
    transition: border padding 250ms;
}

ul.navbar-buttons li a{
    text-decoration: none;
    color: #eeeeee;
    font-size: 1.50rem;
    font-weight: 500;
    padding: 7px 15px;
}

ul.navbar-buttons li:hover{
    border: 2px solid #eeeeee;
    padding: 9px 6px 8px 6px;
    transform: scale(1.2);
}

div.nav-contact {
    width: fit-content;
    height: 50px;
}

a.coming-soon {
    cursor: not-allowed;
}

.mobile-menu-bg {
    z-index: 1;
    width: 0;
    height: 0;
    margin: 30px 0 20px 20px;
    background-color: #020217;
    border: 1px solid #294adb;
    box-shadow: 0 0 20px #294adb;
    border-radius: 50%;
    transition: width 0.5s ease, height 0.5s ease, transform 0.5s ease, opacity 0.5s ease;
    position: fixed;
    top: 0;
    right: 0;
    display: none;
    opacity: 0;
}

.mobile-menu-bg-open {
    width: 720px;
    height: 720px;
    transform: translate(60%,-30%);
    display: block;
    opacity: 1;
}

.menu-btn {
    width:50px;
    height:50px;
    background-color: transparent;
    display:none;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    z-index: 9999;
}

.menu-icon {
    width:40px;
    height:40px;
    background-color: transparent;
}

.bar {
    stroke: #294adb;
    stroke-width: 10;
    stroke-linecap:round;
    filter:drop-shadow(0 0 6px #1737c7);
    transition:.3s;
}

.menu-btn.open .top { transform: translateX(25px) rotateZ(45deg); }
.menu-btn.open .mid { opacity:0; }
.menu-btn.open .bot { transform: translateX(-45px) translateY(28px) rotateZ(-45deg); }

/* End of the Navbar */

/* Header */
header.gradient-bg {
    width: 100%;
    height: 100vh;
    min-height: 750px;
    background: #020217;
    background-image:
        radial-gradient(at 30% 40%, #0a0d2a 15%, transparent 70%),
        radial-gradient(at 60% 60%, #101c40 25%, transparent 45%),
        radial-gradient(at 80% 20%, #0f1b38 20%, transparent 60%);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.hero-section {
    color: #eeeeee;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

div.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

div.logo img {
    width: 250px;
    height: 250px;
    filter: drop-shadow(4px 3px 55px #030609);
}

h1.logo-text {
    text-align: left;
    font-size: 4.5rem;
    line-height: normal;
    padding: 0;
    margin: 0;

    font-family: 'AstroSpace', sans-serif;
}

h1.main-title {
    font-family: 'AstroSpace', sans-serif;
    font-size: 6rem;
    margin: 0;
    margin-top: 50px;
    line-height: 1;
}

span.morphose {
    font-family: 'AstroSpace', sans-serif;
    color: #3c339a;
    transition: filter 0.25s ease, opacity 0.25s ease;
    display: inline-block; /* Yazının yerini korumak için */
    line-height: 1;
    background: linear-gradient(45deg, #1CB5E0, #5a79c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2.subtitle {
    margin-top: 25px;
    font-size: xx-large;
    background: linear-gradient(90deg, #6190E8, #A7BFE8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

span.one-color {
    background: linear-gradient(90deg, #a3aedc, #b0b8e6, #9aa3d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

div.social-links-container {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 900;
}

ul.social-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 0 0 25px;
    margin: 0;
}


li.link-container {
    margin: 5px 0;
    transition: transform 200ms ease;
}

li.link-container:hover {
    transform: scale(1.2) rotate(5deg) translateY(-5px);
    transition: transform 200ms ease;
}

li.link-container:hover div.tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

li.link-container:hover a.link-button svg {
    filter: drop-shadow(0 0 5px #183bff) drop-shadow(0 0 10px #183bff) drop-shadow(0 0 20px #183bff) drop-shadow(0 0 50px #183bff);
}

li.link-container#mobile-contact-link {
    display: none;
}

a.link-button {
    text-decoration: none;
    color: #ecf0f1;
    font-size: 1.5rem;
    transition: all 200ms ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    z-index: 999;
}

div.tooltip {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0a0d2a;
    color: #eee;
    border-top: 1px solid #ecf0f1;
    border-right: 1px solid #ecf0f1;
    border-bottom: 1px solid #ecf0f1;
    border-radius: 0 3px 3px 0;
    padding: 5px 10px;
    font-size: 14px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    white-space: nowrap;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: -1;
}

li.link-separator div{
    width: 2px;
    height: 100px;
    background-color: #ecf0f1;
}

div.contact-email-container {
    position: fixed;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 25px 0 0;
    letter-spacing: 1px;
    z-index: 990;
}

a.contact-email-fixed {
    text-decoration: none;
    color: #ecf0f1;
    writing-mode: vertical-rl;
    font-size: 1.1rem;
    margin-right: -5px;
}

a.contact-email-fixed::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 2px;
    height: 0;
    background-color: #ecf0f1;
    transition: height 200ms;
}

a.contact-email-fixed:hover {
    font-weight: 600;
    transition: font-weight 200ms;
}

a.contact-email-fixed:hover::before {
    height: calc(100% - 40px);
}

svg#contact-email-icon {
    transform: rotate(90deg);
    margin-bottom: 10px;
    margin-left: -5px;
}

span.seperator-line-vertical {
    margin-top: 15px;
    width: 2px;
    height: 25px;
    background-color: #ecf0f1;
}

div.header-contact-btn {
    display: none;
}
/* End of the Header */
