:root {
  --cassiopeia-color-primary: #228B22; 
  --cassiopeia-color-hover: #006400;   
  --cassiopeia-color-link: #2c5fab;   
  
  /* Your MSOI Custom Club Colors */
  --msoi-yellow: #f0f70c;
  --msoi-green: #1f7a1f;
}

/* Force the logo and text to sit side-by-side */
.navbar-brand {
    display: flex !important;
    flex-direction: row !important; /* Forces side-by-side */
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

/* Since you are using the Tagline as your main title, 
   we boost its size and color here */
.navbar-brand .site-description {
    display: block;
    font-size: 3rem;       /* Makes it large like a title */
    font-weight: bold;     /* Makes it thick */
    color: var(--msoi-yellow);
    line-height: 1;        /* Prevents extra spacing */
    margin: 0;             /* Removes default jumping */
}

.navbar-brand img {
    width: 140px; /* Adjust this number to whatever looks best */
    height: auto; /* This keeps the image from looking squashed */
}

h1, h2, h3, h4 {
    color: var(--msoi-green);
    font-weight: bold;
}


/* This changes the header background if you are using the 'static' layout */
.container-header {
    background-color: var(--msoi-green);
    background-image: none;
}