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

/* === Base Styles === */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #e7eaf0; /* Light background, can swap for a tiled image for retro vibes */
  color: #232323;
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
}

/* Optional: Retro tiled background example */
/*
body {
  background: url('images/bg-tile.gif') repeat;
}
*/

/* === Container === */
.container {
  max-width: 900px;
  margin: 2em auto;
  padding: 2em;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

/* === Headings === */
h1, h2, h3, h4, h5, h6 {
  font-family: Verdana, Arial, sans-serif;
  margin-bottom: 0.5em;
  font-weight: bold;
  color: #003366;
}

h1 { font-size: 2.2em; margin-top: 0.5em; }
h2 { font-size: 1.6em; margin-top: 1em; }
h3 { font-size: 1.2em; margin-top: 1.5em; }

/* === Links === */
a {
  color: #0066cc;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ff6600;
  outline: none;
}

/* === Navigation Bar === */
nav {
  background: #003366;
  color: #fff;
  padding: 0.8em 1em;
  margin-bottom: 1.5em;
  border-radius: 4px 4px 0 0;
  font-size: 1.1em;
}
nav a {
  color: #fff;
  text-decoration: none;
  margin-right: 2em;
  font-weight: bold;
  letter-spacing: 0.03em;
}
nav a:hover, nav a:focus {
  color: #ffcc00;
  text-decoration: underline;
}

/* === Tables (for venue specs etc.) === */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  background: #f9f9ff;
  font-size: 1em;
}
th, td {
  border: 1px solid #bbb;
  padding: 0.6em 0.8em;
  text-align: left;
}
th {
  background: #eef3fa;
  color: #003366;
  font-weight: bold;
}
tr:nth-child(even) {
  background: #f2f5fa;
}

/* === Buttons === */
button, .button {
  background: #0066cc;
  color: #fff;
  border: none;
  padding: 0.5em 1.2em;
  border-radius: 3px;
  cursor: pointer;
  font-size: 1em;
  margin: 0.5em 0;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: #003366;
  color: #fff;
}

/* === Images === */
img {
  max-width: 100%;
  height: auto;
  border-radius: 3px;
}

/* === Forms === */
input, select, textarea {
  padding: 0.4em;
  border: 1px solid #bbb;
  border-radius: 3px;
  font-size: 1em;
  margin: 0.3em 0;
}
input:focus, select:focus, textarea:focus {
  border-color: #0066cc;
  outline: none;
}

/* === Lists === */
ul, ol {
  margin: 1em 0 1em 2em;
  padding-left: 1.2em;
}

/* === Horizontal Rule === */
hr {
  border: 0;
  border-top: 2px solid #003366;
  margin: 2em 0;
}

/* === Utility Classes === */
.mt-1 { margin-top: 1em; }
.mb-1 { margin-bottom: 1em; }
.text-center { text-align: center; }
.bold { font-weight: bold; }

/* === Footer === */
footer {
  margin-top: 3em;
  padding: 1em 0;
  text-align: center;
  color: #888;
  font-size: 0.95em;
  border-top: 1px solid #ccc;
  background: #f3f6fb;
  border-radius: 0 0 4px 4px;
}

/* === Responsive (mobile-friendly) tweaks === */
@media (max-width: 600px) {
  .container {
    padding: 0.7em;
  }
  nav {
    font-size: 1em;
    padding: 0.6em;
  }
  th, td {
    padding: 0.4em 0.5em;
    font-size: 0.98em;
  }
  h1 { font-size: 1.4em; }
  h2 { font-size: 1.15em; }
}