/*
Theme Name: e-COM Coming Soon
Theme URI: https://example.com
Author: Eric Edelman
Author URI: https://smbsp.com
Description: A clean, responsive "Coming Soon" landing theme for e-Com Automotive Group with centered logo and tagline.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ecom-coming-soon
*/

:root{
  --bg:#0d2a3a;
  --fg:#e9eef2;
  --accent:#c62828;
}

*{box-sizing:border-box}

html,body{
  height:100%;
}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--fg);
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:100%;
  text-align:center;
}

.wrapper{
  width: min(92vw, 820px);
  margin: 4rem auto;
  padding: clamp(1.25rem, 2vw, 2rem);
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
}

.logo{
  width: min(520px, 80vw);
  height:auto;
  display:block;
  margin: 0 auto 1.25rem auto;
}

h1{
  margin: 0.5rem 0 0.25rem;
  font-size: clamp(1.8rem, 2.5vw, 2.25rem);
  letter-spacing: 0.02em;
}

.tagline{
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity:0.95;
  margin: 0.25rem 0 0.5rem;
}

.smallprint{
  opacity: 0.7;
  font-size: 0.9rem;
  margin-top: 1rem;
}

a{
  color: var(--fg);
  text-underline-offset: 0.2em;
}
a:focus, a:hover{ opacity: 0.85; }
*/