/* #region Yapı */

:root {
    --color-bg: #0b0b0d;
    --color-text-primary: #e4e4e7;
}

html,
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    scrollbar-color: #d7631a transparent;
    scrollbar-width: normal;
}

::selection {
    background: #ffbf00ce;
}

.maintenance {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-bg);
    /* arka plan rengi */
    color: var(--color-text-primary);
    /* none = BAKIMDA DEĞİL */
    display: none;
    /* flex = BAKIMDA */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 99;
}

.maintenance h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.maintenance p {
    font-size: 2rem;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: 1px solid #ffffff;
    color: white;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    border: 1px solid #ff914d;
    color: #ff914d;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}



/* #endregion */

/* #region Global Kısaltmalar */
.r {
    position: relative;
}

.f {
    display: flex;
}
.b{
    display: block;
}
.fcol {
    flex-direction: column;
}

.frow {
    flex-direction: row;
}

.jc {
    justify-content: center;
}

.jb {
    justify-content: space-between;
}

.je {
    justify-content: end;
}

.ic {
    align-items: center;
}
.ie{
    align-items: flex-end;
}
.fw{
    flex-wrap: wrap;
}
/* #endregion  */

/* #region Global Header */
header {
    margin-top: 35px;
    height: 35px;
    width: 100%;
    z-index: 999;
}

header .logo {
    width: 60px;
    font-weight: 900;
}

header nav {
    font-size: 24px;
}

/* #endregion */
