@import './typography.css';
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

/* New "Coastal Breeze" Light Theme */
:root {
  --color-border: #cdd9d7;      /* Light Grayish Cyan */
  --color-text-primary: #2c3e50; /* Dark Slate Blue */
  --color-text-secondary: #34495e;/* Wet Asphalt */
  --color-subtitle: #7f8c8d;    /* Grayish Cyan */
  --color-meta: #95a5a6;        /* Light Grayish Cyan */
  --color-bg: #f4f7f6;          /* Very Light Cool Gray */
  --color-bg-secondary: #e8eeed;/* Light Cyan-Gray */
  --color-bg-hover: #dce7e5;    /* Muted Cyan-Gray on Hover */
  --rounded: .4rem;      /* For outer rounding of components */
  --rounded-in: .25rem;   /* For inner/smaller element rounding */
}

* {
  box-sizing: border-box;
  border: none;
  padding: 0;
  margin: 0;
  /* Updated font to Lato, a clean sans-serif */
  font-family: 'Lato', sans-serif;
}

body {
  background-color: var(--color-bg);
  /* A clean, subtle texture to match the new theme */
  background-image: url('https://www.transparenttextures.com/patterns/light-wool.png');
  background-repeat: repeat;
  background-size: auto;
  color: var(--color-text-primary);
}
