/* ============================
   Morning Person Granola
   Coming Soon — Styles
   ============================ */

:root {
  /* Cream / natural paper background */
  --bg: #FDF6EC;
  --bg-subtle: #F5EBDA;

  /* Primary palette: red, yellow, blue — retro/hippie vibe */
  --red: #D94F3B;
  --yellow: #F2B705;
  --blue: #2A6FB5;

  /* Text */
  --text: #3B2F20;
  --text-muted: #8A7968;

  /* Fonts */
  --font-display: 'Baloo 2', cursive;
  --font-body: 'Quicksand', sans-serif;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Layout --- */

.container {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  text-align: center;
}

/* --- Hero --- */

.hero {
  margin-bottom: 2.5rem;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 8vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.brand-logo {
  max-width: 100%;
  height: auto;
  max-width: clamp(240px, 60vw, 400px);
}

.word--morning {
  color: var(--red);
}

.word--person {
  color: var(--yellow);
  /* text shadow so yellow is legible on cream */
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.08);
}

.word--granola {
  color: var(--blue);
}

.tagline {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.divider {
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.6em;
  margin-bottom: 1.5rem;
}

.coming-soon {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--bg);
  background-color: var(--red);
  padding: 0.4rem 1.6rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

/* --- Socials --- */

.socials {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-subtle);
  color: var(--text);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.socials a:hover,
.socials a:focus-visible {
  background-color: var(--blue);
  color: var(--bg);
  transform: scale(1.1);
}

.socials a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.socials svg {
  width: 20px;
  height: 20px;
}

/* --- Footer --- */

.footer {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.footer .tm {
  font-size: 0.7rem;
}

/* --- Responsive --- */

@media (max-width: 480px) {
  .container {
    padding: 2rem 1rem;
  }

  .socials {
    gap: 1rem;
  }
}
