/* 
  New Pico Theme CSS
  Site Title: Solo Solutions, LLC
  Primary Brand Color: Bright Orange (#F36C21)
  Footer is removed, and header is customized to display the logo and title.
*/

/* Basic Layout */
#main {
  flex: 1 0 auto;
  padding: 5em 0 4em;
}

#header, #footer {
  flex: 0 0 auto;
}

/* Container */
.container {
  max-width: 48em;
  padding: 0 0.5em;
  margin: 0 auto;
}
.widescreen .container {
  max-width: 72em;
}

/* Remove footer entirely */
#footer {
  display: none;
}

/* Customized Header */
#header {
  background: #F36C21;  /* Use your logo's bright orange */
  display: flex;
  align-items: center;
  padding: 1em;
}

/* Logo Styling */
#logo {
  margin-right: 1em;
}
#logo img {
  max-height: 80px; /* Adjust as needed for your logo size */
  display: block;
}

/* Site Title Styling */
#title {
  font-family: 'Droid Sans', 'Helvetica', 'Arial', sans-serif;
  color: #000; /* Black for strong contrast */
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

/* Navigation Styling */
#nav {
  margin-left: auto;
  padding: 1em;
}
#nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#nav ul li {
  display: inline-block;
  margin-left: 1em;
}
#nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease-in;
}
#nav a:hover {
  color: #000;
}

/* Typography */
body {
  font-family: 'Droid Sans', 'Helvetica', 'Arial', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* Images */
img {
  max-width: 100%;
}

/* Utility Classes */
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}

