/* PursuitScripts — Brand Styles */

:root {
  --primary: #f59e0b; /* Amber/Gold */
  --secondary: #d97706; /* Darker amber */
  --background: #1a1a2e; /* Dark navy */
  --card-bg: #16213e; /* Card background */
  --text: #e5e5e5; /* Light text */
  --text-muted: #94a3b8; /* Muted text */
  --success: #22c55e; /* Green */
  --error: #ef4444; /* Red */
  --warning: #eab308; /* Yellow */
  --accent: var(--primary);
}

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

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s;
}

ul {
  list-style: none;
}

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

section {
  padding: 5rem 0;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: #000;
}

.btn-primary:hover {
  background-color: var(--secondary);
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: rgba(245, 158, 11, 0.1);
}

/* Navigation */
nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.nav-links a:hover {
  color: var(--primary);
}

/* Hero */
.hero {
  text-align: center;
  padding: 10rem 0 8rem;
  background-image:
    linear-gradient(rgba(26, 26, 46, 0.85), rgba(26, 26, 46, 0.7)),
    url("../img/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background-color: var(--card-bg);
  background-image:
    linear-gradient(rgba(22, 33, 62, 0.9), rgba(22, 33, 62, 0.95)),
    url("../img/card-bg.png");
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}

/* Backgrounds & Sections */
.survival-collection {
  background-image:
    linear-gradient(
      to bottom,
      var(--background),
      rgba(26, 26, 46, 0.8) 15%,
      rgba(26, 26, 46, 0.8) 85%,
      var(--background)
    ),
    url("../img/survival-bg.png");
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
}

.section-divider {
  height: 200px;
  width: 100%;
  background-image: url("../img/divider-bg.png");
  background-size: cover;
  background-position: center;
  margin: 4rem 0;
  opacity: 0.8;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 20%,
    black 80%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 20%,
    black 80%,
    transparent
  );
}

.trashhunt-header {
  background-image:
    linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.8)),
    url("../img/trashhunt-bg.png");
  background-size: cover;
  background-position: center;
  padding: 6rem 0 4rem;
  border-radius: 0 0 2rem 2rem;
  margin-bottom: 3rem;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.feature-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.nui-showcase {
  background-image: url("../img/nui-bg.png");
  background-size: cover;
  background-position: center;
  padding: 3rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5) inset;
  margin-bottom: 3rem;
}

/* Footer */
footer {
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 5rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-col h4 {
  margin-bottom: 1.5rem;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-bottom {
  margin-top: 4rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Coming Soon Badges */
.badge-coming-soon {
  background-color: var(--warning);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.card.coming-soon {
  opacity: 0.8;
  border-style: dashed;
}

.card.coming-soon:hover {
  opacity: 1;
  border-style: solid;
}
