/*
 * Globals
 */

.main-color {
  color: #da932d;
}

.main-color-background {
  background-color: #da932d;
}

#cover-container {
  height: 91vh;
}
#cover-container .cover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-image: url('../img/pexels-matthiaszomer-339620.jpg')
}
#cover-container .cover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.842);
  pointer-events: none; /* Allow clicks to pass through to the content */
  opacity: 0.9; /* Adjust opacity for the overlay */
}

#cover-container .cover-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 1;
}

.cover-content h1 {
  margin-bottom: 3vh;
}

.cover-content .call-to-action {
  margin-top: 3vh;
}
#main-container {
  padding: 0 !important;
}


/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
}

/*
 * Header
 */
 header {
  z-index: 100 !important;
}

.nav-masthead .nav-link {
  padding: .25rem 0;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  background-color: transparent;
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}

/*
 * Cover
 */
.cover-container {
  max-width: 42em;
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}

section {
  padding: 2rem 0;
}

section.dark {
  background-color: #f2f2f2;
}

.section-divider {
  border: solid rgba(0, 0, 0, .15);
  border-width: 1px 0 0 0;
}
