@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");
:root {
  --header: "Righteous", sans-serif;
  --type: "Josefin Sans", sans-serif;
  --gold: #fac448;
  --minty: #c3f5ea;
  --midnightGreen: #0e4749;
  --darkGreen: #002626;
  --textDark: #1d1d1d;
  --textLight: #fafafa;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  font-family: "Special Elite", cursive;
  font-family: "Josefin Sans", sans-serif;
}

.button {
  background: 0 0;
  background: var(--gold);
  color: #000 !important;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  outline: 0;
  grid-gap: 20px;
  align-items: center;
  border: 1px solid #fac448;
  border-radius: 4px;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 20px;
  gap: 20px;
  justify-content: center;
  line-height: 1;
  overflow: hidden;
  padding: 12px;
  text-decoration: none;
  text-overflow: ellipsis;
  transition: all 0.14s ease-out;
  white-space: nowrap;
  width: 100%;
}
.button:not(.disabled) {
  cursor: pointer;
}
.button:not(.disabled):hover {
  box-shadow: 4px 4px 0 #000;
  transform: translate(-4px, -4px);
}
.button.disabled {
  filter: saturate(30%);
}
@media (prefers-color-scheme: light) {
  .button {
    background: #efa807;
  }
}
.button:focus-visible {
  outline-offset: 1px;
}
.button + .button {
  margin-top: 15px;
}

h1, h2, h3, h4, h5, h6, p, li, details {
  letter-spacing: 1px;
}
@media (prefers-color-scheme: light) {
  h1, h2, h3, h4, h5, h6, p, li, details {
    color: #1d1d1d;
  }
}
@media (prefers-color-scheme: dark), (prefers-color-scheme: light) and (min-width: 768px) {
  h1, h2, h3, h4, h5, h6, p, li, details {
    color: #fff;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--header);
}

p, li, details {
  font-family: "Josefin Sans", sans-serif;
  font-family: var(--type);
}

a:not(.button) {
  color: var(--gold);
  text-decoration: none;
}
@media (prefers-color-scheme: light) {
  a:not(.button) {
    color: var(--midnightGreen);
  }
}
a:not(.button):hover {
  text-decoration: underline;
}

h1,
h2,
h3,
.title {
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 0;
  text-transform: uppercase;
  text-shadow: 1px 2px #1d1d1d;
  text-shadow: 1px 2px #412e02;
}
@media (prefers-color-scheme: light) {
  h1,
h2,
h3,
.title {
    color: var(--textDark);
    text-shadow: none;
  }
}
@media (prefers-color-scheme: light) and (min-width: 768px) {
  h1,
h2,
h3,
.title {
    color: var(--gold);
    text-shadow: 1px 2px #412e02;
  }
}
h1:first-of-type,
h2:first-of-type,
h3:first-of-type,
.title:first-of-type {
  margin-top: 0;
}
h1 + p,
h2 + p,
h3 + p,
.title + p {
  margin-top: 10px;
}

.subtitle {
  font-size: calc(24/16 * 1em);
  line-height: 1.4;
  letter-spacing: 3px;
  margin-bottom: 0;
  margin-top: 5%;
  text-transform: uppercase;
}
@media (prefers-color-scheme: light) {
  .subtitle {
    color: var(--textDark);
    text-shadow: none;
  }
}
@media (prefers-color-scheme: dark), (prefers-color-scheme: light) and (min-width: 768px) {
  .subtitle {
    color: var(--minty);
    text-shadow: 1px 2px #105d4c;
  }
}
.subtitle + p {
  margin-top: 10px;
}

p {
  font-size: 20px;
  line-height: 1.4;
  margin-top: 0;
}

.large {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .large {
    font-size: 40px;
  }
}

.med {
  font-size: 28px;
  line-height: 1.2;
}

.small {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .small {
    font-size: 18px;
  }
}

.tiny {
  padding: 20px 0 10px;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #1d1d1d;
  }
}
@media (prefers-color-scheme: light) {
  body {
    background-color: gainsboro;
    background-color: #fafafa;
    background-color: #ededed;
  }
}
@media screen and (min-width: 768px) {
  body {
    background-image: url(../img/bookstore-dark50-bw.jpg) !important;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
  }
}

@media screen and (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}

.nav__container {
  align-items: center;
  background-color: var(--gold);
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 3%;
  margin-bottom: 0;
  max-width: 1024px;
  padding: 20px 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .nav__container {
    margin: 0 auto;
    background-color: transparent;
    padding: 40px 0 0 0;
  }
}
.nav__link:not(.button) {
  color: var(--gold);
  transition: all 0.2s ease-in-out;
}
.nav__link:not(.button):hover {
  transform: scale(1.5);
}

