@import url("https://fonts.googleapis.com/css2?family=Cormorant Garamond&family=Cormorant+Garamond&display=swap");

body {
  margin: 0;
  padding: 1rem;

  font-family: "Georgia", serif;
}

#content {
  margin: 0 auto;
  max-width: 1000px;

  display: flex;
  flex-direction: column;
  gap: 15px;
}

#title {
  margin: 5rem 0 2rem 0;

  text-align: center;
  font-size: 3em;
  font-family: "Cormorant Garamond", serif;
}

#details {
  margin: 2rem auto 0 auto;
  padding: 0 10px;
  max-width: 600px;
}

#lead {
  margin: 0 auto;
  padding: 0 10px;
  max-width: 500px;

  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;

  & p {
    margin: 0;
  }
}

#credit {
  text-align: center;
  font-style: italic;
  color: #555;
}

#house-pictures,
#plan-pictures,
#island-pictures {
  text-align: center;
  margin: 0 7px;
}

img {
  max-width: 100%;
}

@media only screen and (min-width: 600px) {
  /* For larger screens */

  #plan-pictures {
    margin-top: 10px;
  }

  img {
    max-width: 500px;
  }

  .mobile-br {
    display: none !important;
  }

  #lead {
    text-align: left;
  }
}

.pswp-gallery img {
  display: none;
}

.gallery-preview {
  display: inline-block;
  position: relative;

  & img {
    display: initial;
  }
}

.gallery-cue {
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;

  padding: 8px;

  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-family: "Georgia", serif;
  font-size: 0.9em;
  text-align: center;
}

.pswp__custom-caption {
  background: rgb(255, 255, 255, 0.9);
  font-size: 1rem;
  color: #333;
  width: calc(100% - 2rem);
  text-align: center;
  max-width: 400px;
  padding: 1rem;
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
}
.pswp__custom-caption a {
  color: #fff;
  text-decoration: underline;
}
.hidden-caption-content {
  display: none;
}
