/*------------------------------------------------------------------
hero_band.css
Last edited: 4/2/25
[Table of contents]

100. MEDIA QUERIES
    100a. EXTRA SMALL DEVICES (phones 576px and up)
    100b. SMALL DEVICES (tablets, 768px and up)
    100c. MEDIUM DEVICES (desktops, 992px and up)
    100d. LARGE DEVICES (large desktops, 1200px and up)
    100e. EXTRA LARGE DEVICES (large desktops, 1450px and up)

[Notes]

PHP file: inc/banded_content/hero_band.php
-------------------------------------------------------------------*/

.band-hero {
  overflow: hidden;
  position: relative;
}
.band-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  z-index: 1;
}
.band-hero .tint {
  align-items: center;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  position: relative;
  z-index: 2;
  height: 500px;
}
.band-hero .hero-text {
  text-align: center;
}
.band-hero h1,
.band-hero h2 {
  color: var(--theme-color-light);
  font-size: 40px;
  line-height: 1em;
  margin-bottom: 0.4em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
}
.band-hero h2.subhead,
.band-hero h3.subhead,
.band-hero p {
  color: var(--theme-color-light);
	font-size: 23px;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 0.9em;
  text-transform: none;
}

/*------------------------------------------------------------------
100. MEDIA QUERIES
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
100a. EXTRA SMALL DEVICES (phones 576px and up)
-------------------------------------------------------------------*/
@media (min-width: 576px) {
}
/*------------------------------------------------------------------
100b. SMALL DEVICES (tablets, 768px and up)
-------------------------------------------------------------------*/
@media (min-width: 768px) {
  .band-hero .tint {
    height: 400px;
  }
  .band-hero h1,
  .band-hero h2 {
    font-size: 60px;
  }
  .band-hero h2.subhead,
  .band-hero h3.subhead,
  .band-hero p {
    font-size: 26px;
  }
}
/*------------------------------------------------------------------
100c. MEDIUM DEVICES (desktops, 992px and up)
-------------------------------------------------------------------*/
@media (min-width: 992px) {
  .band-hero .tint {
    height: 450px;
  }
}
/*------------------------------------------------------------------
100d. LARGE DEVICES (large desktops, 1200px and up)
-------------------------------------------------------------------*/
@media (min-width: 1200px) {
  .band-hero .tint {
    height: 500px;
  }
}
/*------------------------------------------------------------------
100e. EXTRA LARGE DEVICES (large desktops, 1450px and up)
-------------------------------------------------------------------*/
@media screen and (min-width: 1450px) {
}