.hero {
  padding: 5% 0;
  text-align: center;
  background-image: url(/src/img/bookstore-dark50-bw.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero__img {
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .hero {
    background-image: none;
    padding: 2.5% 0;
  }
}

@media screen and (min-width: 768px) {
  main {
    margin: 0 auto;
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  main {
    max-width: 1024px;
  }
}
main section {
  padding: 0 calc(40/16 * 1em);
}
@media screen and (min-width: 1024px) {
  main section {
    padding: 0 20px;
  }
}
main section section {
  padding: 0;
}

.cols {
  padding-top: 7%;
}
.cols .single-col {
  text-align: center;
}
.cols .single-col + .single-col {
  margin-top: 15px;
}
.cols .single-col div + div {
  margin-top: 15px;
  margin-top: 7%;
}
@media screen and (min-width: 768px) {
  .cols {
    padding-top: 5%;
  }
  .cols__inner {
    display: flex;
    gap: 18%;
    gap: 6%;
    justify-content: space-between;
  }
  .cols .single-col {
    text-align: left;
  }
  .cols .single-col + .single-col {
    padding-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .cols {
    padding-top: 0;
  }
}

figure {
  background-color: var(--textDark);
}
figure img {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  figure {
    display: none;
  }
}

body {
  font-family: "Open Sans", sans-serif;
}

.container h1 {
  color: #fff;
  text-align: center;
}

.hours__inner + .hours__inner {
  margin-top: 30px;
}
.hours__inner p + p {
  margin-top: 10px;
}

.visit {
  padding-bottom: 30px;
}

.closing {
  background-color: #fafafa;
  border-radius: 4px;
  padding: 15px 0;
  text-align: center;
}
.closing h3 {
  color: var(--textDark);
  text-shadow: none;
}
.closing p {
  color: var(--textDark);
  text-transform: uppercase;
  font-weight: 600;
}

.location {
  padding: 15px 0;
  border-radius: 4px;
}
@media (prefers-color-scheme: light) {
  .location {
    background-color: var(--darkGreen);
    background-color: transparent;
  }
  .location p {
    color: #fafafa;
    color: var(--textDark);
  }
  .location a {
    color: #c3f5ea;
    color: var(--textDark);
  }
  .location .icon__map--dark {
    display: block;
  }
  .location .icon__map--light {
    display: none;
  }
}
@media (prefers-color-scheme: dark), (prefers-color-scheme: light) and (min-width: 768px) {
  .location {
    background-color: var(--minty);
    background-color: transparent;
  }
  .location p {
    color: var(--textDark);
    color: white;
  }
  .location a {
    color: var(--darkGreen);
    color: white;
  }
}
@media (prefers-color-scheme: dark) {
  .location .icon__map--dark {
    display: none;
  }
}
@media (prefers-color-scheme: light) and (min-width: 1024px) {
  .location .icon__map--dark {
    display: none;
  }
  .location .icon__map--light {
    display: block;
  }
}
.location__inner {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 15px;
  padding: 20px 0;
  text-align: left;
  justify-content: left;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .location {
    padding: 20px;
    padding: 20px 0;
  }
}
@media screen and (min-width: 1024px) {
  .location {
    text-align: center;
    text-align: left;
  }
}
.location img.map-link__icon {
  transition: 0.2s all ease-in-out;
}
.location .map-link:hover img.map-link__icon {
  transform: scale(1.5);
  transition: 0.2s all ease-in-out;
}

.faq__container {
  padding-bottom: 7%;
}
.faq__container .title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .faq__container {
    margin: 0 auto;
    padding-top: 7%;
  }
  .faq__container .title.large {
    font-size: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .faq__wrapper {
    column-gap: 5%;
    display: grid;
    grid-template-columns: 48% 48%;
  }
}
.faq {
  cursor: pointer;
  font-size: 1.15rem;
}
.faq:hover > .faq__q {
  color: var(--minty);
}
.faq:first-of-type {
  margin-top: 5%;
}
@media screen and (min-width: 768px) {
  .faq {
    font-size: 1.1rem;
  }
  .faq:first-of-type {
    margin-top: 2.5%;
  }
}
.faq__q {
  display: flex;
  padding: 0.5em 1.3rem 0.5em 0;
  line-height: 1.4;
  list-style: none;
  justify-content: space-between;
  transition: height 1s ease;
}
.faq__q::-webkit-details-marker {
  display: none;
}
.faq__q:after {
  content: "+";
}
.faq + .faq {
  margin-top: 10px;
}

.faq[open] .faq__q {
  border-bottom: 1px solid var(--gold);
  margin-bottom: 0.5em;
  margin-bottom: 0;
  border-bottom: none;
}

.faq[open] .faq__q:after {
  content: "×";
}

.faq[open] .faq__a {
  font-size: calc(18/24 * 1em);
  line-height: 1.4;
  padding: 1em;
  border: 1px solid var(--gold);
  border-color: grey;
}
@media screen and (min-width: 768px) {
  .faq[open] .faq__a {
    padding-right: 2em;
    padding-left: 1.5em;
    border-left: none;
    border-right: none;
  }
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

#container {
  display: block;
  height: 600px;
  margin: 0 auto;
  padding: 20px;
  width: 800px;
  position: relative;
}

img.img {
  display: block;
  max-width: 100%;
  height: auto;
}