@font-face {
    font-family: acedigate;
    src: url('../fonts/acedigate.ttf');
}
/* =====================================================
   home.css — Site Anasayfası (sade landing page)
   ===================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg:        #0a0a14;
    --surface:   rgba(255,255,255,0.04);
    --surface-2: rgba(255,255,255,0.08);
    --border:    rgba(255,255,255,0.10);
    --border-2:  rgba(255,255,255,0.18);
    --text:      #f5f5fa;
    --text-2:    #b8b8c5;
    --text-3:    #7a7a87;
    --primary:   #667eea;
    --primary-2: #764ba2;
    --accent:    #4ecdc4;
}

html, body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}
.sign {
    font-family: acedigate;
}

.sign a {
    color: #fff;
    text-decoration: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.home-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

/* ===== Header ===== */
.home-header {
    border-bottom: 1px solid var(--border);
}
.home-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    gap: 1rem;
}
.home-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}
.home-brand img {
    width: 30px; height: 30px;
    border-radius: 8px;
}
.home-header-actions {
    display: flex;
    gap: 0.6rem;
}

/* ===== Buttons ===== */
.home-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.3rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.home-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.30);
}
.home-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(102, 126, 234, 0.45);
}
.home-btn-ghost {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border-2);
}
.home-btn-ghost:hover {
    background: var(--surface-2);
    border-color: var(--text-2);
}
.home-btn-lg {
    padding: 1rem 1.8rem;
    font-size: 1rem;
}

/* ===== Hero ===== */
.home-hero {
    flex: 1;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
}
.home-hero-title {
    font-size: clamp(2rem, 5.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    max-width: 760px;
    margin: 0 auto 1.5rem;
}
.home-gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.home-hero-sub {
    font-size: clamp(1rem, 1.4vw, 1.1rem);
    color: var(--text-2);
    max-width: 580px;
    margin: 0 auto 2.5rem;
}
.home-hero-sub code {
    font-family: 'SF Mono', Menlo, monospace;
    background: var(--surface-2);
    padding: 0.15em 0.5em;
    border-radius: 6px;
    font-size: 0.9em;
    color: var(--accent);
}
.home-hero-sub strong { color: var(--text); }
.home-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

/* ===== Footer ===== */
.home-footer {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
}
.home-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.home-footer-brand {
    color: var(--text-3);
    font-size: 0.88rem;
}
.home-footer-links {
    display: flex;
    gap: 1.5rem;
}
.home-footer-links a {
    color: var(--text-3);
    font-size: 0.88rem;
    transition: color 0.2s;
}
.home-footer-links a:hover { color: var(--text); }

/* ===== Responsive ===== */
@media (max-width: 600px) {
    .home-header-actions .home-btn-ghost { display: none; }
    .home-hero { padding: 2.5rem 0; }
    .home-hero-cta { flex-direction: column; align-items: stretch; }
    .home-hero-cta .home-btn { justify-content: center; }
    .home-footer-inner { justify-content: center; text-align: center; }
}

@media (max-width: 380px) {
    .home-brand span { display: none; }
}
