/*
 * CherDan Chocolates
 * Home page
 */


/* ---------------------------------------------------------
   General images
   --------------------------------------------------------- */

img{
  max-width: 100%;
  height: auto;
}


/* ---------------------------------------------------------
   Brand header / logo
   --------------------------------------------------------- */

.cdc-header{
  padding: 2.5rem 0 2rem;

  border-bottom:
    1px solid rgba(200, 164, 106, .35);

  background:
    rgba(255, 255, 255, .25);
}

.cdc-header__inner{
  display: flex;

  justify-content: center;
  align-items: center;
}

.cdc-header__logo-link{
  display: inline-block;
}

.cdc-header__logo{
  width: 100%;
  max-width: 760px;

  height: auto;
}


/* ---------------------------------------------------------
   Home page sections
   --------------------------------------------------------- */

.cdc-home-section{
  padding: 4rem 0;
}

.cdc-home-kicker{
  color: var(--cdc-muted);

  font-size: .75rem;
  font-weight: 700;

  letter-spacing: .12em;
  text-transform: uppercase;
}


/* ---------------------------------------------------------
   Latest from CherDan
   --------------------------------------------------------- */

.cdc-latest{
  background:
    rgba(200, 164, 106, .08);
}

.cdc-latest-content{
  max-width: 760px;

  line-height: 1.8;
}

.cdc-latest-card{
  max-width: 900px;

  padding: 2rem 2.25rem;

  border-left:
    4px solid var(--cdc-gold);

  border-radius: 14px;

  background:
    rgba(255, 255, 255, .40);

  line-height: 1.8;
}

.cdc-latest-card a{
  color: var(--cdc-choco);

  text-decoration-color: var(--cdc-gold);
  text-underline-offset: .2rem;
}

.cdc-latest-card a:hover,
.cdc-latest-card a:focus{
  color: var(--cdc-ink);

  text-decoration-thickness: 2px;
}

.cdc-latest-highlight{
  color: var(--cdc-choco);

  font-family: var(--cdc-font);
  font-size: 1.2rem;
  font-weight: 700;
}


/* ---------------------------------------------------------
   Discover our collection
   --------------------------------------------------------- */

.cdc-collection-cta{
  max-width: 760px;
}

.cdc-collection-intro{
  max-width: 620px;

  color: var(--cdc-muted);

  line-height: 1.7;
}

.cdc-heading-link{
  color: var(--cdc-choco);

  text-decoration: none;
}

.cdc-heading-link:hover,
.cdc-heading-link:focus{
  color: var(--cdc-ink);

  text-decoration: underline;
  text-decoration-color: var(--cdc-gold);
  text-decoration-thickness: 2px;
  text-underline-offset: .18em;
}


/* ---------------------------------------------------------
   Upcoming events / locations
   --------------------------------------------------------- */

.cdc-events-section{
  padding: 4.5rem 0;
}

.cdc-events-card{
  max-width: 1000px;

  margin: 0 auto;

  padding: 3rem 2.5rem;

  border-top:
    2px solid rgba(200, 164, 106, .65);

  border-bottom:
    2px solid rgba(200, 164, 106, .65);
}


/* ---------------------------------------------------------
   Quote band
   --------------------------------------------------------- */

.cdc-quote-band{
  position: relative;

  max-width: 1200px;

  margin: 1rem auto 4rem;

  overflow: hidden;

  border-radius: 18px;
}

.cdc-quote-bg{
  display: block;

  width: 100%;
  height: auto;
}

.cdc-quote-overlay{
  position: absolute;

  inset: 0;

  display: grid;
  place-items: center;

  padding: 3rem 0;

  background:
    rgba(0, 0, 0, .55);
}

.cdc-quote-content{
  max-width: 860px;
}


/* ---------------------------------------------------------
   Future reference:
   Former "Meet us in person" image styling
   --------------------------------------------------------- */

/*
.cdc-market-img{
  width: 100%;
  max-width: 720px;

  height: auto;
}
*/


/* ---------------------------------------------------------
   Mobile
   --------------------------------------------------------- */

@media (max-width: 767.98px){

  .cdc-header{
    padding: 1.75rem 0 1.5rem;
  }

  .cdc-header__logo{
    max-width: 580px;
  }

  .cdc-home-section{
    padding: 3rem 0;
  }

  .cdc-latest-card{
    padding: 1.5rem;
  }

  .cdc-events-card{
    padding: 1.75rem 1rem;
  }

  .cdc-quote-band{
    margin-bottom: 3rem;

    border-radius: 0;
  }

}


/* ---------------------------------------------------------
   Small phones
   --------------------------------------------------------- */

@media (max-width: 575.98px){

  .cdc-header__logo{
    max-width: 440px;
  }

  .cdc-quote-overlay{
    padding: 1.5rem 1rem;
  }

  .cdc-quote-overlay .lead{
    font-size: 1rem;
  }

}
