@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');
@import url("https://use.typekit.net/ria8fgk.css");


:root {
  --primary-red: #DC143C;
  --deep-red: #B22222;
  --primary-blue: #1E3A8A;
  --teal-blue: #0891B2;
  --electric-blue: #00BFFF;
  --white: #FFFFFF;
  --charcoal: #2D3748;
  --black: #000000;
  --dark-gray: #1A1A1A;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(0, 191, 255, 0.3);
  /* Fallback nav height; JS will update this based on actual rendered height */
  --nav-height: 64px;
  /* Default vertical gap between major sections */
  --section-gap: clamp(24px, 4vh, 64px);
  /* Space inside hero at the bottom to separate CTA from next section */
  --hero-bottom-gap: clamp(24px, 5vh, 96px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rajdhani', sans-serif;
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  background-color: var(--black);
}

.app {
  position: relative;
  min-height: 100vh;
}

@keyframes binaryFall {
  0% {
    transform: translateY(-200px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(calc(100vh + 200px));
    opacity: 0;
  }
}

@keyframes binaryGlow {
  0% {
    opacity: 0.4;
    text-shadow: 0 0 5px #FFFFFF, 0 0 8px #E0E0E0;
  }
  50% {
    opacity: 0.9;
    text-shadow: 0 0 10px #FFFFFF, 0 0 15px #E0E0E0, 0 0 20px #CCCCCC;
  }
  100% {
    opacity: 0.6;
    text-shadow: 0 0 6px #FFFFFF, 0 0 10px #E0E0E0;
  }
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: "bebas-neue", sans-serif; 
  font-weight: 400; 
  font-style: normal;
  font-size: 2rem;
}

.nav-logo a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-logo a:hover {
  color: var(--white);
  text-shadow: 0 0 10px var(--electric-blue);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

/* Ensure button nav-links behave exactly like anchor nav-links */
button.nav-link {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 1.1rem;
  color: inherit;
  text-decoration: none;
  display: inline;
}

.nav-link:hover {
  color: var(--electric-blue);
  text-shadow: 0 0 10px var(--electric-blue);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--electric-blue);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Glitch Effect */
.glitch-text {
  position: relative;
  display: inline-block;
  /* animation: glitch 3s infinite; */
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch-text::before {
  /* animation: glitch-1 0.5s infinite; */
  color: var(--electric-blue);
  z-index: -1;
}

.glitch-text::after {
  /* animation: glitch-2 0.5s infinite; */
  color: var(--primary-red);
  z-index: -2;
}

@keyframes glitch {
  0%, 100% {
    text-shadow: 0 0 5px var(--white);
  }
  25% {
    text-shadow: -2px 0 var(--primary-red), 2px 0 var(--electric-blue);
  }
  50% {
    text-shadow: 2px 0 var(--primary-red), -2px 0 var(--electric-blue);
  }
  75% {
    text-shadow: 0 0 10px var(--white);
  }
}

@keyframes glitch-1 {
  0%, 100% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
}

@keyframes glitch-2 {
  0%, 100% {
    transform: translate(0);
  }
  20% {
    transform: translate(2px, -2px);
  }
  40% {
    transform: translate(2px, 2px);
  }
  60% {
    transform: translate(-2px, -2px);
  }
  80% {
    transform: translate(-2px, 2px);
  }
}

/* Hero Section */
.hero {
  position: relative;
  /* Offset for fixed nav to prevent overlap, while keeping total at 100vh */
  min-height: calc(100vh - (2 * var(--nav-height)));
  padding-top: calc(2 * var(--nav-height));
  padding-bottom: var(--hero-bottom-gap);
  /* Ensure visual spacing before the next section */
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f01710;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('numbers.svg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 50%;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.hero-silhouette {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-book {
  max-width: 100%;
  height: auto;
  width: 100%;
  max-height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px var(--primary-red));
}

@keyframes silhouettePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes silhouetteGlow {
  0% {
    opacity: 0.2;
    filter: blur(5px);
  }
  100% {
    opacity: 0.5;
    filter: blur(10px);
  }
}

.hero-text {
  text-align: center;
  max-width: 600px;
}

.hero-logo {
  max-width: 100%;
  height: auto;
  width: clamp(300px, 50vw, 600px);
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;

}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--electric-blue);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 191, 255, 0.35);
}

.hero-author {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-previous {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
}

.hero-hook {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.hero-hook p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--white);
  position: relative;
  padding-left: 1.5rem;
}

.hero-hook p::before {
  content: '▶';
  position: absolute;
  left: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--electric-blue);
  font-size: 1.1rem;
  text-shadow: 0 0 6px rgba(0, 191, 255, 0.6), 0 0 2px rgba(0, 0, 0, 0.6);
  opacity: 0.95;
}

.cta-button {
  background: #00A3FF;
  color: var(--white);
  font-family: "bebas-neue", sans-serif; 
  font-weight: 400; 
  font-style: normal;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.cta-button:hover {
  background: #8bd5f8;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: 2px solid var(--electric-blue);
  color: var(--electric-blue);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: bounce 2s infinite;
  transition: all 0.3s ease;
}

.scroll-indicator:hover {
  background: var(--electric-blue);
  color: var(--black);
  transform: translateX(-50%) scale(1.1);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
  /* Ensure in-page anchor jumps account for the fixed nav */
  scroll-padding-top: var(--nav-height);
}

/* Offset anchored sections so headers are not hidden behind fixed nav */
section[id] {
  scroll-margin-top: calc(var(--nav-height) + 1rem);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Styling */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
    font-family: "bebas-neue", sans-serif; 
    font-weight: 400; 
    font-style: normal;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  background: linear-gradient(45deg, var(--white), var(--electric-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--electric-blue));
  margin: 0 auto;
  border-radius: 2px;
}

/* About Section */
#about, #purchase {
  position: relative;
  z-index: 1;
  background-color: var(--black);
  padding: 4rem 0;
}

