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

body, html {
  height: 100vh;
  overflow-x: hidden;
  font-family: 'Barlow Condensed', sans-serif;
  color: white;
  background-color: black;
  background-image: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
}


.background {
  z-index: -3;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('background.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: black;
}

.stars-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

@keyframes blink-soft {
  0% { opacity: 0.3; }
  50% { opacity: 0.9; }
  100% { opacity: 0.3; }
}

@keyframes blink-sharp {
  0%, 100% { opacity: 0.1; }
  10%, 90% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes blink-subtle {
  0% { opacity: 0.4; }
  50% { opacity: 0.6; }
  100% { opacity: 0.4; }
}

.star.blink-soft {
  animation: blink-soft 3.4s infinite ease-in-out;
}

.star.blink-sharp {
  animation: blink-sharp 2.6s infinite ease-in-out;
}

.star.blink-subtle {
  animation: blink-subtle 4s infinite ease-in-out;
}

.page-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  flex: 1;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tagline {
  text-align: center;
  letter-spacing: 1.5px;
  font-size: 1.2rem;
  font-style: italic;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #ffffff;
}

.tagline-divider {
  width: 50%;
  height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.6), rgba(255,255,255,0));
  margin: 20px auto 30px auto; /* default margin for mobile/tablet */
}

@media (min-width: 769px) {
  .tagline-divider {
    margin-bottom: 10px; /* tighter spacing on desktop */
  }
}


.content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 100px;
  padding: 40px 0;
}

.book-block {
  max-width: 35%;
  margin-left: -2%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px; /* 👈 add this */
}


.book {
  width: 100%;
  height: auto;
  background: transparent;
  border: none;
  filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.9));
}

.sample-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.book-title {
  font-family: 'Audiowide', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2px;
  color: #ffd878; /* or white if preferred */
}

.book-title-2 {
  font-family: 'Audiowide', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0px;
  color: #ffd878; /* or white if preferred */
}

.text-block {
  max-width: 35%;
  text-align: center;
  color: white;
}

.pitch {
  font-size: 1.5rem;
  line-height: 2.8rem;
  letter-spacing: 4px;
  margin-bottom: 40px;
  font-weight: bold;
}

.blurb {
  font-size: 1.2rem;
  line-height: 2rem;
  letter-spacing: 1px;
  margin-bottom: 50px;
  color: white;
  max-width: 100%;
  text-align: center;
}

.release-date {
  font-size: 3rem;
  letter-spacing: 4px;
  font-weight: bold;
  margin-top: 20px;
  color: white;
}

.btn {
  display: inline-block;
  background-color: #f7d700;
  color: black;
  padding: 22px 50px;
  font-weight: bold;
  font-size: 26px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  margin-top: 30px;
}

.btn:hover {
  background-color: #fdd880;
  transform: scale(1.05);
}

.footer {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
  color: white;
  margin-top: 20px;
  margin-bottom: 5px;
  padding-bottom: 0;
}

/* Modal styles */
.modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.modal {
  background-color: #111;
  padding: 30px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  color: white;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  position: relative;
}

.modal-content {
  max-height: 60vh;
  overflow-y: auto;
}

.close-button {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hawkeye logo and text */
.hawkeye-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 20px;
}

.hawkeye-logo a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hawkeye-logo img {
  max-width: 80px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.hawkeye-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  color: white;
  margin-top: 8px;
  letter-spacing: 2px;
  opacity: 0.8;
  text-decoration: none;
}

.footer-separator {
  width: 50%;
  height: 1px;
  margin: 60px auto 40px auto;
  position: relative;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.6), rgba(255,255,255,0));
}


/* ✳️ MOBILE WEBSITE CODE STARTS HERE — DO NOT REMOVE ✳️ */


@media (max-width: 768px) {
  .content {
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 25px 0;
  }

    .tagline-divider {
    margin-bottom: 10px;
  }
  
  .book-block,
  .text-block {
    max-width: 90%;
    margin-left: 0;
    text-align: center;
  }

.book-block {
  margin-bottom: 10px; /* ↓ reduce this number to tighten spacing */
}


.book {
  max-width: 120%;
  margin-left: 0;
  margin-top: 20px;
  margin-bottom: 30px;
  transform: scale(1.2);
  transform-origin: center;
}


.sample-link {
  font-size: 1.1rem;
  margin-top: 12px;
  margin-bottom: 28px;
  color: white;
}

.book-title {
  font-size: clamp(1.4rem, 4.8vw, 2.4rem);
  padding-top: 12px;
}


.book-title-2 {
  font-size: clamp(1.7rem, 4.5vw, 3.2rem);
}


.tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1;
  font-size: clamp(0.95rem, 4.2vw, 1.6rem);
}


  .pitch {
    font-size: 1.5rem;
    line-height: 2.6rem;
    letter-spacing: 3px;
    margin-bottom: 30px;
  }

  .blurb {
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-bottom: 35px;
  }
  

  .release-date {
    font-size: 2rem;
    letter-spacing: 4px;
    margin-top: 20px;
  }

  .btn {
    font-size: 1.3rem;
    padding: 16px 30px;
  }

  .footer {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 0.8rem;
  }

  .hawkeye-logo {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .hawkeye-logo img {
    max-width: 60px;
  }

  .hawkeye-text {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-align: center;
  }

.footer-separator {
  width: 60%;
  margin-top: 40px;     /* space ABOVE the line */
  margin-bottom: 20px;  /* space BELOW the line */
  margin-left: auto;
  margin-right: auto;
}

}

