* {
  box-sizing: border-box;
  font-family: "Garamond", sans-serif;
}

.d-none {
  display: none;
}

.d-flex {
  display: flex;
}
.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-content-between {
  justify-content: space-between;
}

.w-30 {
  width: 30%;
}

.w-45 {
  width: 45%;
}
.w-75 {
  width: 75%;
}
.h-auto {
  height: auto;
}

body {
  flex-wrap: wrap;
  font-family: sans-serif;
  margin: 0;
}

.ml-auto {
  margin-left: auto;
}

.font-size-20px {
  font-size: 20px;
}

.h-48px {
  height: 48px;
}

.mt-auto {
  margin-top: auto;
}

.flex-column {
  flex-direction: column;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.position-absolute {
  position: absolute;
}
.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.min-height-100vh {
  height: 100vh;
}

.w-30 {
  width: 30%;
  height: auto;
}
.w-100 {
  width: 100%;
}

.p-16px {
  padding: 16px;
}

.pt-16px {
  padding-top: 16px;
}

.bg-sunflower-yellow {
  background-color: #f7dfa1;
}

.bg-white {
  background-color: #fff;
}

dl,
ul {
  width: 100%;
  max-width: 600px;
  padding: 0;
}
dd {
  position: relative;
  line-height: 1.6;
  margin-left: 0;
  margin-right: 0;
}

form {
  /* form outline */
  display: inline-block;
  padding: 1 em;
  border: 1px solid #ccc;
  border-radius: 1rem;
  box-shadow: 0 0 10 px #ccc;
}

body {
  /* Center the form on the page */
  text-align: center;
  display: flex;
  padding: 1em;
  justify-content: center;
}

.border-radius-64px {
  border-radius: 64px;
}

.border-radius-16px {
  border-radius: 16px;
}

.pic-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0p-1);
}

.pic-wrapper img {
  width: 100%;
  height: auto;
  padding: 2rem;
  transition: transform 0.2s ease;
}

.pic-wrapper:hover img {
  transform: scale(1.12);
}
figcaption {
  text-align: center;
  padding: 1rem;
  font-style: italic;
}

/* Headings*/
h1 {
  font-size: 2rem;
  text-align: center;
  padding: 1rem;
}

h2 {
  font-size: 1.8rem;
  padding: 0 1rem;
}

label {
  /* Size and alignment uniform */
  display: inline-block;
  min-width: 90px;
  text-align: right;
}
input,
textarea {
  /* make sure all text fields have the same font settings by default */
  font: 1 em sands-serif;
  width: 300 px;
  box-sizing: border-box;
  border: 1 px solid #999;
}
input:focus,
textara:focus {
  /* set outline width and style */
  outline-style: solid;
  outline-color: #000;
  /* gives highlight to active element */
  outline-width: 2px;
}

textarea {
  /* align text fields with labels */
  vertical-align: top;
  height: 5 em;
}

input:invalid {
  border: 2px dashed rgb(201, 201, 189);
}

input:valid {
  border: 2 px solid black;
}
input:invalid:required {
  background-image: linear-gradient(
    to right,
    rgb(236, 244, 236),
    rgb(247, 248, 241)
  );
}

.contact-header {
  width: 100%;
  max-width: 600px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* .contact-header h2 {
  font-size: 1.8rem;
} */

h4 {
  font-size: 1.4rem;
}

.contact-info {
  width: 100%;
  max-width: 600px;
  padding: 1.5rem;
  background-color: #f7dfa1;
  box-shadow: 0 2 px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-info a {
  color: #4267b2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: black;
}
form {
  width: 100%;
  max-width: 600px;
  padding: 1.5rem;
  background-color: #f7dfa1;
  border-radius: 8px;
  box-shadow: 0 2 px 4px rgba(0, 0, 0, 0.1);
  border: none;
}
.sr-only {
  visibility: hidden;
}

.max-w-20px {
  max-width: 20px;
}

.max-h-20px {
  max-height: 20px;
}

.align-items-start {
  align-items: start;
}

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

.pl-0 {
  padding-left: 0;
}

.mb-16px {
  margin-bottom: 16px;
}

.border-0 {
  border: 0;
}

.bg-transparent {
  background-color: transparent;
}

.pb-32px {
  padding-bottom: 32px;
}

.p-0 {
  padding: 0;
}

.pr-16px {
  padding-right: 16px;
}

.p-32px {
  padding: 32px;
}

.py-32px {
  padding-top: 32px;
  padding-bottom: 32px;
}

.retreat-create {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  min-height: auto;
  font-size: 1.25rem;
}
.retreat-create p {
  font-size: 1.25 rem;
  line-height: 1.6;
  text-align: left;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2 px 4px rgba(0, 0, 0, 0.1);
}
/*how to make font look better,*/
.about-description {
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  min-height: auto;
  font-size: 1.25rem;
}
.about-description p {
  line-height: 1.6;
  text-align: left;
  font-family: "Georgia" serif;
}
#menuButton {
  display: flex;
  cursor: pointer;
}

#desktopLinks {
  display: none;
}
/* mobile styles */
.menu {
  display: none;
}

