@import url("https://fonts.googleapis.com/css2?family=Baloo+2&display=swap");

:root {
  /* Official brand identity colors for Cub Scouts */
  --csa-pri-col: #003F87;
  --csa-acc-col: #FCD116;
  --nes-pri-col: #000066;
  --ico-pri-col: #CA1A00;
}

.blu-container {
  display: grid; 
  grid-template-columns: 32% 32% 32%;
  justify-content: space-between;
}

.blu-card {
  width: inherit;
}

.blu-title {
  text-align: center;
  font-weight: bold;
}

.cal-container {
  display: grid; 
  grid-template-columns: 60% 40%;
}

.cal-h {
  height: inherit
}

.cal-bs {
  border: 0px;
}

.card-text span{
  font-weight: bold;
}

.card-text p{
  padding-left: 5px;
}

.highlight-carousel {
  overflow: hidden;
  border-radius: 6px;
}

.highlight-img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.highlight-caption {
  margin: 0.75rem 0 0;
  padding: 0.75rem 1rem;
  border-left: 4px solid var(--csa-acc-col);
  border-radius: 6px;
  background-color: #f8f9fa;
  color: var(--csa-pri-col);
}

.highlight-caption blockquote {
  margin: 0;
  font-style: italic;
  line-height: 1.35;
}

.highlight-empty {
  margin-bottom: 0;
  text-align: center;
}

.pack-header-img {
  max-height: 60px;
}

.pack-focus {
  height: 100%;
}

.pack-leaders {
  flex-direction:row;
}

.pack-den-img {
  max-height: 60px;
}

.nav-pointer {
  cursor: pointer;
}

.nav-leader {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 991.98px) {   /* matches navbar-expand-lg breakpoint */
  body {
    font-size: 1.25rem;
    line-height: 1.45;
  }

  .navbar .navbar-nav .nav-link {
    font-size: 2.25rem;
  }

  .pack-header-img {
    max-height: 110px;
  }

  .blu-container {
    flex-direction: column;
    gap: 1rem;
  }

  .pack-den-img{
    max-height: 80px;
  }

  .pack-focus{
    display:flex;
    font-size: 1.35rem;
    line-height: 1.45;
  }

  .pack-leaders {
    flex-direction: column;
  }
  
  h5 {
    font-size: 2rem;
  }

  .container {
    max-width: 100%;
  }
}

.den-icons {
    min-width: 60px;
    align-items: baseline;
}

.pack-footer {
  position: absolute;
  width: 100%;
  bottom: 0;
}

body {
	font-family: "Baloo 2", cursive;
	font-size: 16px;
	background-color: midnightblue;
}

blockquote {
  margin: 0;
}

figure {
  margin: 1rem;
  background: whitesmoke;
  padding: 5px;
  text-align: center;
  height: -webkit-fill-available;
}