/* Base Page */
body {
  font-family: "Times New Roman", serif;
  color: #dbe6ff; /* pale moonlight text */
  min-height: 100vh;
  background: url("stars.png") repeat center center;
  background-size: auto;
  background-attachment: scroll; /* stars move with scroll */
  background-color: #050510; /* deep night */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
  padding: 0;
}

/* Header Banner */
header {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.img-resize { 
    object-fit: contain;
    max-width: 100%;
}

#header-image {
  width: 100%;
  max-width: 100%;
  height: auto; /* keeps full image visible on all screens */
  display: block;
}

/* Site Title */
#site-title {
  font-size: 2.6rem;
  font-weight: bold;
  color: #7dbbff;
  letter-spacing: 2px;
  margin: 1rem 0 2rem 0;
  text-shadow: 0 0 12px #7dbbff, 0 0 20px #80c0ff; /* glowing blue */
  text-align: center;
  z-index: 2;
}

/* Main Container */
#container {
  background: rgba(10, 15, 25, 0.9); /* dark shrine box */
  padding: 3rem;
  max-width: 1100px;
  width: 95%;
  border: 2px solid rgba(160, 200, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0,0,0,0.7);
  border-radius: 0px;
  text-align: center;
  margin-bottom: 2rem;
}

/* Headings */
h1, h2, h3 {
  margin-bottom: 1rem;
  color: #7dbbff;
  font-family: "Georgia", serif;
  font-weight: bold;
  text-align: center;
}

/* Paragraphs */
p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
  color: #dbe6ff;
  text-align: center;
}

/* Links */
a {
  color: #80c0ff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}
a:hover {
  color: #b5d8ff;
}

/* Buttons */
button {
  background: #2a4d7a;
  color: #dbe6ff;
  padding: 12px 28px;
  border-radius: 0px;
  border: 2px solid #80c0ff;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s ease;
}
button:hover {
  background: #3a6399;
  border-color: #a4d1ff;
}
