/* ========================
   Global Styles
======================== */
:root {
  --bg: #121212;
  --bg-alt: #1c1c1c;
  --text: #eaeaea;
  --accent: #FF8200;
  --blue: #2d9cdb;
  --radius: 12px;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg) url("/assets/img/carbon-fiber.png") repeat;
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--text);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================
   Header
======================== */
.site-header {
  background: var(--bg-alt);
  border-bottom: 2px solid var(--accent);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: var(--accent);
  background: var(--text);
  padding: 4px 10px;
  border-radius: var(--radius);
}

.logo-large {
  font-size: 36px;
  font-weight: bold;
  color: var(--accent);
  background: var(--text);
  padding: 8px 8px;
  border-radius: var(--radius);
}

.site-title h1 {
  font-size: 20px;
  color: var(--text);
}

.tagline {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  margin-top: 2px;
}

/* Nav Links */
.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  font-weight: bold;
}

/* Hamburger button */
.nav-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  margin-left: auto;
}

/* Mobile nav */
@media (max-width: 850px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: var(--bg-alt);
    position: absolute;
    top: 100%;
    right: 0;
    padding: 12px;
    border-radius: var(--radius);
    box-shadow: 0 2px 6px rgba(0,0,0,0.6);
    z-index: 999;
  }

  .nav.show {
    display: flex;
  }
}

/* ========================
   Hero Section
======================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 20px;
  gap: 40px;
}

.hero-left {
  text-align: left;   /* text stays left aligned */
  flex: 1;
}

.hero-left .download-btn {
  display: block;     /* makes the button behave like a block element */
  margin: 1.5rem auto; /* centers horizontally */
  text-align: center;
  width: fit-content; /* keeps the button width to its content */
}

.hero-left h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--accent);
}

.hero-left p {
  margin-bottom: 20px;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-right-top {
  flex: 1;
  display: flex;
  justify-content: center;
  align-self: flex-start;
}

.hero-screenshot {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

/* Stack hero on mobile */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .hero-right {
    margin-top: 20px;
  }
}

/* ========================
   Buttons
======================== */
.button {
  display: inline-block;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  font-weight: bold;
  border-radius: var(--radius);
  transition: background 0.2s ease;
}

.button:hover {
  background: var(--blue);
  color: #fff;
}

/* ========================
   Footer
======================== */
.site-footer {
  text-align: center;
  padding: 20px;
  background: var(--bg-alt);
  border-top: 2px solid var(--accent);
  margin-top: 40px;
  font-size: 14px;
}

.info-page ul {
  margin-left: 20px; /* shifts list to the right */
}

/* Info page: indent lists slightly to the right */
.info-page ul,
.info-page ol {
  margin-left: 28px;    /* pushes the list to the right */
  padding-left: 12px;   /* ensures bullets stay visible */
  list-style-position: outside;
}

/* If there are nested lists, keep them readable */
.info-page ul ul,
.info-page ol ol {
  margin-left: 18px;
  padding-left: 8px;
}

/* Visual check: make list text a little lighter so it's obvious */
.info-page li {
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 18px;
  background: var(--accent);
  color: var(--text);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.6);
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--accent); color: var(--text); transform: translateY(-2px); }
  
.brand-hero {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.app-icon {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.tagline-hero {
  font-size: 1.4em;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}

.supporting-line {
  font-size: 1em;
  color: var(--muted);
  margin-bottom: 20px;
}

.donation-box {
  background: var(--bg-alt);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  text-align: left;
}

.donation-box p {
  margin-bottom: 14px;
}

.donation-box .verse {
  font-size: 14px;
  color: var(--blue);
  text-align: center;
  margin-top: 20px;
}

.bmc-button-wrapper {
  text-align: center;
  margin: 15px 0;
}

.small-text {
  font-size: 12px;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: 1fr; /* 1 column on mobile */
  gap: 2rem;
}

.screenshot-item {
  text-align: center;
}

.screenshot-item img {
  max-width: 100%;
  height: auto;
  border: 2px solid #333;
  border-radius: 8px;
}

/* 2 columns for tablets & desktops */
@media (min-width: 768px) {
  .screenshots-grid {
    grid-template-columns: 1fr 1fr;
  }
}
