@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Chatizard colour palette */
  --color-indigo: #3a4a9f;
  --color-aqua-blue: #6dcff6;
  --color-yellow: #fef200;
  --color-light-yellow: #c9c23b;
  --color-pink: #e50489;
  --color-light-pink: #f444ab;

  /* Chatizard Typography */
  --font-primary: 'Arial', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
}

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

html, body {
  height: 100%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #ffffff;
  background-color: #000000;
  border: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

.content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Header styling */
header {
  background: linear-gradient(90deg, rgb(13, 13, 13) 0%, rgb(65, 65, 65) 50%, rgb(13, 13, 13) 100%);
  padding: 15px 20px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  line-height: 1;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 10px;
}

.company-name {
  font-size: 1.5em;
  font-weight: bold;
  color: #ffffff;
  line-height: 1; 
  position: relative;
  top: 10px;
  margin: 0 8px 14px 0;
}


.logo {
  height: 50px;
  width: auto;
  vertical-align: middle; 
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: var(--color-pink);
}

/* Main content should have a top margin to account for the fixed header */
.main-container {
  border: 0;
  outline: 0;
  flex: 1;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 50px;
}

main {
  flex: 1;
  padding: 60px 20px 20px;
  margin-top: 60px; /* Height of the header */
  background-color: #000000;
}

footer {
  background: linear-gradient(90deg, rgb(13, 13, 13) 0%, rgb(65, 65, 65) 50%, rgb(13, 13, 13) 100%);
  padding: 15px 20px;
  text-align: center;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer ul li {
  display: inline;
  margin: 0 10px;
}

footer ul li a {
  text-decoration: none;
  color: #b3b3b3;
}

footer ul li a:hover {
  text-decoration: underline;
}


/* Utility */
.separator {
  width: 90%;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-top: 1px solid transparent;
  border-image-slice: 1;
  border-image-source: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.5) 0%, rgba(252, 70, 107, 0) 100%);
}