@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@700;800&display=swap');

:root {
    --primary-color: #020617;
    --accent-color: #007bff; /* Yeni logo mavisi */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-color);
    color: var(--text-primary);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/bg.png') no-repeat center center/cover;
    filter: brightness(0.3) saturate(0.8);
    z-index: -1;
    transform: scale(1.1);
    animation: slowZoom 30s infinite alternate linear;
}

@keyframes slowZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1.0); }
}

.container {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo-wrapper {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
}

.logo {
    width: 280px; /* Yatay logo için genişlik artırıldı */
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 123, 255, 0.3));
    /* mix-blend-mode: screen; */ /* Arka planlı logo gelirse bunu kapatabiliriz veya logo şeffafsa açabiliriz */
    transition: transform 0.5s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(96, 165, 250, 0.05);
    border: 1px solid rgba(96, 165, 250, 0.2);
    color: var(--accent-color);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.status-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color);
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(180deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 3rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--glass-border);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent-color);
    stroke-width: 2;
}

footer {
    position: fixed;
    bottom: 2rem;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #475569;
    letter-spacing: 0.05em;
}

@media (max-width: 640px) {
    .container {
        padding: 3rem 1.5rem;
        width: 95%;
    }
    h1 {
        font-size: 2rem;
    }
    .contact-info {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
    }
}
