/* QuickTech School Design System */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');
/* TT Interphases Mono should be loaded locally or via specific provider, assuming standard fallback here */

:root {
  /* Brand Colors - Light Theme (Default) */
  --bg: #ffffff;
  --text: #0724A5;         /* deep heading color */
  --primary: #3255F1;      /* primary button */
  --primary-2: #617CF8;    /* secondary accent */
  --accent-success: #AFEE6D;
  --accent-warn: #F89161;
  --muted: #61C8F8;
  
  /* Font Families */
  --font-title: 'TT Interphases Mono', 'Courier New', monospace;
  --font-subtitle: 'Raleway', sans-serif; /* Bold */
  --font-body: 'Raleway', sans-serif; /* Regular */
}

.dark-theme {
  /* Brand Colors - Dark Theme */
  --bg: #0724A5;
  --text: #ffffff;
  --primary: #617CF8;
  --primary-2: #3255F1;
  --accent-success: #AFEE6D;
  --accent-warn: #F89161;
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  transition: background-color 0.3s, color 0.3s;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: normal;
}

h2 {
  font-family: var(--font-subtitle);
  font-weight: 700;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-2);
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--primary-2);
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
