/* Smuuthie Studio — shared brand styles */

@font-face {
  font-family: "Sunny Spells";
  src: url("../fonts/SunnySpells.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #fdf5e6;
  --cream-deep: #fff9e6;
  --peach: #f5d4b8;
  --coral: #f88379;
  --coral-dark: #e86a5f;
  --strawberry: #e94e77;
  --orange: #ff9f1c;
  --smoothie-top: #f06292;
  --smoothie-bottom: #ffb74d;
  --ink: #2d2420;
  --ink-muted: #5c534e;
  --white: #ffffff;
  --outline: #1f1a18;
  --shadow: rgba(45, 36, 32, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --font-display: "Sunny Spells", "Luckiest Guy", cursive;
  --font-body: "Nunito", "Segoe UI", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

a {
  color: var(--coral-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--strawberry);
}

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

.font-display {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(248, 131, 121, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(255, 159, 28, 0.14), transparent 55%),
    var(--cream);
}

.page-bg__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("../patterns/bubble-bg.svg");
  background-size: 320px 320px;
}

.container {
  width: min(1080px, calc(100% - 2rem));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border: 3px solid var(--outline);
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-decoration: none;
  box-shadow: 0 4px 0 var(--outline), 0 8px 20px var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--outline), 0 12px 24px var(--shadow);
}

.btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--outline), 0 4px 12px var(--shadow);
}

.btn--ghost {
  background: var(--white);
  color: var(--ink);
}

.btn--ghost:hover {
  color: var(--coral-dark);
}

.card {
  background: var(--white);
  border: 3px solid var(--outline);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 0 var(--outline), 0 16px 40px var(--shadow);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 2px solid var(--outline);
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--smoothie-top), var(--smoothie-bottom));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}
