﻿/*
  style.css
  Purpose: Styles for Nivara Nest coming-soon page.
  Notes: Mobile-first. Uses CSS variables for brand palette and typography.
*/

:root{
  --bg: #F8F6FB;
  --bg-secondary: #DDD8EE;
  --cta: #FFAEC3;
  --accent: #5B53A0;
  --text: #653F34;
  --text-secondary: #5B53A0;
  --white: #FFFFFF;

  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 6px 18px rgba(91,83,160,0.06);
}

/* Basic reset */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
}

.site-header{padding:18px 16px 0;text-align:center}
.logo{height:44px;display:inline-block}
.tagline{margin:8px 0 0;color:var(--text-secondary);font-size:14px}

main{padding:20px 16px 48px;max-width:1100px;margin:0 auto}

/* HERO */
.hero{display:grid;grid-template-columns:1fr;gap:18px;align-items:center}
.hero-content h1{
  font-family: 'Playfair Display', Georgia, serif;
  font-size:1.6rem;margin:0 0 8px;color:var(--text);
  line-height:1.15;
}
.lead{color:var(--text);opacity:0.9;margin:0 0 8px}
.hero-figure{margin:0}
.hero-image{
  width:100%;height:auto;border-radius:var(--radius-lg);display:block;box-shadow:var(--shadow-soft);
}

/* Cards */
.values{margin-top:22px}
.cards{display:grid;gap:12px}
.card{background:var(--white);padding:16px;border-radius:var(--radius-md);box-shadow:var(--shadow-soft)}
.card h3{font-family:'Playfair Display',serif;margin:0 0 6px;color:var(--text)}
.card p{margin:0;color:var(--text);opacity:0.9}

/* Launch message */
.launch{margin-top:20px}
.launch-panel{background:var(--bg-secondary);padding:18px;border-radius:14px}
.launch-panel h2{margin:0 0 6px;font-family:'Playfair Display',serif;color:var(--accent)}
.muted{margin:0;color:var(--text);opacity:0.9}

/* CTA */
.cta{margin-top:20px}
.cta-inner{display:flex;flex-direction:column;gap:12px}
.btn{display:inline-block;text-align:center;padding:14px 18px;border-radius:12px;font-weight:600;text-decoration:none}
.btn-primary{background:var(--cta);color:var(--text);border:2px solid var(--cta)}
.btn-outline{background:transparent;color:var(--accent);border:2px solid var(--accent)}
.btn:focus{outline:3px solid rgba(91,83,160,0.12);outline-offset:3px}

/* Footer */
.site-footer{text-align:center;padding:28px 16px 40px;color:var(--text-secondary);font-size:14px}

/* Utility */
.sr-only{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* Reveal animation */
.reveal{opacity:0;transform:translateY(10px);transition:opacity 420ms cubic-bezier(.2,.8,.2,1),transform 420ms cubic-bezier(.2,.8,.2,1)}
.reveal.visible{opacity:1;transform:none}

/* Larger screens */
@media (min-width:768px){
  .hero{grid-template-columns:1fr 420px;gap:28px}
  .hero-content h1{font-size:2rem}
  .cards{grid-template-columns:repeat(3,1fr)}
  .cta-inner{flex-direction:row;justify-content:center}
  .btn{min-width:240px}
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce){
  .reveal{transition:none;transform:none;opacity:1}
}
