/* ==========================================================================
   Qayyim Books Publishing - Minimal Coming Soon Stylesheet
   ========================================================================== */

:root {
    /* Colors extracted from qbLogo.jpeg */
    --navy-primary: #0B2C5D;
    --navy-dark: #071D3F;
    --navy-light: #1E407C;
    --navy-subtle: rgba(11, 44, 93, 0.06);
    --navy-border: rgba(11, 44, 93, 0.15);
    
    --bg-page: #FFFFFF;
    --bg-subtle: #F8FAFC;
    
    --text-primary: #0B2C5D;
    --text-secondary: #475569;
    --text-muted: #94A3B8;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    background-color: var(--bg-page);
    background-image: 
        radial-gradient(circle at 50% 30%, rgba(11, 44, 93, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 50% 100%, rgba(11, 44, 93, 0.04) 0%, transparent 50%);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1.5rem;
    -webkit-font-smoothing: antialiased;
}

/* --- Container --- */
.container {
    max-width: 680px;
    width: 100%;
    margin: auto 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 0.8s ease-out;
}

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

/* --- Logo --- */
.logo-wrapper {
    margin-bottom: 2.25rem;
    position: relative;
}

.site-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
    transition: transform 0.4s ease;
}

.site-logo:hover {
    transform: scale(1.02);
}

/* --- Status Badge --- */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    background-color: var(--navy-subtle);
    border: 1px solid var(--navy-border);
    color: var(--navy-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 1.75rem;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--navy-primary);
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

/* --- Typography --- */
.main-heading {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--navy-primary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.subtext {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 540px;
    margin-bottom: 2.25rem;
    font-weight: 400;
}

/* --- Divider --- */
.divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 260px;
    margin-bottom: 2.25rem;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--navy-border), transparent);
}

.divider-icon {
    font-size: 0.6rem;
    color: var(--navy-primary);
    opacity: 0.6;
}

/* --- Contact Section --- */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

.contact-email {
    font-size: 1.05rem;
    color: var(--navy-primary);
    font-weight: 600;
    text-decoration: none;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.contact-email:hover {
    color: var(--navy-dark);
    background-color: var(--navy-subtle);
    border-color: var(--navy-border);
}

/* --- Footer --- */
.site-footer {
    text-align: center;
    font-size: 0.825rem;
    color: var(--text-muted);
    padding-top: 2rem;
}

/* --- Responsive Layout --- */
@media (max-width: 640px) {
    .site-logo {
        max-width: 220px;
    }

    .main-heading {
        font-size: 1.75rem;
    }

    .subtext {
        font-size: 1rem;
    }
}
