/* Base font for everything */
body {
  font-family: Verdana, sans-serif;
  font-size: 10px;
  line-height: 1.4;
  margin: 2em;
  background-color: #e0e0e0;
}

/* Centered boundary box */
.container {
  width: 50%;
  margin: 0 auto;
  border: 1px solid #ccc;
  padding: 2em;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* Headings */
h1 {
  font-size: 28px;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
h2 {
  font-size: 18px;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

/* Paragraphs */
p {
  line-height: 2;
}

/* Links */
a {
  text-decoration: none;
}

/* Navigation */
nav {
  background-color: #333;
}
ul.nav {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
ul.nav li {
  float: left;
  margin: 0;
}
ul.nav li a {
  display: block;
  color: #fff;
  padding: 0.75em 1em;
}
ul.nav li + li a {
  border-left: 1px solid #fff;
}

/* Responsive image */
.container img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1em 0;
}

/* Workshop Pricing Cards */
.pricing-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #eef7ff;
  border: 2px solid #0077cc;
  border-radius: 12px;
  padding: 1.2em 1.5em;
  margin-bottom: 1em;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}
.pricing-card:hover {
  transform: scale(1.01);
}
.ticket-info {
  display: flex;
  flex-direction: column;
}
.ticket-label {
  font-weight: bold;
  font-size: 1.2em;
  color: #222;
}
.ticket-sub {
  font-size: 0.9em;
  color: #666;
  margin-top: 0.25em;
}
.ticket-price {
  display: flex;
  align-items: center;
  font-size: 1.6em;
  font-weight: bold;
  color: #0077cc;
}
.ticket-price img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 0.5em;
}

/* Schedule Table */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
  background-color: #ffffff;
  border: 1px solid #ccc;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.05);
}
.schedule-table th,
.schedule-table td {
  padding: 0.75em 1em;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.schedule-table th {
  background-color: #f4f4f4;
  font-weight: bold;
  font-size: 1em;
  color: #333;
}
.schedule-table td {
  font-size: 0.95em;
  color: #222;
}
.schedule-table tr:last-child td {
  border-bottom: none;
}

/* Event Dates Section */
.event-dates {
  margin-top: 50px;
  margin-bottom: 30px;
}
.event-dates h2 {
  font-size: 1.8em;
  margin-bottom: 25px;
  color: #003366;
}

/* Event Cards */
.event-card {
  display: flex;
  align-items: center;
  background-color: #003366;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}
.event-card:hover {
  transform: translateY(-2px);
}
.event-details {
  display: flex;
  align-items: center;
  gap: 20px;
}
.event-icon {
  width: 48px;
  height: 48px;
  margin-right: 20px;
  filter: brightness(0) invert(1);
}
.event-text-block {
  display: flex;
  flex-direction: column;
}
.event-date {
  font-size: 1.4em;
  font-weight: bold;
  color: #ffffff;
}
.event-location {
  font-size: 1em;
  color: #e0e0e0;
  margin-top: 4px;
}

/* Call-to-Action */
.registration-cta {
  text-align: center;
  background-color: #003366;
  color: white;
  padding: 2em 1.5em;
  border-radius: 12px;
  margin-top: 2em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.registration-cta h2 {
  font-size: 1.8em;
  margin-bottom: 0.5em;
}
.registration-cta p {
  font-size: 1.1em;
  margin-bottom: 1.5em;
}
.cta-button {
  display: inline-block;
  background-color: #ffcc00;
  color: #003366;
  font-size: 1.2em;
  font-weight: bold;
  padding: 0.75em 2em;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  background-color: #e6b800;
}

/* Horizontal Rule */
hr {
  margin: 2em 0;
  border: none;
  border-top: 1px solid #ccc;
}

/* Registration Form Section */
.form-section form {
  max-width: 800px;
  margin: 2em auto;
  padding: 2em;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.form-section h1,
.form-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5em;
  color: #003366;
}
.form-section form label {
  display: block;
  margin-top: 1em;
  font-weight: bold;
}
.form-section form input,
.form-section form select,
.form-section form textarea {
  width: 100%;
  padding: 0.75em;
  margin-top: 0.25em;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}
.form-section .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.form-section .form-col {
  flex: 1 1 45%;
}
.form-section form button[type="submit"],
.form-section form button[type="button"] {
  margin-top: 2em;
  padding: 0.75em 2em;
  font-size: 1.1rem;
  background-color: #003366;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.form-section form button[type="submit"]:hover {
  background-color: #00509e;
}

/* ========== Checkbox Field Styling (Semantic Style) ========== */

.form-checkbox {
  display: flex;
  align-items: baseline;
  gap: 0.9em;
  margin-bottom: 1em;
  font: inherit;
  line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
  transform: translateY(2px);
  width: 1em;
  height: 1em;
  margin: 0;
  accent-color: #003366; /* Optional */
}

.spaced-block {
  margin-top: 2.00em;
}

/* Custom radio buttons */
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 2px solid #555;
  border-radius: 50%;
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.5em;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
}

input[type="radio"]:checked::before {
  content: "";
  display: block;
  width: 0.6em;
  height: 0.6em;
  background-color: #003366; /* dark blue inner circle */
  border-radius: 50%;
  position: absolute;
  top: 0.25em;
  left: 0.25em;
}

input[type="radio"]:focus {
  outline: 2px solid #005fcc;
  outline-offset: 2px;
}

input[type="radio"] + label {
  font-size: 0.9em;
  font-weight: 500;
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
  font-size: 0.9em;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  margin-right: 0.5em;
  width: 1.2em;
  height: 1.2em;
  border: 2px solid #555;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
}

.form-check input[type="radio"] {
  border-radius: 50%;
}

input[type="radio"]:checked::before {
  content: "";
  display: block;
  width: 0.65em;
  height: 0.65em;
  background-color: #003366;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-check input:focus {
  outline: 2px solid #005fcc;
  outline-offset: 2px;
}
