/* ================================
   Blog Goofy Global Theme Styles
   ================================ */

:root {
  --bg-blue: #005fe6;
  --bg-blue-dark: #061b3a;
  --bg-yellow: #ffb51f;
  --bg-orange: #ff6b2c;
  --bg-red: #ef3f2f;
  --bg-paper: #fff8e8;
  --bg-white: #ffffff;
  --bg-ink: #081527;
  --bg-muted: #5f6b7a;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-soft: 0 10px 30px rgba(8, 21, 39, 0.10);
  --shadow-bold: 0 16px 45px rgba(8, 21, 39, 0.18);

  --container: 1200px;
}

/* Reset-ish */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-paper);
  color: var(--bg-ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

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

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

a:hover {
  color: var(--bg-orange);
}

.site-container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute;
  left: -9999px;
}

.button,
.wp-block-button__link {
  display: inline-block;
  background: var(--bg-red);
  color: var(--bg-white);
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}

.button:hover,
.wp-block-button__link:hover {
  background: var(--bg-orange);
  color: var(--bg-white);
}

main {
  min-height: 60vh;
}

.section-padding {
  padding: 3rem 0;
}