/* ============================================
   Zira Hosting - Coming Soon
   Gece modu: koyu zemin, beyaz logo
   ============================================ */

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

html, body {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0a0a;
    color: #f5f5f5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

/* ============================================
   Stage
   ============================================ */

.stage {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 1.5rem 2rem;
    position: relative;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 640px;
    width: 100%;
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Logo
   Beyaz logonun koyu zeminde okunması için
   hafif bir glow ekliyoruz, grayscale YOK
   ============================================ */

.logo-wrap {
    margin-bottom: 2.5rem;
}

.logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.08));
}

/* ============================================
   Brand Row (Logo altı isim + domain)
   ============================================ */

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.brand-divider {
    width: 1px;
    height: 14px;
    background: #444444;
}

.brand-domain {
    font-size: 0.95rem;
    font-weight: 400;
    color: #999999;
    letter-spacing: 0.01em;
}

/* ============================================
   Status (Yakında bandı)
   ============================================ */

.status {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.status-line {
    width: 32px;
    height: 1px;
    background: #ffffff;
}

.status-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
}

/* ============================================
   Message
   ============================================ */

.message {
    font-size: 1rem;
    color: #b8b8b8;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
    font-weight: 400;
}

/* ============================================
   Contact link
   ============================================ */

.contact-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.contact-link:hover {
    opacity: 0.6;
}

/* ============================================
   Footer
   ============================================ */

.foot {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #666666;
    font-weight: 400;
}

.foot .dot {
    color: #333333;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 600px) {
    .stage {
        padding: 3rem 1.25rem 1.5rem;
    }

    .logo {
        width: 140px;
        height: 140px;
    }

    .logo-wrap {
        margin-bottom: 2rem;
    }

    .brand {
        margin-bottom: 2rem;
    }

    .message {
        font-size: 0.95rem;
    }
}
