/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  background-color: #d9eaf4;
  color: #012840;
}

header {
  background-color: #d9eaf4;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  font-weight: bold;
  font-size: 20px;
}

nav {
  display: flex;
  gap: 15px;
}

nav a {
  text-decoration: none;
  color: #012840;
  font-weight: bold;
}

.lang-switch {
  display: flex;
  gap: 10px;
  margin-left: 20px;
}

.lang-switch a {
  text-decoration: none;
  color: #012840;
}

.menu-toggle {
  display: none; /* Hide toggle by default */
  font-size: 24px;
  cursor: pointer;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block; /* Show toggle on small screens */
  }

  nav {
    display: none; /* Hide nav by default on small screens */
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    position: absolute;
    top: 60px;
    left: 20px;
    right: 20px;
    z-index: 1000;
  }

  nav.show {
    display: flex; /* Show nav when 'show' class is added */
  }

  nav a {
    display: block;
    padding: 10px 0;
    color: #012840;
  }
}

.hero {
  background-color: #073b59;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.hero p {
  margin-bottom: 20px;
}

.booking-button {
  background-color: #a8da2f;
  padding: 10px 20px;
  color: #012840;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.booking-button:hover {
  background-color: #96c92d;
}

.section {
  padding: 40px 20px;
  text-align: center;
}

.section h2 {
  font-size: 20px;
  margin-bottom: 15px;
}

.section p {
  max-width: 600px;
  margin: 0 auto;
}

.costs-table {
  width: 90%;
  max-width: 600px;
  margin: 2rem auto;
  border-collapse: collapse;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.costs-table td {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  font-size: 1rem;
}

.costs-table td:last-child {
  text-align: right;
  white-space: nowrap; /* 保证价格不换行 */
}

.costs-table small {
  font-size: 0.85rem;
  color: #555;
}


.voucher-button {
  background-color: #a8da2f;
  padding: 10px 20px;
  color: #012840;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: block;
  margin: 20px auto;
  max-width: 200px;
}

.voucher-button:hover {
  background-color: #96c92d;
}

.footer {
  background-color: #073b59;
  color: white;
  text-align: center;
  padding: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
/* 保证内容自适应手机 */
body {
  font-size: 16px;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

.section, header, footer {
  padding: 1rem;
}

a, button {
  font-size: 1rem;
  touch-action: manipulation;
}

/* 保证表格在小屏幕不溢出 */
.costs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.costs-table td {
  padding: 0.5rem;
}
