/*
Theme Name: E-X-A-M-P-L-E
Theme URI: https://www.e-x-a-m-p-l-e.com
Author: E-X-A-M-P-L-E
Description: A minimal custom theme for a scarce digital asset.
Version: 1.0
License: GPL v2 or later
Text Domain: e-x-a-m-p-l-e
*/

body {
  background: #ffffff;
  margin: 0;
  font-family: "JetBrains Mono", monospace;
}

/* BRAND */
.brand-header {
  text-align: center;
  padding-top: 48px;
}

.text-logo {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 14px;
}

.tagline {
  margin-top: 14px;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #222;
}

/* MARQUEE */
.luxury-marquee {
  width: 100%;
  overflow: hidden;
  margin-top: 48px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 16px;
  padding: 18px 0;
}

.marquee-track span {
  margin: 0 28px;
}

.dot {
  opacity: 0.6;
}

/* TEASER */
.teaser {
  margin-top: 110px;
  text-align: center;
}

.teaser-big {
  display: block;
  font-size: 35px;
  font-weight: 800;
  text-transform: uppercase;
}

.teaser-small {
  display: block;
  margin-top: 14px;
  font-size: 16px;
  opacity: 0.75;
}

/* OFFER */
.offer-section {
  text-align: center;
  margin-top: 140px;
}

.headline {
  font-size: 28px;
  letter-spacing: 7px;
  margin-bottom: 48px;
}

.price {
  font-size: 86px;
  font-weight: 700;
  margin-bottom: 32px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

#countValue {
  display: inline-block;
  min-width: 14ch; /* fits 11,000,000,000 */
  text-align: left;
}

.note {
  font-size: 17px;
  color: #222;
}

/* BUY NOW */
.buy-now {
  margin-top: 48px;
}

.buy-now-link {
  font-size: 18px;
  letter-spacing: 3px;
  text-decoration: none;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.buy-now-link:hover {
  transform: translateX(4px);
  opacity: 0.8;
}

/* ARROW FIX (NO EMOJI BOX) */
.arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  position: relative;
  vertical-align: middle;
}

.arrow::after {
  content: "\2197"; /* ↗ */
  font-family: "JetBrains Mono", monospace;
  font-size: 20px;
  line-height: 1;
  display: block;
  position: relative;
  top: -1px;
}

.arrow,
.arrow::after {
  font-variant-emoji: text;
}



/* QUESTION */
.value-question {
  margin-top: 120px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.scroll-arrow {
  font-size: 28px;
  animation: scrollBounce 1.6s infinite;
  opacity: 0.6;
}

@keyframes scrollBounce {
  0% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(10px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.6; }
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .text-logo {
    font-size: 24px;
    letter-spacing: 8px;
  }
  .teaser {
    margin-top: 70px;
  }
  .teaser-big {
    font-size: 24px;
  }
  .teaser-small {
    font-size: 13px;
  }
  .headline {
    font-size: 20px;
    letter-spacing: 4px;
  }
  .price {
    font-size: 48px;
  }
  .value-question {
    font-size: 18px;
    margin-top: 80px;
  }
}

/* MARQUEE ANIMATION */
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* STORY CONTAINER */
.story-section {
  margin-top: 40px;
  padding: 0 20px 160px;
}

.story-content {
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

/* PARAGRAPH TYPOGRAPHY */
.story-content p {
  font-family: Roboto, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.9;
  margin-bottom: 28px;
  color: #000000;
}

#jet-paragraph {
  font-family: "JetBrains Mono", monospace;
  font-size: 30px;
  position: relative;
  padding-left: 48px;
}

#jet-paragraph::before {
  content: "\2014"; /* em dash — */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 38px;
  line-height: 1;
}

.manifesto {
  text-align: center;
  margin: 100px 0;
}

.manifesto-line-one {
  font-family: "Oleo Script Swash Caps", system-ui;
  font-size: 40px;
  line-height: 1.4;
}

.manifesto-line-two {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  margin-top: 12px;
}

.footer-gif {
  display: flex;
  justify-content: center;
  margin: 120px 0 40px;
}

.footer-gif img {
  max-width: 240px;
  width: 100%;
  height: auto;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid #e5e5e5;
  margin-top: 160px;
  padding: 80px 20px 60px;
  background: #ffffff;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-family: "JetBrains Mono", monospace;
  font-size: 39px;
  font-weight: 800;
  letter-spacing: 6px;
}

.footer-tagline {
  margin-top: 12px;
  font-family: Roboto, system-ui, sans-serif;
  font-size: 14px;
  color: #444;
}

.footer-links {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  opacity: 0.7;
  transition: opacity 0.25s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-meta {
  margin-top: 40px;
  font-family: Roboto, system-ui, sans-serif;
  font-size: 13px;
  color: #666;
}

/* SUPPORT */
.support-note {
  text-align: center;
  margin: 40px 20px 80px;
}

.support-note p {
  font-family: Roboto, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #000000;
  max-width: 520px;
  margin: 0 auto 18px;
}

.support-now-link {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  letter-spacing: 3px;
  text-decoration: none;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid #000;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.support-now-link:hover {
  transform: translateX(4px);
  opacity: 0.8;
}

/* EXTRA RESPONSIVE SAFETY */
@media (max-width: 360px) {
  .price { font-size: 40px; }
  .text-logo { letter-spacing: 6px; }
}

@media (min-width: 1800px) {
  .story-content { max-width: 1100px; }
}

html, body {
  overflow-x: hidden;
}

.page-content {
  padding: 120px 20px;
}

.page-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* WordPress page text */
.page-inner p,
.page-inner li {
  font-family: Roboto, system-ui, sans-serif;
  font-size: 20px;
  line-height: 1.8;
  color: #000;
}

/* WordPress page headings */
.page-inner h1,
.page-inner h2,
.page-inner h3,
.page-inner h4 {
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 1px;
}

/* Reduce footer gap on inner pages */
body.page .story-section {
  padding-bottom: 80px;
}

.text-logo-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.text-logo-link:hover {
  opacity: 0.85;
}

.footer-logo-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.footer-logo-link:hover {
  opacity: 0.85;
}

/* INNER PAGES ONLY — reduce space above footer */
body.page .story-section {
  padding-bottom: 40px;
}

/* INNER PAGES ONLY — avoid stacked padding */
body.page .page-content {
  padding-bottom: 40px;
}
