body {
  font-family: lato, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: poiret-one, serif;
}

html, body {
  width: 100%;
  height:100%;

  margin: 0;
  padding: 0;
}

.clearfix {
  clear: both;
}
.clearfix:after {
  display: table;
  content:"";
}

.centered {
  display: flex;
  justify-content: center;
}

.pull-right {
  float: right;
}

.wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 640px) {
  .wrapper {
    justify-content: center;
  }
}

.site-nav-wrapper {
  display: flex;
  justify-content: center;
  background: rgb(250,210,110);
  border-top: rgb(150,120,30);
  border-bottom: rgb(150,120,30);
  box-shadow: 0 0 .5rem rgba(180,150,70,0.6);
}
.site-nav {
  display: flex;
}
@media screen and (max-width: 720px) {
  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .site-nav {
    width: 100%;
    flex-direction: column;
  }
}
.site-nav-link {
  font-family: poiret-one, serif;
  font-size: 1.4rem;
  padding: 1rem 2.2rem;
  text-decoration: none;
  color: rgb(30,30,30);
  transition: color 0.75s, background-color 0.75s;
}
.site-nav-link:hover {
  color: rgb(20, 20, 20);
  background: rgb(255,230,130);
}
@media screen and (max-width: 720px) {
  .site-nav-link {
    flex-basis: 25%;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .site-nav-link {
    flex-basis: auto;
    padding-top: .2rem;
    padding-bottom: .2rem;
    border-right: none;
    text-align: center;
  }
}

.hero {
  margin: 2rem;
  border: 1px solid rgb(140,180,230);
  border-radius: .25rem;
  box-shadow: .1rem .1rem .4rem rgba(140,180,230,0.7);
}
.hero-header {
  padding: .5rem;
  border-bottom: 1px solid rgb(140,180,230);
}
.hero-header-title {
  font-family: quicksand, serif;
}
/* have to specify h1 to get enough specificity to overrride */
@media screen and (min-width: 640px) {
  h1.hero-header-title {
    font-size: 4rem;
  }
}
.hero-header-title,
.hero-header-subtitle,
.hero-countdown {
  text-align: center;
}
.hero-header-title {
  font-size: 2rem;
  margin-top: .5rem;
  margin-bottom: .5rem;
}
.hero-header-subtitle {
  font-size: 1.2rem;
  margin-top: .5rem;
  margin-bottom: .5rem;
}
.hero-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgb(140,180,230);
  padding: 1rem;
}
.hero-img {
  padding: 6px;
  border-radius: 50%;
  width: 280px;
  height: 280px;
  border: 1px solid rgb(140,180,230);
  box-shadow: 0 0 .4rem rgba(140,180,230,0.7);
}
@media screen and (max-width: 640px) {
  .hero-img {
    width: 180px;
    height: 180px;
  }
}
.hero-content {
  padding: .5rem;
}
.hero-footer {
  padding: .5rem;
  border-top: 1px solid rgb(140,180,230);
}

.card {
  margin: 1rem;
  border: 1px solid rgb(140,180,230);
  border-radius: .25rem;
  box-shadow: 0 0 .75rem rgba(140,180,230,0.7);
}
.card-header {
  padding: .5rem;
  border-bottom: 1px solid rgb(140,180,230);
}
.card-header-title {
  margin-top: .5rem;
  margin-bottom: .5rem;
}
.card-content {
  padding: .5rem;
}

.app-store-blurb {
  width: 100%;
}
.app-store-links {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .app-store-links {
    flex-direction: column;
    align-items: center;
  }
}
.app-store-link {
  text-decoration: none;
  margin-top: 1rem;
  margin-right: .5rem;
  margin-left: .5rem;
}

.travel-instruction {
  flex: 1 1 50%;
}
@media screen and (max-width: 640px) {
  .travel-instruction {
    flex-basis: 100%;
  }
}

.addresses {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.address {
  width: 100%;
  margin: 1rem;
  border: 1px solid rgb(140,180,230);
  border-radius: .25rem;
  box-shadow: .1rem .1rem .4rem rgba(140,180,230,0.7);
}
.address-header {
  padding: .5rem;
  border-bottom: 1px solid rgb(140,180,230);
}
.address-header-title, .address-header-subtitle {
  margin-top: .5rem;
  margin-bottom: .5rem;
}
.address-content {
  padding: .5rem;
  display: flex;
}
@media screen and (max-width: 640px) {
  .address-content {
    flex-direction: column;
  }
}
.address-text {
  flex: 1 0 12rem;
  padding-right: .5rem;
}
@media screen and (max-width: 640px) {
  .address-text {
    flex-basis: auto;
  }
}
.address-map {
  width: 480px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 640px) {
  .address-map {
    width: 100%;
  }
}

.accommodations {
  display: flex;
  flex-wrap: wrap;
}
.accommodation {
  flex: 1 1 30%;
}
@media screen and (max-width: 640px) {
  .accommodation {
    flex-basis: auto;
  }
}

.gifts {
  flex-basis: 50%;
}
@media screen and (max-width: 640px) {
  .gifts {
    flex-basis: 100%;
  }
}

.gallery {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .gallery {
    justify-content: center;
  }
}
.gallery-wrapper {
  display: flex;
  flex-direction: column;
  margin: 1rem;
  border: 1px solid rgb(140,180,230);
  border-radius: .25rem;
  box-shadow: .1rem .1rem .4rem rgba(140,180,230,0.7);
}
.gallery-img {
  max-width: 280px;
  max-height: 280px;
  border-radius: .25rem;
}
