/* Reset / Base */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background-color: #fdfdfd;
  color: #222;
}

main {
  padding: 2em;
  max-width: 900px;
  margin: auto;
}

/* Header */
header {
  background-color: #CC5500; /* Burnt Orange */
  color: #000000;
  padding: 1em;
  text-align: center;
}

header h1 {
  margin: 0.2em 0;
}

header nav {
  margin-top: 0.5em;
}

header nav a {
  color: #000000;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

header nav a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #CC5500; /* Burnt Orange */
  color: #000000;
  text-align: center;
  padding: 1em;
  margin-top: 2em;
}

footer a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}

/* Sections */
section {
  margin-bottom: 2em;
}

section h2 {
  border-bottom: 2px solid #CC5500;
  padding-bottom: 0.3em;
  margin-bottom: 1em;
  color: #000000;
}

/* Buttons / Links */
.button, button, input[type="submit"] {
  display: inline-block;
  background-color: #CC5500;
  color: #000000;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
}

.button:hover, button:hover, input[type="submit"]:hover {
  background-color: #e65c00; /* slightly lighter orange */
}

/* Event List */
.event-list {
  list-style: none;
  padding: 0;
}

.event-item {
  border: 1px solid #ccc;
  border-left: 5px solid #CC5500;
  margin-bottom: 1em;
  padding: 1em;
  background: #fff;
}

/* Forms */
form label {
  display: block;
  margin: 0.5em 0 0.2em;
}

input[type="text"], input[type="email"], input[type="date"], textarea {
  width: 100%;
  max-width: 500px;
  padding: 8px;
  border: 1px solid #aaa;
  border-radius: 4px;
  margin-bottom: 1em;
  font-size: 1em;
}

/* Tables (Admin Area) */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 1em 0;
}

table th, table td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

table th {
  background-color: #eee;
}
