/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;700&family=Mina:wght@400;700&display=swap");

body.dark-mode {
  background: #0a0a0a;
  font-family: "Mina", sans-serif;
  color: #eee;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo,
.navbar a,
.hero h1,
section h2,
footer h1 {
  font-family: "Archivo", sans-serif;
}

header,
footer {
  background: #111;
  border-bottom: 2px solid #333;
  padding: 1.25em 2em;
}

.logo {
  font-family: "Archivo", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #c00;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}
.logo-img {
  max-height: 80px;
  width: auto;
  display: block;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5em;
}

.nav-links li {
  list-style: none;
  display: inline-block;
  margin-left: 1.5em;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
}

.nav-links a:hover {
  color: #f00;
}

.hero {
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 6em 2em;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.hero h1 {
  font-size: 4rem;
  color: #fff;
  text-shadow: 0 0 10px #900;
  margin-bottom: 0.5em;
}

.hero p {
  font-size: 1.25rem;
  color: #bbb;
  margin-top: 1em;
}

.intro {
  padding: 4em 2em;
  background: #111;
  border-top: 1px solid #222;
  max-width: 800px;
  margin: 0 auto;
}

section h2 {
  font-size: 2.25rem;
  margin-bottom: 0.75em;
  color: #d00;
  text-align: center;
}

.global-social-links {
  margin: 3em auto;
  text-align: center;
}

.global-social-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5em;
}

.global-social-links li a {
  color: #ccc;
  font-size: 1.1em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.global-social-links li a:hover {
  color: #f00;
}

.global-social-links i {
  margin-right: 0.4em;
}

.global-social-links a.locked {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.global-social-links a.locked::after {
  content: " (locked)";
  font-size: 0.85em;
  color: #888;
}
