.headings {
  font-family: "Fjalla One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/* Responsive single-line for no purchases text */
.no-purchases-text {
  text-align: center;
  font-size: 1.2em;
  margin-top: 30px;
  white-space: nowrap;
}
@media (max-width: 500px) {
  .no-purchases-text {
    white-space: normal;
    font-size: 1em;
  }
}
/* Knewave font class */
.knewave-regular {
  font-family: "Knewave", system-ui;
  font-weight: 2000;
  font-style: normal;
}
/* Londrina Solid font weights */
.londrina-solid-thin {
  font-family: "Londrina Solid", sans-serif;
  font-weight: 100;
  font-style: normal;
}
.londrina-solid-light {
  font-family: "Londrina Solid", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.londrina-solid-regular {
  font-family: "Londrina Solid", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.londrina-solid-black {
  font-family: "Londrina Solid", sans-serif;
  font-weight: 900;
  font-style: normal;
}
/* Nav container for centering */
/* Nav container for centering */
.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  margin: 0 auto;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
/* Responsive styles for mobile and small screens */
@media (max-width: 700px) {
  header {
    padding: 0.5rem;
  }
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2em;
    color: white;
    cursor: pointer;
    margin: 0 0 0 10px;
    z-index: 1001;
    position: absolute;
    right: 20px;
    top: 18px;
  }
  .nav-center {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  nav {
    display: none !important;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    background: #000;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100vw;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  nav.open {
    display: flex !important;
  }
  header {
    position: relative;
  }
  header img {
    width: 140px !important;
  }
  h1 {
    font-size: 1.6em;
    margin: 0.5em 0;
  }
  nav {
    flex-direction: column;
    gap: 12px;
    margin: 10px 0;
    align-items: center;
  }
  nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }
  .centered-login {
    min-height: 50vh;
    padding: 0 10px;
  }
  form {
    width: 100%;
    max-width: 350px;
    box-sizing: border-box;
  }
  input, button {
    font-size: 1em;
  }
  main, .main {
    padding: 10px;
  }
  .issue img {
    max-width: 100%;
    height: auto;
  }
  .flipbook-container {
    max-width: 100vw;
    padding: 0;
  }
}
/* Centered login page content */
.centered-login {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}
/* Center login form and button */
.centered-login form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

body {
  font-family: 'Pathway+Gothic+One', sans-serif;
  margin: 0;
  background: #f4f1ec;
  color: #333;
  line-height: 1.6;
}

header {
  background: #000;
  color: white;
  padding: 0.5rem;
  text-align: center;
}

header h1 {
  font-family: 'Pathway+Gothic+One', sans-serif;
  margin: 0;
}

nav a {
  color: white;
  margin: 0 0.5rem;
  text-decoration: none;
  font-family: "Londrina Solid", sans-serif;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  text-align: center;
  padding: 2.5rem;
  font-size: 1.75rem;
}
nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin: 6px 0;
  width: 100%;
}
nav a {
  text-decoration: none;
  color: inherit;
  font-size: 1.35em;
  padding: 0.1em 8px;
  border-radius: 4px;
  transition: background 0.2s;
  display: inline-block;
}
nav a:hover {
  background: #f0f0f0;
}
/* Ensure nav-auth stays on the right */

@media (max-width: 700px) {
  nav {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    width: 100vw;
  margin: 4px 0;
  }
  nav a {
  font-size: 0.95em;
    padding: 4px 0;
    width: 100%;
    text-align: center;
    display: block;
  }
}

.hero img {
  max-width: 300px;
  display: block;
  margin: 1rem auto;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #e63946;
  color: white;
  text-decoration: none;
}

.btn:hover {
  background: #d62828;
}

html, body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Footer styles */
footer {
  text-align: center;
  padding: 0.5rem;
  background: #000;
  color: white;
  font-size: 0.9rem;
  font-family: "Londrina Solid", sans-serif;
}

main {
  padding: 20px;
  text-align: center;
}

.issues {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.issue {
  width: 200px;
  text-align: center;
}

.issue img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.issue:hover img {
  transform: scale(1.05); /* Slight zoom effect on hover */
}


.default-btn {
  background-color: #e63946;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 5px;
  font-family: "Londrina Solid", sans-serif;
}

.default-btn:hover {
  background-color: #f1faee;
  color: #333;
}

.paywall-link {
  display: none; /* Hide the link initially */
  color: #333;
  text-decoration: none;
  margin-top: 10px;
  font-weight: bold;
}

.paywall-btn.active + .paywall-link {
  display: block; /* Show the link when the button is clicked */
}
