@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --royal-blue: #002147;
  --gold-accent: #c5a059;
  --paper-white: #fcfbf9;
  --text-dark: #1a1a1a;
  --text-grey: #555;
  --border-light: rgba(0, 0, 0, 0.08);
  --success: #0f8b6d;
  --danger: #c62828;
  --shadow-soft: 0 12px 30px rgba(0, 33, 71, 0.08);
  --font-heading: 'Merriweather', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  background: var(--paper-white);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.6;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.hidden {
  display: none !important;
}

.notice {
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.9rem;
}

.notice.success {
  background: rgba(15, 139, 109, 0.1);
  color: var(--success);
}

.notice.error {
  background: rgba(198, 40, 40, 0.1);
  color: var(--danger);
}