.accordion-container {
  margin-top: 20px;
  text-align: left;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 25px;
}

.accordion-toggle {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  color: white !important; /* 🔥 force gold color on text */
  text-align: left;
  padding: 14px 18px;
  font-size: 1.2rem;
  border: 1px solid rgba(255,255,255,0.2);
  outline: none;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px;
  border-radius: 10px;
}


.accordion-toggle:hover {
  background: rgba(247, 215, 0, 0.15);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 18px;
  color: white;
  font-size: 1.1rem;
  line-height: 1.6rem;
  border-radius: 10px;
}

.accordion-panel p {
  margin: 14px 0;
  letter-spacing: 1px;
}

.accordion-panel.open {
  padding: 14px 18px;
  max-height: 800px; /* adjust depending on content */
}

/* 👇 Hidden by default on desktop */
.preorder-mobile {
  display: none;
}

/* 📱 Show only on screens ≤ 768px */
@media (max-width: 768px) {
  .preorder-mobile {
    display: inline-block;
    margin-top: 32px;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    padding: 16px 30px;
    background-color: #f7d700;
    color: black;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    font-weight: bold;
    font-family: 'Barlow Condensed', sans-serif;
    transition: all 0.3s ease;
  }

  .preorder-mobile:hover {
    background-color: #fdd880;
    transform: scale(1.05);
  }
  
  .accordion-panel.open {
  max-height: 2000px; /* or higher if needed */
}

}

/* ✅ Desktop preorder button below accordion — full width match */
.preorder-desktop {
  display: block;
  width: 100%;
  max-width: 600px; /* matches accordion-container max-width */
  margin: 30px auto 0 auto; /* center it and match spacing */
  background-color: #fdd880;
  color: black;
  font-weight: bold;
  font-size: 26px;
  letter-spacing: 1.2px;
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.preorder-desktop:hover {
  background-color: #fdd880;
  transform: scale(1.05);
}

/* ✅ Mobile-only buttons */
.preorder-mobile-top,
.preorder-mobile-bottom {
  display: none;
}

/* ✅ Mobile view styles */
@media (max-width: 768px) {
  .preorder-desktop {
    display: none;
  }

  .preorder-mobile-top {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 12px;
    background-color: #fdd880;
    color: black;
    font-weight: bold;
    font-size: 1.3rem;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    font-family: 'Barlow Condensed', sans-serif;
    transition: all 0.3s ease;
  }

  .preorder-mobile-bottom {
    display: inline-block;
    width: 100%;
    margin-top:10px; /* ⬅️ Increased space above */
    margin-bottom:10px; /* ⬅️ Increased space below */
    background-color: #fdd880;
    color: black;
    font-weight: bold;
    font-size: 1.3rem;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    font-family: 'Barlow Condensed', sans-serif;
    transition: all 0.3s ease;
  }


  .preorder-mobile-top:hover,
  .preorder-mobile-bottom:hover {
    background-color: #fdd880;
    transform: scale(1.05);
  }

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

.book-title-wrap        { order: 1; }
.tagline                { order: 2; }
.tagline-divider        { order: 3; }
.content                { order: 4; }

.book-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sample-link-wrap {
  order: 5;
}
.sample-link-wrap {
  margin-top: 12px;
}

.preorder-mobile-top {
  order: 6;
}
.preorder-mobile-top {
  margin-top: 10px;
}

.pitch-wrap             { order: 7; }
.blurb-wrap             { order: 8; }
.accordion-container    { order: 9; }

.preorder-mobile-bottom {
  order: 10;
}
.preorder-mobile-bottom {
  margin-top: 18px;
}

.release-date {
  order: 11;
}

.release-date {
  margin-top: 10px;
}
}

@media (max-width: 768px) {
  .container {
    padding: 30px 15px;
  }
}

@media (min-width: 769px) {
  .container {
    padding-bottom: 12px !important;
  }

  .hawkeye-logo {
    margin-top: 20px !important;
    margin-bottom: 20px;
  }

  .footer {
    margin-top: 30px;
    margin-bottom: 30px !important;
  }

  .modal {
    font-size: 1.2rem;
  }

  .modal-content {
    line-height: 1.8rem;
  }
}

/* === Merch CTA (ghost button) === */
.merch-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 8px 0 26px;          /* top | sides | bottom */
  position: relative;
  z-index: 2;
}

.merch-cta-btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  padding: 12px 26px;
  border: 2px solid #fdd880;   /* gold outline */
  color: #fdd880;
  background: transparent;
  border-radius: 999px;        /* pill shape */
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.merch-cta-btn:hover {
  transform: translateY(-1px);
  background: rgba(253, 216, 128, 0.12);  /* subtle gold wash */
  color: #fff1b8;
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
}

.merch-cta-btn:focus-visible {
  outline: 2px solid #fdd880;
  outline-offset: 3px;
  border-radius: 999px;
}

@media (max-width: 768px) {
  #merch-cta-btn {
    width: auto !important;      /* stop stretching */
    max-width: 90vw !important;  /* keep clear of edges */
    white-space: nowrap !important;
    text-align: center;
    font-size: 14px !important;  /* smaller text = narrower button */
    padding: 10px 20px !important;
    letter-spacing: .10em !important;
  }
}

/* extra-small phones */
@media (max-width: 400px) {
  #merch-cta-btn {
    font-size: 13px !important;
    padding: 9px 18px !important;
  }
}