.menu.active {
  display: block;
}
.fb-wrapper a {
  color: #4267b2; /* Facebook blue */
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.fb-wrapper a:hover {
  opacity: 0.8;
}

.box-shadow {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.m-0 {
  margin: 0;
}

.py-16px {
  padding-top: 16px;
  padding-bottom: 16px;
}

.h-45 {
  height: 45%;
}

.max-height-150px {
  max-height: 150px;
}

.w-100px {
  width: 100px;
}

.h-100px {
  height: 100px;
}

.pb-16px {
  padding-bottom: 16px;
}

.text-decoration-none {
  text-decoration: none!important;
}

.fw-bold {
  font-weight: bold;
}

.pt-0 {
  padding-top: 0!important;
}
@media screen and (min-width: 768px) {
  #menuButton {
    display: none !important;
  }

  #desktopLinks {
    display: flex !important;
  }

  .menu {
    display: none !important;
  }
  .retreat-create,
  .retreat-to-create p,
  .retreat-to-create dd {
    width: 80%;
    font-size: 1.25rem;
  }
  .contact-header {
    padding: 1rem;
  }
  .contact-info {
    width: 90%;
    padding: 1rem;
  }
  dl,
  ul {
    max-width: 80%;
  }
  dd {
    font-size: 1.25rem;
  }

  .py-md-32px {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .py-md-64px {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .pb-md-24px {
    padding-bottom: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .retreat-create,
  .retreat-to-create p,
  .retreat-to-create dd .about-description,
  .contact-header,
  .contact-info,
  form {
    max-width: 800px;
    width: 70%;
    font-size: 1.25rem;
  }
  .about-description {
    max-width: 800px;
    width: 70%;
    font-size: 1.25rem;
  }
  .about-description p {
    line-height: 1.8;
  }
  dl,
  ul {
    max-width: 800px;
  }
  dd {
    font-size: 1.25rem;
  }

  /*Text sizes for desktop*/
  .retreat-create p,
  .retreat-to-create p,
  .retreat-to-create dd,
  .about-description p,
  .contact-info,
  form label {
    font-size: 1.25rem;
    line-height: 1.6;
  }

  /* Heading sizes for desktop */
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.6rem;
  }

  /* form elements desktop */
  form input,
  form textarea {
    padding: 1rem;
    font-size: 1.1rem;
  }

  /* container spacing */
  .container {
    padding: 2rem;
  }

  .retreat-create .retreat-to-create,
  .about-description,
  .contact-header,
  .contact-info,
  form {
    max-width: 800 px;
    width: 70%;
    padding: 2rem;
  }

  /* typography for desktop */
  .retreat-create p,
  .retreat-to-create p,
  .retreat-to-create dd,
  .about-description p,
  .contact-info p,
  form label {
    font-size: 1.25rem;
    line-height: 1.8;
  }

  /*list styling*/
  dl,
  ul {
    max-width: 800px;
    padding: 0 2rem;
  }

  dd {
    font-size: 1.25rem;
  }
  /* form elements */
  form input,
  form textarea {
    padding: 1 rem;
    font-size: 1.25rem;
    width: 100%;
    max-width: 600px;
  }

  /*images and media */
  .pic-wrapper {
    max-width: 900px;
  }
  .pic-wrapper img {
    padding: 0;
  }

  /*footer*/
  footer {
    padding: 2rem 0;
  }

  #desktopLInks button,
  .menu li {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
  }

  #desktopLinks button::after,
  .menu li::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 16px;
    left: 50%;
    background-color: #f7dfa1;
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  #desktopLinks button:hover::after,
  .menu li:hover::after {
    width: 80%;
  }

  /*active state*/
  #desktopLinks button:active,
  .menu li:active {
    transform: scale(0.98);
  }

  #desktopLinks {
    gap: 1 rem;
  }

  #desktopLinks button {
    font-size: 1.25rem;
    padding: 1rem 2rem;
  }

  .max-w-xl-50 {
    max-width: 50%;
  }

  .flex-xl-row {
    flex-direction: row;
  }

  .pt-xl-0 {
    padding-top: 0;
  }

  .justify-content-xl-start {
    justify-content: start;
  }

  .px-xl-32px {
    padding-left: 32px;
    padding-right: 32px;
  }

  .py-xl-64px {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .pb-xl-0 {
    padding-bottom: 0;
  }

  .max-w-xl-fit-content {
    max-width: fit-content;
  }

  .pb-xl-32px {
    padding-bottom: 32px;
  }
}
