/* ============================================================
   Acme News Unified Stylesheet
   Supports: index.html + privacy.html
   Theme: Dark / Accent Orange (#ff7c0a)
   ============================================================ */

/* === Base === */
html, body {
  margin: 0;
  padding: 0;
  font-family: "Source Sans 3", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #e6e6e6;
  background-color: #141414;
  line-height: 1.6;
  text-align: center;
}

/* Headings & text */
h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
}

h1 {
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

h2, h3 {
  color: #ff7c0a;
}

h4 {
  color: #ff7c0a;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin: 1.5rem 0 0.5rem;
}

p {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
}

/* Divider */
hr {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  width: 60%;
  margin: 0.5rem auto 1rem;
}

/* === Layout === */
.container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 1rem;
}

.column {
  max-width: 420px;
  width: 100%;
}

/* === Logo / Avatar === */
.avatar {
  width: 110px;
  border-radius: 12px;
  margin-top: 1.75rem;
  margin-bottom: 0.10rem;
}

/* === Buttons === */
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  text-decoration: none;
  border-radius: 10px;
  padding: 0.95rem 1.1rem;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* Primary (bright orange) */
.button-acmenews_primary {
  background-color: #ff7c0a;
  border: 2px solid #cc6108; /* darker orange border */
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 10px rgba(255, 124, 10, 0.35); /* subtle glow */
  transition: all 0.25s ease;
}

.button-acmenews_primary:hover {
  background-color: #ff8f2c; /* slightly lighter on hover */
  border-color: #e6750b;
  box-shadow: 0 0 16px rgba(255, 140, 20, 0.5);
  transform: translateY(-2px);
}

/* === Icons === */
.icon {
  width: 18px;
  height: 18px;
}

/* === Button stack wrapper === */
.button-stack {
  max-width: 360px;
  margin: 0 auto;
}

/* === Footer === */
footer {
  font-size: 0.9rem;
  text-align: center;
  color: #bfbfbf;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1rem;
}

footer a {
  color: #8c8c8c;
  text-decoration: none;
}

footer a:hover {
  color: #ff7c0a;
  text-decoration: underline;
}

/* === Privacy Page === */
.privacy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: left;
}

.privacy-container h1 {
  text-align: center;
  color: #fff;
  border-bottom: 2px solid #ff7c0a;
  display: inline-block;
  padding-bottom: 0.25rem;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.privacy-container h2 {
  color: #ff7c0a;
  margin-top: 2rem;
  font-size: 1.25rem;
}

.privacy-container h3 {
  color: #fff;
  font-size: 1rem;
  margin-top: 1.5rem;
}

.privacy-container p {
  color: #d0d0d0;
  margin-bottom: 1rem;
}

.privacy-container ul {
  list-style: none;
  padding: 0;
}

.privacy-container li {
  color: #c7c7c7;
  margin: 0.25rem 0;
}

.privacy-container a {
  color: #ff7c0a;
  text-decoration: none;
}

.privacy-container a:hover {
  text-decoration: underline;
}

/* Privacy nav */
.privacy-nav {
  text-align: left;
  padding: 1rem 2rem;
}

.privacy-nav a {
  color: #bfbfbf;
  text-decoration: none;
  font-size: 0.95rem;
}

.privacy-nav a:hover {
  color: #ff7c0a;
}

/* Privacy footer */
.privacy-footer {
  text-align: center;
  font-size: 0.9rem;
  color: #9e9e9e;
  border-top: 1px solid #2a2a2a;
  margin-top: 3rem;
  padding: 1.5rem 0;
}

.privacy-footer a {
  color: #9e9e9e;
}

.privacy-footer a:hover {
  color: #ff7c0a;
}

/* === Responsive === */
@media (max-width: 600px) {
  body {
    font-size: 0.95rem;
  }

  .privacy-container {
    padding: 1.5rem;
  }

  .button {
    font-size: 1rem;
    padding: 0.85rem 1rem;
  }

  .button-stack {
    width: 100%;
  }

  h1 {
    font-size: 1.75rem;
  }
}
