/*
Theme Name: Coming Soon Theme
Theme URI: https://example.com/coming-soon
Author: Benjamin Sanchez Zebadua
Author URI: https://example.com
Description: A premium, minimalist Coming Soon theme that relies on native Gutenberg blocks and the Customizer for colors/typography, hiding all navigation.
Version: 1.0.0
Text Domain: coming-soon-theme
*/

/* Base CSS Variables (Fallbacks mapped to DESIGN.md concepts) */
:root {
    --color-primary: #1A1C1E;
    --color-secondary: #6C7278;
    --color-tertiary: #B8422E;
    --color-neutral: #F7F5F2;
    
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Base Reset & Styling */
body {
    margin: 0;
    padding: 0;
    background-color: var(--color-neutral);
    color: var(--color-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--color-primary);
}

a {
    color: var(--color-tertiary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}

/* Premium Layout for Main Content */
main.coming-soon-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    min-height: 100vh;
}

/* Theme Logo Styling */
.theme-logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.theme-logo-container img {
    max-width: 200px;
    height: auto;
}
