@charset "UTF-8";

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #FFEFCF;
  color: #000;
  line-height: 1.6;
  padding: 20px;
}

ol {
  margin-left: 40px;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  background-color: #FFEFCF;
  text-align: center;
  padding: 10px 0;
}

.header .logo {
  width: 100%;
  max-width: 732px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.header h1 {
  font-size: 1.5rem;
  color: #000000;
  margin-top: 10px;
  margin-bottom: 10px;
}

h3 {
  font-size: 1.0rem;
  font-weight: normal;
  color: #000000;
  margin-bottom: 10px;
}

p {
  margin-bottom: 12px;
  line-height: 1.2;
}

/* Indented list */
.indented-list {
  padding-left: 50px;
}

/* Top Menu */
.top-menu {
  background-color: #F5DD94;
  border: 1px solid #000;
  padding: 10px 0;
}

.top-menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-direction: row;
}

.top-menu a {
  text-decoration: none;
  color: #330000;
  font-weight: bold;
}

/* Main Layout */
.main-layout {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.main-column {
  width: 80%;
}

.side-column {
  width: 20%;
}

/* Boxes */
.box {
  background: #FFEFCF;
  border: 1px solid #000;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.box h2 {
  font-size: 1.2rem;
  color: #800000;
  margin-bottom: 10px;
}

.box ul {
  list-style: disc;
  margin-left: 20px;
}

.box ul li {
  margin-bottom: 5px;
}

/* Buttons */
.button {
  display: inline-block;
  margin-top: 10px;
  background: #800000 !important;
  color: #fff !important;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none !important;
}

/* Main Column Highlight/News Boxes */
.main-column .highlight,
.main-column .news {
  background: #FFEFCF;
  border: 1px solid #000;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.main-column .highlight h2,
.main-column .news h2 {
  font-size: 1.5rem;
  color: #800000;
  margin-bottom: 10px;
}

.main-column p {
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Centered Images */
.centered-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  border: 0;
  border-radius: 5px;
}

/* Image with Caption (Left Float) */
.image-left {
  float: left;
  margin: 0 15px 10px 0;
  max-width: 40%;
}

.image-left img {
  width: 100%;
  height: auto;
  display: block;
}

.image-left figcaption {
  font-size: 0.8rem;
  font-style: italic;
  color: #666;
  text-align: left;
  margin-top: 5px;
  width: 100%;
  box-sizing: border-box;
}

/* Visitor Comments Formatting */
.passenger-info {
  display: grid;
  grid-template-columns: max-content 1fr;
  row-gap: 4px;
  column-gap: 10px;
  margin-bottom: 1em;
}

.passenger-info dt {
  font-weight: bold;
}

.passenger-info dd {
  margin: 0;
}

/* Info Notices */
.info {
  background: #f9f9f9;
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 0.95em;
  margin-bottom: 1em;
}

.info-note {
  font-size: 0.9em;
  color: #444;
  background: #f8f8f8;
  border: 1px solid #ddd;
  padding: 8px 12px;
  margin: 10px 0 20px;
  border-radius: 4px;
  line-height: 1.4;
}
table.info-table,
table.passenger-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

table.info-table th,
table.passenger-table th {
  background-color: #ddd;
  border: 1px solid #000;
  padding: 8px;
  text-align: left;
  font-size: 17px;
}

table.info-table td,
table.passenger-table td {
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  padding: 8px;
  font-size: 16px;
}

td.center {
  text-align: center;
}

.highlighted {
  background-color: #eef;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-layout {
    flex-direction: column;
  }

  .main-column,
  .side-column {
    width: 100%;
  }

  .top-menu ul {
    flex-direction: column;
    gap: 10px;
  }

  .single-menu-layout {
    flex-direction: column;
  }

  .single-menu-layout .left-column,
  .single-menu-layout .content-area {
    width: 100%;
  }
}
