.tatin-navbar {
  width: 100vw;
  border-top: 0.5px solid black;
  border-bottom: 0.5px solid black;
}

.tatin-navbar-links {
  display: flex;
  justify-content: space-between;
  margin: 12px auto 8px auto;
}

.tatin-navbar-top-section {
  padding: 20px;
  display: flex;
  justify-content: space-between;
}

.tatin-nav-logo {
  width: 120px;
}

a .tatin-nav-link {
  color: black;
  font-family: "FoundersGrotesk-Regular", sans-serif;
  font-size: 20px;
  text-deoration: none;
  &:visited {
    color: black
  }
}

.tatin-landing-page {
  width: 100vw;
  height: 100vh;
  background-color: #FEFEFB;
  justify-content: center;
  text-align: center;
  overflow-y: hidden;
}

.tatin-landing-logo {
  margin-top: 50px;
  img {
    width: 250px;
  }
}

.tatin-landing-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75vh;
}

.tatin-landing-image {
  border: 0.5px solid black;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
}

.footer-container {
  border-top: 0.5px solid black;
}

.email-field {
  border: 0.5px solid black;
  padding: 12px;
}

.subscribe-btn {
  border: 0.5px solid black;
  padding: 12px;
}

.event-card {
  border: 0.5px solid black;
  padding: 20px;
}

.event-card-image {
  width: 400px;
  height: 300px;
  border: 0.5px solid black;
  background-color: pink;
}

.article-image {
  width: 400px;
  height: 500px;
}

.article-card-image {
  /*width: 150px;
  height: 180px;*/
}

.tatin-button {
  border: 1px solid black;
  padding: 16px;
  background-color: #FEFEFB;
}

.tatin-button-sm {
  border: 1px solid black;
  padding: 6px;
  background-color: #FEFEFB;
  font-size: 12px;
}

.tatin-border {
  border: 0.5px solid black;
}

.tatin-border-top {
  border-top: 0.5px solid black;
}

.tatin-border-bottom {
  border-bottom: 0.5px solid black;
}

.tatin-border-left {
  border-left: 0.5px solid black;
  padding-left: 20px;
  margin-left: 10px;
}

.tatin-input {
  border: 1px solid black;
  padding: 8px;
  border-radius: 0;
  width: 300px;
  &:focus {
    border: 1px solid black;
    border-radius: 0;
  }
}

.full-width-button {
  width: 300px;
}

.tatin-bg {
  background-color: #FEFEFB;
}

.tatin-label {
  border: 0.5px solid black;
  padding: 5px 15px;
  background-color: #FEFEFB;
  font-size: 14px;
  border-radius: 20px;
  display: inline-block;
}

.picnic_card_image_container {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.picnic_page_image_container {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.product_card_image_container {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.product_page_image_container {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.img-cropped {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* crops instead of squishing */
  object-position: center;
}

.tatin-input.select {
  border: 1px solid black;
  padding: 8px 32px 8px 8px; /* extra space for the chevron */
  border-radius: 0;
  width: 300px;
  background-color: white;

  /* Remove default arrow */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* 100° open chevron */
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2010%208'%3E%3Cpolyline%20points='1,3%205,7%209,3'%20stroke='black'%20stroke-width='1'%20fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px 8px;
}

.tatin-input.select:focus {
  outline: none;
  border: 1px solid black;
}

.tatin-input.select option {
  font-family: "HelveticaNeue-Light";
  font-size: 16px;
  background-color: #FEFEFB;
}

.tatin-mini-form {
  max-width: 300px;
  width: 100%;
  max-width: 100%;
  display: flex;
}

.tatin-mini-form {
  .tatin-input {
    padding: 10px;
    flex: 1 1 auto;     /* <-- grow and shrink, take remaining space */
    min-width: 0;
    margin-left: 0;
    border-right: none;
  }

  .tatin-button {
    padding: 10px;
    margin-right: 0;
    flex: 0 0 auto;     /* <-- do NOT grow, only be as wide as content */  }
}

