/* *********************
************** NAV  ****
************************/

.navPaper {
  /* width: 145px; */
  width: 13rem;
  height: 13rem;
  z-index: -1000;
  position: fixed;
}

.collapsedNavPaper {
  display: none;
}

.navLink {
  /* text-decoration: none !important; */
  text-align: left;
  font-size: 1.25rem;
  font-weight: bold;
  color: black !important;
  margin: 10px 10px 5px 0px;
  padding-left: 10px;
  /* padding: 10px !important; */
  background-color: transparent;
  border: none;
  cursor: pointer;

  /* appearance: none; */
}

button {
  font-family: "Sofia Sans Semi Condensed";
}

.currentSectionLink {
  background-color: rgba(52, 68, 158, 0.2) !important;
}

.links {
  display: flex;
  flex-direction: column;
}

#root {
  /* width: 100vw; */
  background-color: rgb(230, 240, 228, 0.8);
}

.App {
  /* border: 2pt hotpink solid; */
  font-family: "Sofia Sans Semi Condensed";
  font-weight: bold;

  /* border: 1pt purple dashed; */
  min-height: 100vh;
  min-width: 97vw;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./media/crumpled-paper.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* body {
  background: url("./media/crumpled-paper.jpg") no-repeat center center fixed;
  background-size: cover !important;
  height: 100%;
} */

section {
  min-height: 100vh;
}

.hamburgerToggle {
  display: none;
}

/* Styles for screens smaller than 600px */
@media screen and (max-width: 600px) {
  body {
    /* background-size: 200px auto; */
  }
  .collapsedNavPaper {
    height: 4rem;
    z-index: -1000;
    position: fixed;
    cursor: pointer;
    display: inline;
  }

  section {
    padding-top: 3rem;
  }

  .navPaper {
    height: 75vh;
    width: 90vw;
    position: fixed;
    /* height: calc(4.5rem * 5); */
  }

  .links {
    height: 70vh;
    /* min-width: 75vw; */
    justify-content: space-between;
    font-size: 2rem;
  }

  .navLink {
    font-size: 2.35rem;
    padding: 1rem;
  }

  .hamburgerToggle {
    color: rgb(230, 240, 228);
    padding-top: 1rem;
    padding-left: 2rem;
    font-size: 1.75rem;
    position: fixed;
    margin: 0;
    display: inline;
  }

  nav.open > .collapsedNavPaper {
    display: none;
  }

  nav.open > .hamburgerToggle {
    display: none;
  }

  nav.closed > .navPaper {
    display: none;
  }

  nav.closed > .links {
    display: none;
  }
}

/**********************/
/****** MAIN CARD *****/
/**********************/

section {
  /* border: 2pt green solid; */
}

.mainContainer {
  padding: 0rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 90vh;
}

.mainContainer > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header {
  padding-top: 1rem;
}

.kbf-logo {
  width: 50vw;
  max-width: 400px;
}

.mission {
  max-width: 350px;
  padding-left: 1rem;
  font-size: larger;
}

.cellNumber {
  height: 10rem;
}

.instructions {
  font-size: 50px;
  padding-right: 2rem;
  text-align: right;
}

.actionIcons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
}

.actionIcons > * {
  margin: 0rem 1rem;
}

.icon {
  transform: scale(1);
  transition: transform 2s ease;
}

.icon-wrapper {
  display: flex;
  will-change: transform; /* tells browser to pre-optimize */
  transform: scale(1.65);
  transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
  backface-visibility: hidden; /*added smoothness */
}

.circle:hover .icon-wrapper {
  transform: scale(2);
}

.circle {
  text-decoration: none;

  transform: translateZ(0); /* force GPU layer */

  border-radius: 100%;
  border: 0.8pt rgb(49, 49, 49) solid;
  color: rgb(49, 49, 49);

  display: inline-block;
  line-height: 100px;

  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1rem;

  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;

  transform: translateZ(0); /*  GPU layer */
}

.circle:hover {
  background-color: rgb(179, 185, 219, 0.45);
  border-color: rgba(88, 106, 209, 0.45);

  color: black; /* icon color changes here */
}

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

.circle:focus-visible {
  background-color: black;
  color: white;
  outline: none;
}

.cellLink:focus-visible {
  background-color: black;
  color: white;
  outline: none;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.bounceIcon {
  animation: float 1s ease-in-out infinite;

  /* optional polish */
  will-change: transform;
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .bounceIcon {
    animation: none;
  }
}

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

/* Styles for screens smaller than 600px */
@media screen and (max-width: 600px) {
  .kbf-logo {
    width: 10rem;
    /* max-width: 15vw; */
    /* display: hide; */
  }

  .cellNumber {
    /* max-height: 135px; */
    height: auto;
    max-width: 90vw;
  }

  .header {
    display: flex;
    flex-direction: column;
  }

  .mission {
    text-align: center;
    padding: 0em;
  }

  .phoneInfo {
    display: flex;
    flex-direction: column-reverse;
  }

  .instructions {
    text-align: center;
  }
}

/* *********************
***** REQUEST CARD  ****
************************/

.sectionHeader {
  font-weight: 800;
}

.wire-flower-holder {
  max-width: 25%;
}

.wire-flower {
  /* width: 400px; */
  width: 100%;
  padding-left: 5%;
  /* max-width: 25vw; */
}

.infoHolder {
  display: flex;
  justify-content: center;
  align-items: center;
}

.info {
  padding: 2rem;
  padding-left: 3rem;
  width: 50%;
}

.contactLink {
  color: rgb(88, 106, 209);
}

@media screen and (max-width: 600px) {
  .info {
    width: 75vw;
  }
}

/* *********************
******** FAQs CARD  ****
************************/

.bodyText {
  font-weight: normal;
  font-size: 1.3rem;
}

@media screen and (max-width: 600px) {
  .bodyText {
    font-size: 1.5rem;
  }
}

/* **************************
***** QUICK FACTS CARD  ****
***************************/

#section4 {
  /* border: 4pt red dashed; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.quick-facts-title {
  display: flex;
  flex-direction: column;
  text-align: center;
}

#section4 > h1 {
  text-align: center !important;
}

.number {
  font-size: xxx-large;
  text-align: center;
  margin: 0;
}

.notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 2rem;
  width: 90vw;
  padding-bottom: 2rem;
}

.stickyNote {
  /* border: 1pt hotpink solid; */
  background-color: rgb(179, 185, 219, 0.45);
  padding: 1rem;
  min-width: 200px;
}

@media screen and (max-width: 600px) {
  .notes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
    /* gap: 1rem; */
    width: 90vw;
  }
}

/* **************************
***** HISTORY **************
***************************/

.sectionSubheader {
}

.statsHeader {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.clipping {
  width: 25rem;
  max-width: 45vw;
  /* border: 2pt red solid; */
}

.wideClipping {
  max-width: 50rem;
  /* border: 2pt green solid; */
}

.statsContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
}

mark {
  background-color: rgba(88, 106, 209, 0.274);
  text-transform: uppercase;
}

.clippings {
  /* border: 2pt hotpink solid; */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem; */
  width: 95vw;
  padding-bottom: 2rem;
}

@media screen and (max-width: 800px) {
  .wire-flower-holder {
    display: none;
  }

  .info {
    width: 80%;
  }

  .wideClipping {
    max-width: 90vw;
    /* border: 2pt green solid; */
  }
}
