/* Global styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #E1F5FF; /* Light Cyan default */
}

/* Landing page banner */
body.landing {
  background: none; /* no global background */
}

body.landing::before {
  content: "";
  display: block;
  width: 100%;
  height: 50vh; /* half the window height */
  background-image: url('assets/Images/cssbluegreenflowers.jpg'); /* replace with your image path */
  background-size: cover;   /* stretch across full width */
  background-repeat: no-repeat;
  background-position: center;
}

/* Sidebar */
.sidebar {
  width: 220px;
  float: left;
  background-color: #0064FA; /* Brandeis Blue */
  color: white;
  height: 100vh;
  padding: 20px;
}

.sidebar .site-title a {
  font-size: 1.8em;
  font-weight: 600;
  text-decoration: none;
  color: white;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin: 10px 0;
}

/* Dot or dash before each link */
.sidebar li::before {
  content: "• "; /* change to "-" if you prefer dashes */
  color: #5AA55A; /* Pastel Green accent */
  font-weight: bold;
}

.sidebar a {
  color: #91BEFF; /* Jordy Blue links */
  text-decoration: none;
}

.sidebar a:hover {
  color: #5AA55A; /* Pastel Green hover */
}

/* Main content */
.main-content {
  margin-left: 240px;
  padding: 20px;
  min-height: 100vh;
  background-color: #E1F5FF; /* Light Cyan */
}

h1, h2, h3 {
  color: #0064FA; /* Brandeis Blue headings */
}
