/* Base background and text */
body {
  background-color: #0b0b0b;
  color: #fcefdc;
  font-family: 'Georgia', serif;
  line-height: 1.6;
  margin: 0;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #fce3b8;
}

/* Layout container for nav cards */
.nav-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
}

/* Individual nav card */
.nav-card {
  background-color: #141414;
  border: 1px solid #222;
  box-shadow: 0 0 10px rgba(232, 154, 69, 0.15);
  border-radius: 8px;
  margin: 15px;
  padding: 25px;
  width: 260px;
  text-align: center;
  transition: all 0.3s ease;
}

/* Card hover animation */
.nav-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(232, 154, 69, 0.3);
}

/* Paragraphs in nav cards */
.nav-card p {
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  color: #d5c8b3;
}

/* Header styling */
header {
  text-align: center;
  padding: 80px 20px 40px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(15, 15, 15, 0.95));
}

/* Header text */
header h1 {
  font-size: 3.5rem;
  margin: 0;
  letter-spacing: 2px;
}

header p {
  font-family: 'Georgia', serif;
  font-size: 1.2rem;
  color: #d9c6aa;
  margin-top: 10px;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
  color: #888;
}

/* Accent Color for links/buttons */
a, .button, .enter-btn {
  background-color: #e89a45;
  color: #0b0b0b;
  border: none;
  padding: 8px 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

/* Hover state for all buttons/links */
a:hover, .button:hover, .enter-btn:hover {
  background-color: #f8b35a;
  color: #000;
}

/* Utility class for stacked links inside cards */
.button-link {
  display: inline-block;
  margin: 8px auto 0;
  padding: 8px 14px;
  background-color: #e89a45;
  color: #0b0b0b;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button-link:hover {
  background-color: #f8b35a;
  color: #000;
}
