
:root {
    --accent: #2fd4a7;
    --accent2: #7cf3c1;
    --text: #eaf7f3;
    --muted: #b7c9c2;
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%;
}

html, body {
    overflow: hidden;
}

body {
    margin: 0;
    height: 100vh;
    background: url('./assets/background.png') center/cover no-repeat fixed;
    color: var(--text);
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
}

.header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 18px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,0));
    backdrop-filter: saturate(1.2) blur(1px);
}

.brand {
    display: flex;
    align-items: center;
}

    .brand img {
        height: 55px;
    }

.nav {
    display: flex;
    justify-content: center;
    gap: 55px;
    font-weight: 800;
}

    .nav a {
        color: var(--text);
        text-decoration: none;
        opacity: .95;
        cursor: pointer;
        font-size: 1.55rem;
    }

        .nav a:hover {
            color: var(--accent);
        }

.social {
    display: flex;
    justify-self: end;
    align-items: center;
    gap: 14px;
}

    .social a {
        display: inline-flex;
        opacity: .9
    }

        .social a:hover {
            opacity: 1;
            transform: translateY(-1px);
        }

.hero {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100vh;
    padding: 0 20px;
}

.hero-inner {
    max-width: 1100px;
    margin-left: auto; /* sola boşluk bırakır */
    margin-right: 20px; /* sağdan boşluk ayarlayabilirsin */
    text-align: right; /* içteki metin sağa hizalanır */
}

.kicker {
    letter-spacing: .25em;
    font-size: .8rem;
    color: var(--muted);
    text-transform: uppercase;
}

h1 {
    font-size: clamp(64px, 8vw, 140px);
    line-height: 1.5;
    margin: 6px 0 8px;
    font-weight: 900;
    letter-spacing: .02em;
}

    h1 .outline {
        -webkit-text-stroke: 2px rgba(234,247,243,.85);
        color: transparent;
    }

.sub {
    max-width: 640px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.55;
}

.footer-text {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: auto;
}

    .footer-text .sub {
        margin: 0;
        white-space: nowrap;
    }