/*
Theme Name: Infracon 2026 Coming Soon
Theme URI: 
Author: Infracon
Author URI: 
Description: A modern, sleek Coming Soon theme for Infracon 2026.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: infracon-coming-soon
*/

:root {
    --primary-color: #0073e6;
    --secondary-color: #00a859;
    --bg-dark: #ffffff;
    --text-light: #2d3748;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Inter', 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Background Image Overlay - Pure CSS Fallback since image generation failed */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 50%, rgba(0, 115, 230, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(0, 168, 89, 0.08) 0%, transparent 50%),
        linear-gradient(to bottom, #ffffff 0%, #f7fafc 100%);
    z-index: -2;
}

/* Gradient Overlay for better text readability */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(0, 115, 230, 0.05) 100%);
    z-index: -1;
}

/* Main Container - Glassmorphism */
.container {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 4rem;
    text-align: center;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo img {
    max-width: 300px;
    margin-bottom: 2rem;
    height: auto;
    border-radius: 12px;
    filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.15));
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #0073e6, #00a859);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

p.subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }
}