/* Translates to your React Theme Provider or Global CSS */
:root {
  /* Core Palette */
  --navy-bg: #091319;
  --navy-card: #080e14;
  --gold-accent: #d4af37;
  --teal-accent: #008080;

  /* Typography */
  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --font-main: "Inter", sans-serif;
}

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

body {
  background-color: var(--navy-bg);
  color: var(--text-light);
  font-family: var(--font-main);
  line-height: 1.6;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--navy-bg);
  box-shadow: 0px 1px 0px 0px rgba(148, 163, 184, 0.2);
  -webkit-box-shadow: 0px 1px 0px 0px rgba(148, 163, 184, 0.2);
  -moz-box-shadow: 0px 1px 0px 0px rgba(148, 163, 184, 0.2);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 10px;
  margin: 0 auto;
}

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

.btn-gold {
  padding: 10px 20px;
  color: var(--navy-card);
  background-color: var(--gold-accent);
  font-weight: 600;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--text-light);
  transition: all ease-in-out 0.5s;
  transform: translateX(-1px);
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo-section img {
  width: 70px;
  height: auto;
}

.logo-section .text-dim {
  font-size: 20px;
  color: var(--text-muted);
  font-weight: 400;
}

.logo-section .text-white {
  color: var(--text-light);
  font-size: 20px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link:hover {
  /* text-decoration: underline; */
  /* transition: all ease-in-out 0.5s; */
  color: var(--text-light);
}

.hero {
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 150px 100px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-tex-gold {
  color: var(--gold-accent);
}

.hero-top-text {
  font-weight: 900;
  font-size: 100px;
  line-height: 1;
}

.hero-sub-text {
  color: var(--teal-accent);
  font-family: "Courier New", Courier, monospace;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: inline-block;
}

.hero-bottom-text {
  margin-top: 20px;
  color: var(--text-muted);
  max-width: 600px;
}

.action-group {
  display: flex;
  align-items: center;
  margin-top: 30px;
  gap: 30px;
}

.btn-primary {
  background-color: var(--gold-accent);
  color: var(--navy-card);
  padding: 16px 32px;
  text-decoration: none;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--text-light);
  transition: all 0.3s ease;
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--text-light);
  text-decoration: none;
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--teal-accent);
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.btn-secondary:hover {
  color: var(--teal-accent);
}
