:root {
  --primary-color: #0b3d26;
  --secondary-color: #c49a45;
  --accent-gold: #dfb256;
  --light-bg: #ece9e3;
  --card-bg: #fbf9f5;
  --text-dark: #1b2620;
  --border-color: #d8cfbc;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background-color: var(--light-bg);
  background-image: linear-gradient(to bottom, #f3f0ea 0%, #e6e2d8 100%);
  color: var(--text-dark);
  line-height: 1.6;
}

/* HEADER WITH CLEARER CROPPED ASTRO BANNER */
header {
  position: relative;
  /* Lighter overlay to let the bright astro photo show through clearly */
  background: 
    linear-gradient(rgba(11, 61, 38, 0.45), rgba(8, 35, 23, 0.55)),
    url('astro.jpg') center 50% / cover no-repeat;
  color: white;
  text-align: center;
  padding: 40px 20px 30px 20px;
  border-bottom: 5px solid var(--secondary-color);
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.crest-logo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 3px solid var(--secondary-color);
  box-shadow: 0 4px 14px rgba(0,0,0,0.7);
  margin-bottom: 10px;
  object-fit: cover;
  background-color: #fff;
}

header h1 {
  font-size: 2.3rem;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
  /* Strong text drop-shadow to keep text crisp against the clearer background */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.95), 0px 0px 10px rgba(0, 0, 0, 0.8);
}

/* PROMINENT DATE BADGE */
.date-badge {
  display: inline-block;
  background-color: var(--secondary-color);
  color: #000;
  font-family: sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  padding: 6px 22px;
  border-radius: 25px;
  margin-top: 10px;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  text-transform: uppercase;
}

header h3 {
  font-weight: bold;
  font-size: 1.05rem;
  margin-top: 12px;
  color: #ffffff;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9), 0px 0px 8px rgba(0, 0, 0, 0.8);
}

/* NAVIGATION BAR */
nav {
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 12px;
  border-bottom: 2px solid var(--secondary-color);
  flex-wrap: wrap;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(223, 178, 86, 0.4);
}

nav a:hover, nav a.active {
  background-color: var(--secondary-color);
  color: #000;
}

/* CONTAINER */
.container {
  max-width: 1050px;
  margin: 30px auto;
  padding: 0 15px;
}

/* PANELS */
.panel {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.panel-title {
  text-align: center;
  color: var(--primary-color);
  font-size: 1.4rem;
  border-bottom: 1px solid var(--secondary-color);
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* GRIDS */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 15px;
}

/* COST CARDS */
.cost-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-top: 5px solid var(--primary-color);
  border-radius: 6px;
  padding: 15px;
  text-align: center;
}

.cost-card h4 {
  background: var(--primary-color);
  color: white;
  padding: 4px;
  border-radius: 3px;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.cost-card .price {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 8px;
}

/* CTA BANNER & BUTTON */
.cta-banner {
  background-color: #e3ede7;
  border: 1px solid var(--primary-color);
  text-align: center;
  padding: 15px;
  border-radius: 6px;
  margin-top: 20px;
}

.btn-entry {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  font-family: sans-serif;
  border-radius: 4px;
  margin-top: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.btn-entry:hover {
  background-color: var(--secondary-color);
  color: black;
}

/* TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  background: #fff;
}

table th, table td {
  border: 1px solid var(--border-color);
  padding: 10px;
  font-size: 0.9rem;
}

table th {
  background-color: #f0ebd9;
  color: var(--primary-color);
}

footer {
  text-align: center;
  background-color: var(--primary-color);
  color: white;
  padding: 20px;
  margin-top: 40px;
  border-top: 3px solid var(--secondary-color);
  font-size: 0.9rem;
}

@media(max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  header h1 { font-size: 1.7rem; }
  .date-badge { font-size: 1rem; }
}