/*------------------------------------------------------------------
hero_band.css
Last edited: 7/19/24
[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: #ffffff;
  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: #fff;
	font-size: 23px;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 0.9em;
  text-transform: none;
}

/* Text Under Image Variation */
.band-hero.text-under {
  padding-bottom: 25px;
}
.band-hero.text-under img {
  height: 300px;
  margin: 0 0 30px;
  position: relative;
}
.band-hero.text-under .hero-text {
  text-align: left;
}
.band-hero.text-under h1, 
.band-hero.text-under h2 {
  color: #333;
  margin: 0;
  text-shadow: none;
  text-transform: none;
}
.hero.hero-small h1 {
  text-align: center;
}

.hero.hero-small h1:last-child {
  margin-bottom: 0;

}


/*------------------------------------------------------------------
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;
  }

/* Text Under Image Variation */
.band-hero.text-under {
  padding-bottom: 50px;
}
.band-hero.text-under h1,
.band-hero.text-under h2 {
  font-size: 40px;
}
}
/*------------------------------------------------------------------
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) {
}
