/* --- GLOBAL STYLES --- */
body {
  margin: 0;
  font-family: 'Trajan Pro', serif;
  background: url("Copilot_20260712_133428_2.png") no-repeat center center
fixed;
  background-size: cover;
  color: #F7E7CE;
  text-align: center;
}

/* --- HEADER --- */
header {
  position: relative;
  padding: 40px 20px;
  background: none;   /* no overlay */
}

.logo-overlay {
  width: 90px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

/* --- NAVIGATION --- */
nav {
  padding: 15px 0;
  background: none;   /* no overlay */
}

nav a {
  color: #FFD700;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #FFA500;
}

/* --- SECTIONS --- */
section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
  background: none;   /* no overlay */
}

/* --- FOOTER --- */
footer {
  padding: 20px;
  color: #FFD700;
  font-size: 0.9em;
  background: none;   /* no overlay */
}

/* --- CATALOG COLUMNS --- */
.catalog-columns {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.catalog-column {
  flex: 1;
  margin: 0 10px;
}

.catalog-column h3 {
  font-family: 'Trajan Pro Bold', serif;
  margin-bottom: 10px;
}

.catalog-column ul {
  list-style-type: disc;
  padding: 0 40px;   /* pushes bullets away from edge */
  text-align: left;
}

/* Normal link */
a {
  color: #FFD700;
  text-decoration: none;
}

a:hover {
  color: #FFA500;
  text-decoration: underline;
}

a:visited {
  color: #999999;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #555;
}

.email-link {
  color: #FFD700;        /* light gold */
  text-decoration: none; /* removes underline */
  font-weight: bold;
}

.email-link:hover {
  color: #FFA500;        /* orange-gold on hover */
  text-decoration: underline;
}

