/* Base styles and variables */
:root {
  --text: #ececec;
  --muted: #d6d3d1;
  --accent: #d4af37; /* Gold/amber accent color */
  --border: rgba(255, 255, 255, 0.1);
  --btn-bg: #e9e3dc;
  --btn-text: #1b1b1b;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial;
  background: linear-gradient(to bottom, rgba(11, 15, 20, 0.2), rgba(11, 15, 20, 0.9)),
  url('../img/08c8c3c2-6536-4022-826f-87216fdf075e.png') center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  margin: 0 0 16px;
}

p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 20px;
}

a {
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
}

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

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--btn-bg);
  color: var(--btn-text);
  transition: all 0.2s ease;
}

.btn:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

/* Navigation */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  backdrop-filter: blur(6px);
  z-index: 10;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 8px 14px;
  transition: background 0.2s ease;
}

.nav a:hover,
.nav a.active {
  background: rgba(255, 255, 255, 0.1);
}

/* Utility classes */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}
