:root {
  --primary-brand-color: #e22069;
  --secondary-brand-color: #3d62ad;
  --dark-gray: #1f2933;
  --radius: 4px;
  --card-radius: 20px;
  --callout-background: #ebf6f7;
  --callout-icon: #2fa4a9;
  --light-bg: #f6f8fa;
  --text: #1f2933;
  --secondary-text: #4b5563;
  --light-pink: #fdecf1;
  --pink: #e83e6d;
  --section-padding-x: 1.4rem;
  --section-padding-x-tablet: 3rem;
  --section-padding-x-desktop: 4rem;
  --section-padding-y: 2rem;
  --section-padding-y-tablet: 3rem;
  --section-padding-y-desktop: 4rem;
  --section-max-width: 72rem;
  --card-padding: 2rem;
}

img {
  border-radius: var(--card-radius);
  margin-bottom: var(--section-padding-y);

  @media (min-width: 800px) {
    margin-bottom: 0;
  }
}

button , a.button {
  text-decoration: none;
  display: block;
  width: 100%;
  border-radius: var(--radius);
  padding: 0.8rem;
  margin-bottom: 10px;
  font-weight: 600;

  /*tablet styles */
  @media (min-width: 800px) {

    width: fit-content;
    display: inline-block;
  }
}

button.primary, a.primary {
  background-color: var(--primary-brand-color);
  border: 1px solid var(--primary-brand-color);
  color: white;
}


button.secondary, a.secondary {
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid white;
  color: white;
  font-weight: 600;
}

section {
  text-align: center;
  padding: var(--section-padding-y) var(--section-padding-x);

  .section-inner {
    max-width: var(--section-max-width);
    margin-left: auto;
    margin-right: auto;
  }

  /*tablet styles */
  @media (min-width: 800px) {
    padding: var(--section-padding-y-tablet) var(--section-padding-x-tablet);
  }

  /*desktop styles */
  @media (min-width: 1000px) {
    padding: var(--section-padding-y-desktop) var(--section-padding-x-desktop);
  }

}


.top-header {
  background-color: #1f2933;
}

.top-header-container {
  display: flex;
  padding: 0.4rem;
  color: white;
  justify-content: center;
  gap: 14px;
  align-items: center;
  font-size: 12px;
  font-weight: 250;

  .top-header-child {
    display: flex;
    align-items: center;
    gap: 10px;

    svg {
      height: 12px;
      display: inline;
      width: 12px;
    }


  }

  /*tablet styles */
  @media (min-width: 800px) {
    justify-content: right;
    padding-right: 4rem;
  }

  /*desktop styles */
  @media (min-width: 1000px) {
    max-width: 80vw;
    margin-left: auto;
    margin-right: auto;
    padding-right: 1rem;
  }

}

input, textarea {
  background-color: var(--light-bg);
  border: 1px solid #f2f5f9;
  border-radius: var(--radius);
  padding: 12px;
  margin-bottom: 1rem;
  margin-top: 0.4rem;
  width: 100%;
  color: var(--secondary-text)
}

.nav-pill {
  text-transform: uppercase;
  border-radius: var(--card-radius);
  border: 1px solid var(--callout-icon);
  display: inline-block;
  margin: 2rem auto;
  padding: 0.4rem 0.6rem;
  font-size: 0.8em;
  font-weight: 600;
  color: var(--callout-icon);
}

section.page-header {
  img {
    height: auto;
  }

  /* desktop styles */
  @media (min-width: 1000px) {

    h1 {
      margin: 3rem auto;
      font-size: 4rem;
    }

    p {
      margin-bottom: 8rem;
    }

    img {
      height: 60vh;
      width: 70vw;
      object-fit: cover;
      margin: auto;
    }
  }
}

.link-container {
  color: var(--pink);

  display: flex;
  justify-content: flex-start;
  gap: 14px;
  align-items: center;
  margin-bottom: 6vh;

  .icon-container {

    svg {
      height: 24px;
      width: 24px;
    }
  }

  a {
    font-weight: 600;
    text-decoration: none;
    color: var(--pink);
  }

}


img {
  height: auto;
  width: auto;
}

.gallery-lightbox-link {
  cursor: zoom-in;
}

.image-lightbox {
  align-items: center;
  background: rgba(15, 23, 42, 0.9);
  border: 0;
  display: none;
  height: 100%;
  inset: 0;
  justify-content: center;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.image-lightbox[open] {
  display: flex;
}

.image-lightbox::backdrop {
  background: rgba(15, 23, 42, 0.9);
}

.image-lightbox img {
  border-radius: var(--radius);
  height: auto;
  margin: 0;
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
  width: auto;
}

.image-lightbox-close {
  align-items: center;
  background: white;
  border: 0;
  border-radius: 999px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  font-size: 1.6rem;
  height: 2.75rem;
  justify-content: center;
  line-height: 1;
  margin: 0;
  padding: 0;
  position: fixed;
  right: 1rem;
  top: 1rem;
  width: 2.75rem;
}
