/* ==========================================================================
   Dreamed by Heather — Coming Soon Page Styles
   Trimmed to the elements actually rendered on comingsoon.html (hero +
   signup form). If About/Shop/Perks/Footer sections get uncommented later,
   pull their rules back in from styles.css.
   ========================================================================== */

:root {
  --sage: #8a9a73;
  --sage-dark: #6d7c59;
  --sage-light: #dfe6d4;
  --lavender: #a78bc4;
  --lavender-dark: #8a6bab;
  --lavender-light: #ece3f4;
  --cream: #faf7f0;
  --charcoal: #3a3530;
  --white: #ffffff;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;

  --max-width: 1180px;
  --shadow: 0 10px 30px rgba(58, 53, 48, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--lavender-dark);
  margin-bottom: 0.85em;
}

/* Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  background: radial-gradient(circle at 15% 20%, var(--sage-light) 0%, transparent 45%),
              radial-gradient(circle at 85% 15%, var(--lavender-light) 0%, transparent 40%),
              var(--cream);
  overflow: hidden;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  max-width: 900px;
}

.hero h1 span {
  color: var(--sage-dark);
  font-style: italic;
}

.hero-sub {
  max-width: 600px;
  font-size: 1.1rem;
  color: #5c564c;
}

.hero-decor {
  position: absolute;
  opacity: 0.5;
  color: var(--sage);
  z-index: 1;
}

.hero-decor.leaf-1 { top: 12%; left: 6%; font-size: 2.6rem; transform: rotate(-15deg); }
.hero-decor.leaf-2 { bottom: 10%; left: 10%; font-size: 1.8rem; color: var(--lavender); transform: rotate(20deg); }
.hero-decor.leaf-3 { top: 18%; right: 8%; font-size: 2.2rem; color: var(--lavender); transform: rotate(10deg); }
.hero-decor.leaf-4 { bottom: 16%; right: 6%; font-size: 2.8rem; transform: rotate(-20deg); }

/* Signup form (15% off)
   ========================================================================== */

.signup-form {
  width: 100%;
  max-width: 480px;
  margin-top: 6px;
}

.signup-form .fields {
  display: flex;
  gap: 10px;
  background: var(--white);
  padding: 8px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.signup-form input[type="email"] {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  min-width: 0;
}

.signup-form input::placeholder {
  color: #a49c8e;
}

.signup-form button {
  flex-shrink: 0;
  padding: 12px 26px;
}

.signup-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #6b6459;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.signup-note i {
  color: var(--lavender-dark);
}

.privacy-note {
  margin-top: 10px;
  font-size: 0.78rem;
  color: #9a9184;
}

/* Reveal animation
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 760px) {
  .signup-form .fields {
    flex-direction: column;
    border-radius: 20px;
  }

  .signup-form input[type="email"] {
    padding: 12px 14px;
    text-align: center;
  }
}
