/* #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;
}

.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;
}
.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 */

/* #region Global Hero*/
.hero {
    height: calc(100vh - 70px);
    background-image: url(../images/orange-glow.png);
    background-repeat: no-repeat;
    background-position: bottom;
}

.hero .container {
    height: 100%;
}

.hero h1 {
    font-weight: 800;
    font-size: 94px;
    letter-spacing: -6px;
    text-align: center;

}

.hero p {
    font-size: 20px;
    font-weight: 900;
    margin-top: -25px;
}

.hero p span {
    background: linear-gradient(90deg, #ffde59, #ff914d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* #endregion */

/* #region Technical Info */
.social-info {
    height: 100vh;
    background-image: url(../images/orange-glow.png);
    background-repeat: no-repeat;
    background-position: bottom;
    transform: scaleY(-1);
}

.social-info>* {
    transform: scaleY(-1);
    /* İçerikleri normale çevir */
}

.social-info .code-box {
    height: 100px;
    width: 100px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.social-info .code-box:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.social-info .description {
    height: calc(100vh - 50px);
}

.social-info .description .tag {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3px;
    border-radius: 5px;
    width: fit-content;
}

.social-info .description p {
    font-size: 48px;
    margin-left: 10px;
    font-weight: 100;
}

.social-info .description .message {
    width: calc(5/6 * 100%);
}

#tech-icons {
    margin-top: -50px;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
}

#tech-icons.visible {
    opacity: 1;
}

/* #endregion */

/* #region My Info*/
.my-info {
    height: 100vh;
}

.my-info .container {
    height: 100%;
    padding: 30px 0 30px 0;
}

.my-info .contain {
    background-image: url(../images/bg4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    padding: 30px;
}

.my-info .contain .cards {
    width: 100%;
    height: 100%;
}

.my-info .contain .cards .card {
    height: calc(1/2 * 100%);
    padding: 10px;
}

.my-info .contain .cards .card .in-card {
    width: 100%;
    height: 100%;
    background-color: #0b0b0d69;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
}

.my-info .contain .cards .card .in-card .tag {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3px;
    border-radius: 5px;
    width: fit-content;
    margin-bottom: 20px;
}

/* #endregion */