:root {
  --primary-base: #0e0e10;
  --primary-shade: #0f1e3e;
  --primary-tint: #3E7CB1;
  --secondary-base: #2A6EBB;
  --secondary-shade: #184d89;
  --header-color: #423d3d;
  --tertiary: #FBB13C;
  --tertiary-shade: #e29f32;
  --tertiary-shade-light: #f0e3ce;
  --white: #fff;
  --card: #f3f3f3;
  --menu-items: #0c0863;
  --background: #fff;
  --text-dark: #1a1a1a;
}

/* ---------- Reset / Global ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body.hidden-scrolling {
  overflow-y: hidden;
}

body {
  background-color: var(--background);
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.75rem; font-weight: 600; }
h4 { font-size: 1.5rem; font-weight: 500; }

p, li, blockquote { line-height: 1.6; margin-bottom: 1rem; }
a, small { line-height: 1.6; }

p { font-size: 1rem; font-weight: 400; }
a {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.text-small {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}

.bold {
  font-weight: 500;
  margin-bottom: 0.5rem;
}


ul, ol { padding-left: 1.5rem; }
nav ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 25px;
  background: var(--tertiary);
  cursor: pointer;
  transition: color 0.3s ease-out, box-shadow 0.3s ease-out;
}

.btn:hover {
  color: var(--white);
  box-shadow: inset 0 -100px 0 0 var(--tertiary-shade);
}

.btn:focus-visible {
  outline: 3px solid var(--primary-tint);
  outline-offset: 2px;
}

/* ---------- Sections / Layout ---------- */
section { margin: 3rem 0; }

.section-header {
  text-align: center;
  color: var(--header-color);
  padding: 1rem;
  border-bottom: 2px solid var(--tertiary);
  margin-bottom: 2rem;
}

.container {
  margin: 0 auto;
  max-width: 1300px;
  width: 90%;
}

.coming-soon {
  width: 100%;
  max-width: 1200px;
}


button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ---------- Utility Classes ---------- */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }


/* This is a temporary table style
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
  text-align: left;
}

th, td {
  border: 1px solid #ccc;
  padding: 10px 12px;
}

th {
  background-color: #f5f5f5;
  font-weight: 600;
}

tr:nth-child(even) {
  background-color: #fafafa;
}

tr:hover {
  background-color: #f1f1f1;
}*/

