/* === Base === */
.homepage {
  font-family: "Segoe UI", Roboto, sans-serif;
  color: #1B1F23;
  margin: 0;
  padding: 0;
}

/* === Hero Section (Full Width) === */
.hero {
  text-align: center;
  padding: 2rem 1rem 2rem;
  background: linear-gradient(135deg, #E0F7FA, #B2EBF2);
  border-radius: 0;
  /* no rounded edges for full-width look */
  margin: 0;
}

.hero-divider {
  background: #B2EBF2;
  border: none;
  margin: 0.5rem auto 1.5rem;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0097A7;
  /* deep cyan */
  margin-bottom: 0.3rem;
}

.hero h1 span {
  color: #00BCD4;
  /* bright cyan accent */
}

.hero .subtitle {
  font-size: 1.2rem;
  color: #006064;
  /* dark cyan */
  margin-bottom: 1rem;
}

.hero .intro {
  font-size: 1.05rem;
  color: #004D40;
  /* teal for body text */
  margin: 0 auto 2rem;
}

/* === Core Values (Full Width) === */
.values {
  background: #FFFFFF;
  margin: 0;
}

/* Alternating light shading for values section */
.values .value:nth-child(odd) {
  background-color: #FAFAFA;
  /* very light grey for contrast */
}

.values .value:nth-child(even) {
  background-color: #FFFFFF;
  /* keep even ones white */
}

.value {
  max-width: none;
  /* allow background to fill width */
  text-align: center;
  padding-left: 8px;
  padding-right: 8px;
}

.value h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0097A7;
  /* margin-bottom: 0.4rem; */
  margin-top: 0;
  padding-top: 1.5rem;
}

.value p {
  font-size: 1rem;
  color: #37474F;
  padding-bottom: 1rem;
  /* neutral dark grey */
}

@media screen and (min-width: 76.25em) {
  .md-nav__back {
    display: none;
  }

  #browse-top-picks-button {
    display: none;
  }
}

/* === Affiliate Disclosure (Full Width) === */
.disclosure {
  background: #FAFAFA;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  color: #757575;
  /* margin-top: 2rem; */
  text-align: center;
}

/* === Stay Connected (Full Width) === */
.connect {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #E0F7FA;
  /* soft cyan */
  margin: 0;
}

.connect h2 {
  margin-top: 0;
}


/* Custom CSS to resize the logo in the navigation bar */
.md-header__button.md-logo img {
  height: 1.3rem;
  /* Adjust this value to your desired height */
}

/* Optional: Adjust the size of the sidebar logo as well */
.md-sidebar--primary .md-logo img {
  height: 2.7rem !important;
}