.header-bg {
  background-image: url('../assets/oreg_tolgy_blurred.png');
  background-position: center;
  background-size: cover;
  min-height: 600px;
}

.f-wedding {
  font-family: 'Scriptina', sans-serif;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}

.f-wedding-long {
  font-family: 'Cormorant Garamond', serif;
  font-size: x-large;
}

.location-list {
  list-style: none;
}

.location-list li::before {
  content: "\25C6";
  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: rgb(33, 83, 48);
  /* Change the color */
  font-weight: bold;
  font-size: initial;
  /* If you want it to be bold */
  display: inline-block;
  /* Needed to add space between the bullet and the text */
  width: 1.5em;
  /* Also needed for space (tweak if needed) */
  margin-left: -1em;
  /* Also needed for space (tweak if needed) */
}

.color-wedding {
  color: rgb(250, 235, 215);
}

.fs-0 {
  font-size: 5rem;
}


/* FAQ */

.question-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0.5rem 0;
  font-size: xx-large;
}

.question {
  color: var(--very-dark-grayish-blue);
  padding-top: 0.5rem;
}

.question:hover {
  color: var(--soft-red);
  cursor: pointer;
}

.bold {
  font-weight: 700;
}

/* Hover images */

.hover-title {
  display: inline;
  pointer-events: auto;
  cursor: pointer;
}

body:not(.mobile) .hover-title:hover+.hover-image {
  visibility: visible;
  pointer-events: none;
}

.hover-image {
  visibility: hidden;
  display: flex;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  pointer-events: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* Change width and height to scale images */
  width: 45vw;
  height: 45vh;
}

/* hide on mobile */
@media screen and (max-width: 600px) {
  .hover-image {
    visibility: hidden;
    clear: both;
    float: left;
    margin: 10px auto 5px 20px;
    width: 28%;
    display: none;
  }
}

.hover-image img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  margin-bottom: 0;
}

/* Timeline */

/* programs section
==================================================*/

#programs {
  background: #f3f3f3
}

#programs h4 {
  color: rgb(33, 83, 48);
}

.programs-row {
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

.programs-row h3 {
  font-family: 'Lato', sans-serif;
  text-transform: capitalize;
  letter-spacing: 2px;
  color: rgb(33, 83, 48);
  font-size: 16px;
  font-weight: bold
}

.programs-row p {
  color: #888;
  margin-top: 20px;
  font-size: 15px;
}

.programs-row .date {
  color: #000;
  font-size: 17px;
}

.timeline {
  padding-left: 0;
  list-style: none;
  position: relative;
}

.timeline:before {
  background-color: black;
  content: '';
  margin-left: -1px;
  position: absolute;
  top: 0;
  left: 2em;
  width: 2px;
  height: 100%;
}

.timeline-event {
  position: relative;
}

.timeline-event:hover .timeline-event-icon {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: rgb(33, 83, 48);
}

.timeline-event:hover .timeline-event-thumbnail {
  box-shadow: inset 40em 0 0 0 rgb(33, 83, 48);
}

.timeline-event-copy {
  padding: 0.5em 2em 2em 2em;
  position: relative;
  top: -1.5em;
  left: 2em;
  width: 100%;
}

.timeline-event-copy h3 {
  font-size: 1.75em;
}

.timeline-event-copy h4 {
  font-size: 1.2em;
  margin-bottom: 1.2em;
}

.timeline-event-copy strong {
  font-weight: 700;
}

.timeline-event-copy p:not(.timeline-event-thumbnail) {
  padding-bottom: 1.2em;
}

.timeline-event-icon {
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: rgb(33, 83, 48);
  outline: 10px solid #f3f3f3;
  display: block;
  margin: 0.5em 0.5em 0.5em -0.5em;
  position: absolute;
  top: 0;
  left: 2em;
  width: 1em;
  height: 1em;
}

.timeline-event-thumbnail {
  -moz-transition: box-shadow 0.5s ease-in 0.1s;
  -o-transition: box-shadow 0.5s ease-in 0.1s;
  -webkit-transition: box-shadow 0.5s ease-in;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition: box-shadow 0.5s ease-in 0.1s;
  transition: box-shadow 0.5s ease-in 0.1s;
  color: white;
  font-size: 12px;
  font-weight: bold;
  background-color: black;
  box-shadow: inset 0 0 0 0em rgb(33, 83, 48);
  display: inline-block;
  margin-bottom: 1.2em;
  padding: 0.25em 1em 0.2em 1em;
}