*{
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    color: #222;
}
html, body{
    margin: 0;
    height: 100vh;
    text-align: center;
    background-color: #f5f5f5;
}
.button{
	background-color: #e6c9a8;
  border: none;
  color: #2c1810;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 8px;
}

.button:hover {
  background-color: #d4b483;
}

.header{
    background-image: url(./img/background-image.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: scroll;
    background-size: cover;
    height: 40vh;
    margin: 0;
    padding-top: 60vh;
}
.heading {
    color: #ffffff;
    display: block;
    font-family: "Bodoni Moda", serif;
    font-size: 6em;
    font-weight: 400;
	font-style: normal;
    text-shadow: 0 0 10px #000;
}
.heading-subtext{
    color: #fff;
    display: block;
    font-family: "Quicksand", sans-serif;
    font-size: .6em;
}
.fixed-button{
    background: rgba(20,20,20,.5);
    border-radius: 1em;
    bottom: 1em;
    color: white;
    font-weight: bold;
    padding: 1em;
    position: fixed;
    right: 1em;
    text-decoration: none;
    z-index: 9999;
}
.fixed-button::after{
    content: "\25BE";
    display: block;
    font-size: 28px;
    line-height: 0;
    margin-bottom: 6px;
    margin-top: 10px;
    text-align: center;
}
.fixed-button:active,
.fixed-button:hover{
    background: rgba(20,20,20,.9);
}
.section{
    margin: 0 auto;
    max-width: 600px;
    padding: 1em 2.4em;
}
.sub-heading{
    font-family: "Bodoni Moda", serif;
    font-size: 2em;
    margin-top: 0.25em;
}
.details{
    margin: 0 auto 8em;
}
.details-heading{
    font-weight: bold;
    text-transform: uppercase;
}
.fas {
    font-size: 3em;
    opacity: .8;
}
.schedule table{
	margin: 0 auto 8em;
	text-align: center;
	border-collapse: collapse;
}
.schedule th, .schedule td{
	padding: 10px;
}
.resort-image{
    width: 100%
}
.bridal-party {
  display: flex;
flex-wrap:wrap;
  justify-content: space-between;
  margin-top: 10px;
}

.column {
  flex: 45%;
}

.party-member {
  text-align: center;
  margin-bottom: 20px;
  width: 120px;
  margin-left: auto;
  margin-right: auto;
}

.party-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  clip-path: circle(50% at 50% 50%);
}

.party-member img:hover {
  filter: grayscale(0%);
}

.party-member p {
  margin: 5px 0;
}

.party-member p:nth-child(3) {
  font-style: italic;
}

/* The grid: Four equal columns that floats next to each other */
/*.column {
  float: left;
  width: 25%;
  padding: 10px;
}*/

/* Style the images inside the grid */
/*.column img {
  opacity: 0.8;
  cursor: pointer;
}*/

/*.column img:hover {
  opacity: 1;
}*/

/* Clear floats after the columns */
/*.imgrow:after {
  content: "";
  display: table;
  clear: both;
}*/

/*.column {
  flex: 1;
  padding: 10px;
  text-align: center;
}*/

/* Remove this conflicting rule */
/*.column img {
  width: 100%;
  height: auto;
  max-width: 100px;
  cursor: pointer;
}*/

.imgrow {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.small-img {
  width: 100%;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s ease;
}

.small-img:hover {
  opacity: 0.7;
}

.thumbnail {
  transition: 0.3s;
}

.thumbnail:hover {
  filter: brightness(80%);
}

/* The expanding image container (positioning is needed to position the close button and the text) */
.imgcontainer {
  position: relative;
  display: none;
  max-width: 100%;
  margin: 0 auto;
}

#expanded-img {
  width: 50%; /* Adjusts the size of the expanded image */
  height: auto;
  max-height: 500px;
  max-width: 100%;
}

/* Expanding image text */
#imgtext {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-size: 20px;
}

/* Closable button inside the image */
.closebtn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 35px;
  cursor: pointer;
}
.carousel-img{
	width:  100%;
	/* Hide all carousel images */
	display: none;
}

.carousel-img.selected{
	/* Display only selected image */
	display: block;
}

.thumbnail{
  /* Use flexbox to display images inline */
	display: flex;
	justify-content: space-between;
}

.thumb-img{
	width: 23%;
	/* Grayscale all thumbnail images */
	filter:  grayscale(1);
}

.thumb-img.highlight{
	/* Turn off grayscale only for current thumbnail image */
	filter: grayscale(0);
}
@media only screen and (max-width: 600px) {
    .heading {
        font-size: 4em;
    }
  }

.countdown {
    font-family: 'Prata', serif;
    font-size: 1em;
    color: #2c1810;
    margin-left: 1em;
    display: inline-block;
}