.about {
  padding: 6rem 0;
  background-color: var(--black);
  position: relative;
  z-index: 1;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(220, 20, 60, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.lead-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--electric-blue);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}


.detail-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.detail-card h3 {
  font-family: "bebas-neue", sans-serif; 
  font-weight: 400; 
  font-style: normal;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--electric-blue);
  text-transform: uppercase;
}

.detail-card ul {
  list-style: none;
}

.detail-card li {
  margin-bottom: 0.8rem;
  padding-left: 1rem;
  position: relative;
}

.detail-card li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-size: 0.8rem;
}

.action-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.action-button {
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.action-button:hover {
  background: var(--electric-blue);
  border-color: var(--electric-blue);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}

/* Purchase Section */
#purchase {
  padding: 6rem 0;
  background-color: var(--black);
  text-align: center;
  position: relative;
  z-index: 1;
}

.purchase-content {
  max-width: 800px;
  margin: 0 auto;
}

.purchase-text {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
}

.retailer-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.retailer-button {
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 200px;
}

.retailer-button.primary {
  background: linear-gradient(45deg, var(--primary-red), var(--deep-red));
  border-color: var(--primary-red);
}

.retailer-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}

.retailer-button.primary:hover {
  box-shadow: 0 5px 15px rgba(220, 20, 60, 0.5);
}

/* Footer */
.footer {
  background: var(--black);
  padding: 3rem 0;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--electric-blue);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  text-shadow: 0 0 10px var(--electric-blue);
}

.footer-copyright {
  color: var(--charcoal);
  font-size: 0.9rem;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: modalFadeIn 0.3s ease;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: modalFadeIn 0.3s ease;
}

.modal-content {
  background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
  border: 2px solid var(--glass-border);
  border-radius: 10px;
  max-width: 800px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem 2rem;
  border-bottom: 1px solid var(--glass-border);
}

.modal-header h2 {
  margin: 0;
  color: var(--white);
  font-size: 1.8rem;
  font-family: 'Bebas Neue', cursive;
  font-weight: 400;
}

.modal-body {
  padding: 2rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: .25rem .75rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 1.5rem;
}

.modal-close:hover {
  background: var(--primary-red);
  transform: scale(1.1);
}

.modal-content {
  padding: 3rem;
}

.modal-content h2 {
  font-family: 'Bebas Neue', cursive;
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--electric-blue);
  text-transform: uppercase;
}

.modal-content h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  margin: 2rem 0 1rem 0;
  color: var(--electric-blue);
}

.modal-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.modal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.modal-content li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.modal-content em {
  color: var(--electric-blue);
  font-style: italic;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-content {
    padding: 1rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .nav-link {
    font-size: 1rem;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-silhouette {
    height: 400px;
    order: 1;
  }
  
  .hero-book {
    max-height: 400px;
  }
  
  .hero-text {
    order: 2;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .book-details {
    position: static;
  }
  
  .action-buttons {
    grid-template-columns: 1fr;
  }
  
  .retailer-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .modal {
    margin: 1rem;
    max-height: 90vh;
  }
  
  .modal-content {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero {
    padding: calc(2 * var(--nav-height)) 1rem var(--hero-bottom-gap);
  }
  
  .hero-hook {
    padding: 1rem;
  }
  
  .hero-hook p {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .modal-content {
    padding: 1.5rem 1rem;
  }
}

/* Height-constrained viewports (short laptop windows, etc.) */
@media (max-height: 820px) {
  .hero-content {
    gap: 2rem;
  }
  .hero-silhouette {
    height: 480px;
  }
  .hero-book {
    max-height: 480px;
  }
  .hero-hook {
    margin: 1rem 0;
    padding: 1rem;
  }
  .hero-logo {
    width: clamp(260px, 40vw, 520px);
    margin-bottom: 0.5rem;
  }
  .scroll-indicator {
    display: none;
  }
}

/* Performance Optimizations */
.binary-stream {
  will-change: transform;
}

.silhouette-figure {
  will-change: transform;
}

.glitch-text {
  will-change: text-shadow;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .binary-stream,
  .silhouette-figure,
  .glitch-text,
  .scroll-indicator {
    animation: none;
  }
  
  .cta-button::before {
    display: none;
  }
}

.location-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.location-item:hover .location-image {
  transform: scale(1.02);
}

/* Location Photos Section */
.locations-section {
  margin: 4rem 0;
}

.locations-title {
  font-family: "bebas-neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  color: var(--electric-blue);
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: center;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.location-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.location-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
  border-color: var(--electric-blue);
}

.location-item h4 {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  color: var(--electric-blue);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.location-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

.locations-list {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.locations-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}

.locations-list li {
  color: var(--white);
  font-weight: 500;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.locations-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-size: 0.8rem;
}

/* Responsive adjustments for locations */
@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .location-item {
    padding: 1.25rem;
  }

  .locations-list ul {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .locations-list li {
    padding-left: 0;
    text-align: center;
  }

  .locations-list li::before {
    display: none;
  }
}

/* Location Modal Styles */
.location-modal-content {
  max-width: 900px;
}

.location-modal-image {
  text-align: center;
  margin-bottom: 2rem;
}

.location-modal-description p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Make images clickable */
.location-image {
  cursor: pointer;
}

small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
  display: block;
}

.hero-previous {
  font-weight: bold;
  font-size: 1.1em;
}

.book-link {
  font-weight: bold;
  font-size: 1.1em;
  color: inherit;
  text-decoration: none;
}

.book-link:hover {
  color: rgba(255, 255, 255, 0.85);
}
