:root {
  --primary-color: #2C3E50;
  --accent-color: #2980B9;
  --light-bg: grey;
  --text-dark: #2c3e50;
  --text-light: #ecf0f1;
  --highlight-color: #5A4FCF;
  --soft-accent: #C4D8E2;
  --gold-accent: #F4D35E;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
}

header {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 0;
  border-bottom: 4px solid var(--highlight-color);
  position: sticky;         /* <--- makes it stick */
  top: 0;                   /* sticks to the top of the viewport */
  z-index: 1000;            /* ensures it stays above other elements */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*max-width: 1200px;*/
  flex-wrap:wrap;
  padding: 0 20px;
}

/*.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-light);
  padding: 10px 0;
} */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-light);
  text-decoration: none;
}

.logo:hover {
  opacity: 0.9;
}

.logo-image {
  height: 40px;
  width: auto;
}

/* Make sure it doesn't disappear */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 10px;
  }

  .logo {
    margin-bottom: 10px;
  }
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--highlight-color);
}

main {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  background-color: var(--primary-color);
  color: var(--text-light);
}

footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-top: 4px solid var(--highlight-color);
}

footer a {
  color: var(--gold-accent);
  text-decoration: none;
}

.card {
  background-color: white;
  border-left: 5px solid var(--highlight-color);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 30px;
  margin-bottom: 30px;
  color: var(--text-dark);
}



.card2 {
	background-color:white;
	border-left: 5px solid var(--highlight-color);
  	border-radius: 10px;
  	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	padding: 2px;
  	margin-bottom: 2px;
  	color: var(--text-dark);
}

link {
	color: #C4D8E2;
}