@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300;400;500&family=Inter:wght@300;400;500&display=swap');

* { box-sizing: border-box; }

body {
    margin: 0;
    background: #000;
    color: #e5e5e5;
    font-family: 'Inter', sans-serif;
}

/* TYPO */
h1, h2 {
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.04em;
}

a { color: #e5e5e5; text-decoration: none; }

/* NAV BAR */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000;
    z-index: 1000;
}

.nav-inner {
    max-width: 1100px;
    margin: auto;
    padding: 16px 20px;
}

.logo {
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
}

/* TOGGLE — ASIL OLAY */
.menu-toggle {
    position: fixed;
    top: 16px;
    right: 20px;
    z-index: 3000;          /* HER ŞEYİN ÜSTÜ */
    font-size: 1.8rem;
    cursor: pointer;
    color: #fff;
}

/* OVERLAY MENU */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.menu-overlay.active { display: flex; }

.menu-overlay a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.8rem;
    margin: 16px 0;
    letter-spacing: 0.1em;
}

/* CONTENT */
.hero {
    padding: 120px 20px 80px;
    text-align: center;
}

.content {
    max-width: 820px;
    margin: auto;
    padding: 40px 20px;
}

footer {
    text-align: center;
    padding: 60px 20px;
    font-size: 0.8rem;
    color: #777;
}

/* INTRO VIDEO */
#intro {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}


#intro.fade-out {
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

/* HERO BACKGROUND */
.hero {
    background: url("/assets/img/bgheader.jpg") center center / cover no-repeat;
    position: relative;
}

/* REMOVE HERO TEXT (moved to overview) */
.hero h1,
.hero .subtitle,
.hero .hero-text {
    display: none;
}

/* OVERVIEW INTRO BLOCK */
.overview-intro {
    margin: 40px 0 20px;
    max-width: 720px;
}

.overview-intro h3 {
    font-family: "JetBrains Mono", monospace;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #eaeaea;
}

.overview-intro p {
    font-size: 1rem;
    line-height: 1.6;
    color: #bcbcbc;
}

/* FULLY CLEAN HERO TEXT */
.hero h1,
.hero h2,
.hero p,
.hero .subtitle,
.hero .hero-text {
    display: none !important;
}

/* HERO BOTTOM TEXT */
.hero-bottom-text {
    text-align: center;
    padding: 24px 16px 40px;
    color: #bcbcbc;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.hero-footer {
    position: absolute;
    bottom: 24px;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #cfcfcf;
    letter-spacing: 0.03em;
}

/* SIMPLE INTRO */
#intro {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-center {
    text-align: center;
}

#intro-loading {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
}

#intro-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 2.2rem;
    letter-spacing: 0.4em;
    color: #eaeaea;
    margin-bottom: 16px;
}

#intro-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #8a8a8a;
    opacity: 0;
    transition: opacity 1s ease;
}

/* FADE OUT */
#intro.fade-out {
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}
