/* Brand styling matching helloambient.com (Dreamie store). */

/* Display font used by the store for headings; same asset the store loads. */
@font-face {
  font-family: Overusedgrotesk;
  src: url(https://cdn.prod.website-files.com/677a8c62ce3ce0fbac4adead/679803c216a911d14b9d7283_OverusedGroteskRoman-VF.ttf) format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Sunrise gradient from the Dreamie logo. */
  --dreamie-sunrise: linear-gradient(90deg, #72a2ff, #f6e681, #f2a74b, #d93b24);
  --dreamie-accent: #d93b24;
  --md-accent-fg-color: var(--dreamie-accent);
  --md-typeset-a-color: var(--dreamie-accent);
}

/* Logo-only header like the store navbar. */
.md-header__topic,
.md-header__title {
  display: none;
}

/* Material hides the logo on narrow screens; the store always shows it. */
.md-header__button.md-logo {
  display: block;
}

.md-header__button.md-logo img {
  height: 2.2rem;
  width: auto;
}

/* Store link (cart icon): icon-only like the store header, on all widths.
   Material only shows the source slot on wide screens by default. The auto
   margin pushes search + cart to the right edge (the hidden title no longer
   fills the middle). */
.md-search {
  margin-left: auto;
}

.md-header__source {
  display: block;
  width: auto;
  max-width: none;
  margin-left: 0;
}

.md-header__source .md-source__icon {
  width: 2.4rem;
}

.md-header__source .md-source__icon svg {
  height: 1.1rem;
  width: 1.1rem;
}

/* Sunrise strip under the header. */
.md-header::after {
  content: "";
  display: block;
  height: 0.15rem;
  background: var(--dreamie-sunrise);
}

.md-typeset h1,
.md-typeset h2,
.md-typeset h3,
.md-typeset h4 {
  font-family: Overusedgrotesk, Assistant, sans-serif;
  font-weight: 650;
  color: #121212;
}

/* PR-preview announcement bar. */
.md-banner {
  background: var(--dreamie-sunrise);
  color: #121212;
  font-weight: 600;
}

/* Footer bottom like the store: black, copyright/trademark text on the
   left, policy links on the right. */
.md-footer-meta {
  background: #000;
}

.md-copyright {
  width: 100%;
  max-width: 100%;
  color: #fff;
}

.md-copyright__highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: inherit;
}

.dreamie-footer-links {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
}

.dreamie-footer-links a,
.dreamie-footer-links a:visited {
  color: #fff;
}

.dreamie-footer-links a:hover {
  color: var(--dreamie-accent);
}
