/* =================================================================
   PRD TEST - BLOG BAKIM MODU (MAINTENANCE) STYLES
   Kurumsal, Modern ve Responsive Karşılama Ekranı
   ================================================================= */

:root {
    --brand-navy: #0f172a;       /* Derin Lacivert */
    --brand-blue: #2563eb;       /* Kurumsal Mavi */
    --brand-cyan: #0ea5e9;       /* Açık Mavi Vurgu */
    --text-white: #ffffff;
    --text-gray: #cbd5e1;
}

.maintenance-wrapper {
    width: 100%;
    overflow: hidden;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Hero Alanı - Tam Ekran */
.maintenance-hero {
    position: relative;
    height: 100vh; /* Ekranı kapla */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-navy);
    color: var(--text-white);
    text-align: center;
    /* Header payı (Desktop: TopBar + Header ~160px) */
    padding-top: 100px; 
}

/* Arka Plan Görseli ve Efektler */
.maintenance-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2069&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) contrast(1.2);
    opacity: 0.15; /* Silik arka plan */
    z-index: 0;
    animation: bg-zoom 20s infinite alternate;
}

@keyframes bg-zoom { from { transform: scale(1); } to { transform: scale(1.1); } }

.maintenance-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.98) 100%);
    z-index: 1;
}

.maintenance-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* İkon Kutusu */
.icon-box {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    font-size: 3rem;
    color: var(--brand-cyan);
    box-shadow: 0 0 40px rgba(14, 165, 233, 0.2);
    backdrop-filter: blur(10px);
}

.maintenance-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.maintenance-hero h1 .highlight {
    background: linear-gradient(135deg, #fff 0%, var(--brand-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.maintenance-hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 50px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Butonlar */
.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-home, .btn-contact-us {
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-home { background: var(--brand-blue); color: #fff; box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3); border: none; }
.btn-home:hover { background: #1d4ed8; transform: translateY(-3px); box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4); }

.btn-contact-us { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, 0.2); }
.btn-contact-us:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; transform: translateY(-3px); }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 768px) {
    .maintenance-hero { padding-top: 80px; height: auto; min-height: 100vh; padding-bottom: 80px; }
    .maintenance-hero h1 { font-size: 2.5rem; }
    .maintenance-hero p { font-size: 1.1rem; }
    .action-buttons { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
    .btn-home, .btn-contact-us { width: 100%; justify-content: center; }
}