/* ===== Global Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  background: url("images/site-background.png") no-repeat center center fixed;
  background-size: cover;
  color: #f5f5f5;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ===== Typography ===== */
h1, h2 {
  font-family: 'UnifrakturCook', cursive;
  color: #ffd700;
  font-weight: normal;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.6);
}

h1 {
  font-size: 3rem;
  text-align: center;
  margin-top: 2rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 800px;
  margin-bottom: 1rem;
}

/* ===== Layout & Sections ===== */
header {
  background: url('images/crucible.gif') no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 40px 0;
  color: white;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

body {
  background: url('images/site-background.png') no-repeat center top 200px;
  background-size: contain;
  background-attatchment: fixed;
  background-color: #0d0d0d;
  color: #fff;
  font-family: 'Georgia', serif;
  margin: 0;
  padding: 0;
}

main {
  background-color: rgba(0, 0, 0, 0.75);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section {
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  margin: 2rem 0;
  width: 90%;
  max-width: 1000px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-flex img.crest {
  max-width: 150px;
  height: auto;
  filter: drop-shadow(0 0 5px gold);
}

/* ===== Navigation ===== */
nav {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 1rem 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-family: 'Georgia', serif;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #ffd700;
}

/* ===== Hero ===== */
.hero {
  padding: 4rem 2rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== Images ===== */
.icon {
  width: 140px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  margin: 1rem 0;
}

/* ===== Buttons ===== */
.enter-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #ffd700;
  color: #000;
  font-weight: bold;
  font-family: 'Georgia', serif;
  border-radius: 30px;
  box-shadow: 0 0 10px #ffd700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.enter-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #fff28f;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.8);
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 4rem;
}
