/*
Theme Name: Shabbir Showne Coming Soon
Theme URI: https://shabbirshowne.com
Author: Shabbir Showne
Author URI: https://shabbirshowne.com
Description: A modern, glassmorphism-style coming soon theme.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: shabbir-cs
*/

/* Core Design Styles */
:root {
    --bg-color: #0b0f19;
    --accent-color: #6366f1;
    --text-main: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 40%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-width: 550px;
    width: 90%;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

h1 {
    font-size: 3rem;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.05em;
    font-weight: 800;
}

.tagline {
    font-weight: 400;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    margin-bottom: 2.5rem;
}

p {
    line-height: 1.7;
    opacity: 0.7;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-main);
    background: var(--glass-border);
    padding: 14px 28px;
    border-radius: 100px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-pill:hover {
    background: var(--accent-color);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.5);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}