@font-face {
  font-family: "Anitto";
  src: url("../font/Anitto.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #faf7f0;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.25rem;
}

.header {
  height: 3.75rem;
  background: #faf7f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.875rem;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  border-bottom: solid 1px #e7e2dd;
}
.header-left .logo {
  color: #000;
  font-family: "Anitto", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  display: block;
}
.header-left .logo img {
  height: 2.5rem;
  width: auto;
  display: block;
}
.header-nav .nav-list {
  display: flex;
  list-style: none;
  gap: 1.25rem;
}
.header-nav .nav-item .nav-link {
  color: #AFABAB;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  position: relative;
}
.header-nav .nav-item .nav-link.disabled {
  color: #AFABAB;
  cursor: default;
  pointer-events: none;
}
.header-nav .nav-item.active .nav-link {
  color: #000;
  font-weight: bold;
}

.main-content {
  margin-top: 0;
  padding: 0;
  min-height: calc(100vh - 3.75rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.home-content {
  margin-top: 0;
  padding: 0;
  background: #faf7f0;
  flex: 1;
  width: 100%;
}

.hero-section {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.hero-section:hover {
  opacity: 0.9;
}
.hero-section .hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.treasure-map-section {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1.25rem;
}
.treasure-map-section .treasure-map-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.world-map-section {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  background: #faf7f0;
}

.world-map-container {
  position: relative;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.world-map-image {
  width: 100%;
  height: auto;
  display: block;
}

.world-map-icon {
  position: absolute;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.world-map-icon:hover {
  transform: scale(1.3);
  z-index: 20;
}
.world-map-icon:hover .icon-image {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}
.world-map-icon .icon-image {
  width: 4rem;
  height: 4rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}

/* Tooltip styles */
.world-map-icon::after {
  content: attr(data-location-name);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-family: "Arial", sans-serif;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.world-map-icon::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-2px);
  border: 6px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
}

.world-map-icon:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-12px);
}

.world-map-icon:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(-6px);
}

.pdf-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.pdf-modal-content {
  background-color: #fff;
  margin: 2% auto;
  padding: 0;
  border: 1px solid #888;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
}

.pdf-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #ddd;
  background: #faf7f0;
}

.pdf-modal-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  font-family: "Arial", sans-serif;
}

.pdf-modal-close {
  color: #aaa;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}
.pdf-modal-close:hover, .pdf-modal-close:focus {
  color: #000;
}

.pdf-modal-body {
  padding: 1rem;
  overflow-y: auto;
  flex: 1;
  max-height: calc(90vh - 80px);
}

.pdf-iframe {
  width: 100%;
  height: 80vh;
  border: none;
  margin-bottom: 1rem;
  border-radius: 0.25rem;
}
.pdf-iframe:last-child {
  margin-bottom: 0;
}

.historic-buildings-section {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 3.75rem 1.25rem;
  background: #faf7f0;
}
.historic-buildings-section .buildings-title {
  font-size: 3rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin-bottom: 0.5rem;
  font-family: "Arial", sans-serif;
}
.historic-buildings-section .buildings-subtitle {
  font-size: 1.5rem;
  font-weight: normal;
  color: #333;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  font-family: "Arial", sans-serif;
}
.historic-buildings-section .mission-section {
  margin-bottom: 3rem;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}
.historic-buildings-section .mission-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 1rem;
  font-family: "Arial", sans-serif;
}
.historic-buildings-section .buildings-intro-text {
  font-size: 1rem;
  color: #666;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 0;
  font-family: "Arial", sans-serif;
}
.historic-buildings-section .section-title-buildings {
  font-size: 2.25rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 2rem;
  font-family: "Arial", sans-serif;
}

.buildings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.more-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center; /* Center in the grid cell */
  height: 100%;
  min-height: 200px; /* Ensure it has some height if empty row, but cards define row height */
}
.more-btn-wrapper .more-btn-link {
  display: block;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.more-btn-wrapper .more-btn-link:hover {
  opacity: 0.8;
}
.more-btn-wrapper .more-btn-link img {
  width: 7rem;
  max-width: 100%;
  height: auto;
  display: block;
}

.other-spots-section {
  padding: 3.75rem 1.25rem;
  background: #faf7f0;
  min-height: 100vh;
}
.other-spots-section .town-intro-section1 {
  max-width: 1080px;
  margin: 0 auto;
  background: transparent;
  padding: 0 3rem;
}
.other-spots-section .town-intro-section {
  max-width: 1080px;
  margin: 0 auto 4rem;
  background: #fff;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.other-spots-section .town-main-title {
  font-size: 3rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: "Arial", sans-serif;
}
.other-spots-section .town-intro-title {
  font-size: 1.8rem;
  font-weight: normal;
  color: #D2691E;
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: "Arial", sans-serif;
}
.other-spots-section .town-intro-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  text-align: center;
  font-family: "Arial", sans-serif;
}
.other-spots-section .chapel-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #D2691E;
  margin-bottom: 1rem;
  font-family: "Arial", sans-serif;
}
.other-spots-section .chapel-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  font-family: "Arial", sans-serif;
}
.other-spots-section .other-spots-title-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.other-spots-section .other-spots-title-container .other-spots-dot {
  width: 12px;
  height: 12px;
  background-color: #D2691E;
  border-radius: 50%;
}
.other-spots-section .other-spots-title-container .other-spots-title {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  font-family: "Arial", sans-serif;
}
.other-spots-section .spots-list {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.other-spots-section .spot-item {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}
.other-spots-section .spot-item .spot-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.other-spots-section .spot-item .spot-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #D2691E;
  margin: 0;
  font-family: "Arial", sans-serif;
  padding-right: 1rem;
}
.other-spots-section .spot-item .spot-toggle-btn {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.other-spots-section .spot-item .spot-toggle-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.other-spots-section .spot-item .spot-content {
  display: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f0f0f0;
  font-family: "Arial", sans-serif;
}
.other-spots-section .spot-item .spot-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #333;
  font-size: 0.9375rem;
}
.other-spots-section .spot-item .spot-content h4 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-family: "Arial", sans-serif;
  margin-top: 1.25rem;
}
.other-spots-section .spot-item .spot-content h4:first-child {
  margin-top: 0;
}
.other-spots-section .spot-item .spot-content .spot-section-box {
  border-radius: 0.5rem;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.other-spots-section .spot-item .spot-content .spot-section-box h4 {
  margin-top: 0;
}
.other-spots-section .spot-item .spot-content .spot-section-box.did-you-know {
  background-color: #F0F5F0;
}
.other-spots-section .spot-item .spot-content .spot-section-box.did-you-know h4 {
  color: #558B55;
}
.other-spots-section .spot-item .spot-content .spot-section-box.think-about-it {
  background-color: #FFF8E8;
}
.other-spots-section .spot-item .spot-content .spot-section-box.think-about-it h4 {
  color: #D79B00;
}
.other-spots-section .spot-item .spot-content .spot-section-box.architectural-details {
  padding: 0;
  margin-bottom: 1.25rem;
}
.other-spots-section .spot-item .spot-content .spot-section-box.architectural-details h4 {
  color: #333;
}
.other-spots-section .spot-item .spot-content .spot-section-box ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 0;
}
.other-spots-section .spot-item .spot-content .spot-section-box ul li {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  color: #333;
  line-height: 1.6;
}
.other-spots-section .spot-item .spot-content .spot-section-box ul li:last-child {
  margin-bottom: 0;
}
.other-spots-section .spot-item .spot-content .spot-section-box .question-item {
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  color: #333;
  line-height: 1.6;
}
.other-spots-section .spot-item .spot-content .spot-section-box .question-item strong {
  display: block;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.building-card {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.building-card .building-image-wrapper {
  position: relative;
  width: 100%;
  height: 15rem;
  overflow: hidden;
}
.building-card .building-image-wrapper .building-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.building-card .building-image-wrapper .building-mark {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
  font-family: "Arial", sans-serif;
  line-height: 1.2;
}
.building-card .building-content {
  padding: 1.25rem 1rem;
}
.building-card .building-content .building-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  font-family: "Arial", sans-serif;
}
.building-card .building-content .building-subtitle {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1rem;
  font-weight: 500;
  font-family: "Arial", sans-serif;
}
.building-card .building-content .building-details {
  margin-bottom: 1rem;
}
.building-card .building-content .building-details .building-detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  color: #555;
  font-family: "Arial", sans-serif;
}
.building-card .building-content .building-details .building-detail-item .detail-icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
  display: inline-block;
}
.building-card .building-content .building-details .building-detail-item .detail-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.building-card .building-content .building-details .building-detail-item .detail-text {
  flex: 1;
  line-height: 1.4;
}
.building-card .building-content .building-description {
  height: 90px;
  font-size: 0.8125rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-family: "Arial", sans-serif;
}
.building-card .building-content .discover-button {
  width: 100%;
  background: #faf7f0;
  color: #333;
  border: 1px solid #f1eee6;
  padding: 0.625rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Arial", sans-serif;
}

.home-footer {
  background: #FFFEF9;
  border-top: 1px solid #E0E0E0;
  padding: 2.5rem 0;
  margin-top: auto;
  width: 100%;
}
.home-footer .footer-content {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.25rem;
}
.home-footer .footer-content .footer-text-main {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.5rem;
  font-family: "Arial", sans-serif;
}
.home-footer .footer-content .footer-text-copyright {
  font-size: 0.7125rem;
  color: #999;
  font-family: "Arial", sans-serif;
}

.story-content {
  background: #FFFEF9;
  padding: 2.5rem 1.25rem;
  flex: 1;
}

.story-container {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

.back-to-map {
  display: inline-block;
  color: #333;
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  font-family: "Arial", sans-serif;
  transition: color 0.3s ease;
}
.back-to-map:hover {
  color: #8B4513;
}

.story-title {
  font-size: 2.625rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 2.5rem;
  font-family: "Arial", sans-serif;
  line-height: 1.2;
}
.story-title .story-number {
  color: #8B4513;
  font-size: 3rem;
}

.story-sections {
  margin-bottom: 3.75rem;
}

.story-section {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.875rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.05);
  border: solid 1px #e4e1d9;
}
.story-section .section-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.25rem;
  font-family: "Arial", sans-serif;
  line-height: 1.3;
}
.story-section .section-content {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-family: "Arial", sans-serif;
}
.story-section .section-list {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.story-section .section-list li {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  font-family: "Arial", sans-serif;
}

.story-section-facts .facts-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.story-section-facts .facts-list .fact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-family: "Arial", sans-serif;
}
.story-section-facts .facts-list .fact-item .fact-icon {
  font-size: 1.5rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
  line-height: 1.4;
}
.story-section-facts .facts-list .fact-item .fact-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  flex: 1;
}

.story-section-facts-highlight .facts-highlight-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.story-section-facts-highlight .facts-highlight-list .fact-highlight-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-family: "Arial", sans-serif;
}
.story-section-facts-highlight .facts-highlight-list .fact-highlight-item .fact-highlight-icon {
  font-size: 1.5rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
  line-height: 1.4;
}
.story-section-facts-highlight .facts-highlight-list .fact-highlight-item .fact-highlight-content {
  flex: 1;
}
.story-section-facts-highlight .facts-highlight-list .fact-highlight-item .fact-highlight-content .fact-highlight-title {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.25rem;
  font-family: "Arial", sans-serif;
  line-height: 1.4;
}
.story-section-facts-highlight .facts-highlight-list .fact-highlight-item .fact-highlight-content .fact-highlight-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin: 0;
  font-family: "Arial", sans-serif;
}

.columns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.25rem;
}
.columns-grid .column-item {
  background: transparent;
}
.columns-grid .column-item .column-title {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.75rem;
  font-family: "Arial", sans-serif;
}
.columns-grid .column-item .column-list {
  list-style: disc;
  margin-left: 1.25rem;
  padding: 0;
}
.columns-grid .column-item .column-list li {
  font-size: 0.875rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 0.375rem;
  font-family: "Arial", sans-serif;
}

.timeline-list {
  margin-top: 1.25rem;
}
.timeline-list .timeline-item {
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
  font-family: "Arial", sans-serif;
}
.timeline-list .timeline-item .timeline-time {
  font-size: 0.9375rem;
  font-weight: bold;
  color: #8B4513;
  min-width: 6.25rem;
  flex-shrink: 0;
  font-family: "Arial", sans-serif;
}
.timeline-list .timeline-item .timeline-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  flex: 1;
  font-family: "Arial", sans-serif;
}

.story-section-questions .questions-list {
  list-style: decimal;
  margin-bottom: 1.25rem;
}
.story-section-questions .questions-list .question-item {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-family: "Arial", sans-serif;
}
.story-section-questions .questions-list .question-item .question-label {
  display: block;
  font-weight: 600;
  color: #8B4513;
  margin-bottom: 0.25rem;
}
.story-section-questions .questions-list .question-item::marker {
  content: "";
}
.story-section-questions .final-reflection {
  font-size: 1rem;
  color: #333;
  font-weight: 600;
  margin-top: 1.25rem;
  font-family: "Arial", sans-serif;
  font-style: italic;
}

.story-section-congratulations {
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.story-section-congratulations .congratulations-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: #ad5630;
  margin-bottom: 1.25rem;
  font-family: "Arial", sans-serif;
}
.story-section-congratulations .congratulations-content {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-family: "Arial", sans-serif;
}

.view-activities-button {
  background: #86a957;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: "Arial", sans-serif;
  margin-top: 1.25rem;
}

.activities-cta {
  margin-top: 1.25rem;
  display: flex;
  justify-content: flex-end;
}

.activity-content {
  background: #FFFEF9;
  padding: 0;
}

.module-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.module-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #eef9f1;
  margin-bottom: 1.5rem;
  font-family: "Arial", sans-serif;
}

.module-worksheets .module-title, .tours-content .module-title {
  color: #ad5630;
}

.module-online .module-title {
  color: #4f9455;
}

.module-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-family: "Arial", sans-serif;
}

.module-email {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  font-family: "Arial", sans-serif;
}
.module-email a {
  color: #8B0000;
  text-decoration: none;
}
.module-email a:hover {
  text-decoration: underline;
}

.module-hero {
  background: transparent;
}

.hero-main-title {
  font-size: 3.5rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin-bottom: 1rem;
  font-family: "Arial", sans-serif;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #333;
  text-align: center;
  font-family: "Arial", sans-serif;
  line-height: 1.6;
}

.module-tours {
  background: #fff;
  width: 1200px;
  margin: 0 auto;
}

.tours-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.tours-text {
  padding-right: 2rem;
}

.tours-gallery {
  position: relative;
  width: 440px;
}

.module-online {
  background: #eef9f1;
  width: 1200px;
  margin: 2rem auto;
}

.online-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.online-video {
  order: 1;
}

.online-text {
  order: 2;
  text-align: right;
}

.module-worksheets {
  background: #f0e3da;
  width: 1200px;
  margin: 0 auto;
}

.map-image-wrapper {
  margin-top: 2rem;
  text-align: center;
}

.map-image {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}

.module-pdf-download {
  background: #fff;
  width: 1200px;
  margin: 0 auto;
  padding: 3rem 0;
}

.pdf-download-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
}
.pdf-download-box:hover {
  background: #f9f9f9;
}
.pdf-download-box:hover .pdf-link-text {
  color: #8B0000;
}

.pdf-icon {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}

.pdf-link-text {
  font-size: 1.2rem;
  color: #D2691E;
  font-weight: 500;
  font-family: "Arial", sans-serif;
  transition: color 0.3s ease;
  text-align: center;
}

.activity-section {
  margin-bottom: 2.5rem;
}
.activity-section .section-title {
  font-size: 1.75rem;
  font-weight: bold;
  color: #8B4513;
  margin-bottom: 1.25rem;
}

.video-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: #000;
  width: 100%;
  aspect-ratio: 16/9;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.video-overlay .play-button {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.25);
}
.video-overlay .play-button::before {
  content: "";
  border-style: solid;
  border-width: 0.75rem 0 0.75rem 1.125rem;
  border-color: transparent transparent transparent #8B4513;
  margin-left: 0.25rem;
}

.annual-highlights .highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.annual-highlights .highlight-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
}
.annual-highlights .highlight-card .highlight-month {
  font-size: 0.875rem;
  font-weight: bold;
  color: #d77a0a;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.annual-highlights .highlight-card .highlight-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.625rem;
}
.annual-highlights .highlight-card .highlight-description {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.6;
}

.gallery-swiper-container {
  position: relative;
  width: 100%;
}

.gallery-swiper {
  border-radius: 1rem;
  overflow: hidden;
  background: #f5f5f5;
  padding: 1rem;
}
.gallery-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery-swiper img {
  width: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
  max-height: 22.5rem;
}

.gallery-swiper-container .swiper-button-prev,
.gallery-swiper-container .swiper-button-next {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  color: #8B4513;
  transition: all 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
}
.gallery-swiper-container .swiper-button-prev::after,
.gallery-swiper-container .swiper-button-next::after {
  font-size: 0.875rem;
  font-weight: bold;
}

.gallery-swiper-container .swiper-button-prev {
  left: 0;
}

.gallery-swiper-container .swiper-button-next {
  right: 0;
}

.gallery-swiper-container .swiper-pagination {
  position: relative;
  bottom: auto;
  margin-top: 1rem;
}
.gallery-swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.625rem;
  background: #999;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.gallery-swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #8B4513;
  opacity: 1;
  width: 1.5rem;
  border-radius: 0.3125rem;
}

.plan-visit-section .plan-intro {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.plan-visit-section .plan-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.plan-visit-section .plan-card {
  border-radius: 1rem;
  padding: 1.25rem;
  background: #fff;
  border: 0.125rem solid #ddd;
}
.plan-visit-section .plan-card.accent-red {
  border-color: #f05a3f;
}
.plan-visit-section .plan-card.accent-green {
  border-color: #49a063;
}
.plan-visit-section .plan-card .plan-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.plan-visit-section .plan-card .plan-text {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.7;
}

.story-navigation {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.nav-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}

.nav-button {
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Arial", sans-serif;
}
.nav-button.nav-button-prev {
  background: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
}
.nav-button.nav-button-prev:hover {
  background: #e5e5e5;
}
.nav-button.nav-button-next {
  background: #8B4513;
  color: #fff;
  border: 1px solid #8B4513;
}
.nav-button.nav-button-next:hover {
  background: #6b3410;
}
.nav-button.nav-button-disabled {
  visibility: hidden;
}

.story-footer {
  background: #FFFEF9;
  border-top: 1px solid #E0E0E0;
  padding: 2.5rem 0;
  margin-top: auto;
  width: 100%;
}
.story-footer .footer-content {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.25rem;
}
.story-footer .footer-content .footer-text-main {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0.5rem;
  font-family: "Arial", sans-serif;
}
.story-footer .footer-content .footer-text-copyright {
  font-size: 0.8125rem;
  color: #999;
  font-family: "Arial", sans-serif;
}

.history-content {
  background: #FFFEF9;
  padding: 0;
  flex: 1;
}

.history-container {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}

.history-hero-section {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 3.75rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.history-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.history-bg-image {
  width: 35%;
  height: 45%;
  object-fit: cover;
  opacity: 0.3;
}

.history-content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.history-text-section {
  padding: 2rem;
}

.history-section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #8B0000;
  margin-bottom: 1.5rem;
  font-family: "Arial", sans-serif;
}

.history-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-family: "Arial", sans-serif;
}

.history-image-section {
  display: flex;
  justify-content: end;
  align-items: center;
}

.history-photo {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}

.history-title {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 1rem;
  font-family: "Arial", sans-serif;
  line-height: 1.2;
}

.history-subtitle {
  font-size: 1.25rem;
  color: #666;
  text-align: center;
  margin-bottom: 3.75rem;
  font-family: "Arial", sans-serif;
  line-height: 1.6;
}

.history-sections {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.history-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  position: relative;
}
.history-card .history-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.history-card .history-card-icon {
  font-size: 2rem;
  display: inline-block;
  flex-shrink: 0;
}
.history-card .history-card-title {
  font-size: 1.75rem;
  font-weight: bold;
  color: #333;
  margin: 0;
  font-family: "Arial", sans-serif;
  line-height: 1.3;
}
.history-card .history-card-content {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-family: "Arial", sans-serif;
}
.history-card .history-card-content:last-of-type {
  margin-bottom: 1.5rem;
}
.history-card .history-card-content strong {
  font-weight: 600;
  color: #000;
}

.history-highlight {
  background: #fef8f0;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.history-highlight .history-highlight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.history-highlight .history-highlight-content {
  flex: 1;
}
.history-highlight .history-highlight-content .history-highlight-title {
  font-size: 1rem;
  font-weight: bold;
  color: #d87045;
  margin-bottom: 0.375rem;
  font-family: "Arial", sans-serif;
}
.history-highlight .history-highlight-content .history-highlight-text {
  font-size: 0.9375rem;
  color: #333;
  line-height: 1.6;
  font-family: "Arial", sans-serif;
}

.history-figures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.history-figures-grid .history-figure-card {
  background: #fafafa;
  border-radius: 0.5rem;
  padding: 1.25rem;
  box-shadow: none;
  border: 1px solid #e8e8e8;
  text-align: left;
}
.history-figures-grid .history-figure-card .history-figure-icon {
  font-size: 1.25rem;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.history-figures-grid .history-figure-card .history-figure-title {
  display: inline;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
  font-family: "Arial", sans-serif;
  line-height: 1.3;
}
.history-figures-grid .history-figure-card .history-figure-text {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
  font-family: "Arial", sans-serif;
}

.history-footer {
  background: #FFFEF9;
  border-top: 1px solid #E0E0E0;
  padding: 2.5rem 0;
  margin-top: auto;
  width: 100%;
}
.history-footer .footer-content {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.25rem;
}
.history-footer .footer-content .footer-text-main {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0.5rem;
  font-family: "Arial", sans-serif;
}
.history-footer .footer-content .footer-text-copyright {
  font-size: 0.8125rem;
  color: #999;
  font-family: "Arial", sans-serif;
}

.map-container {
  position: relative;
  max-width: 89.7645854657vw;
  width: 100%;
  border-radius: 0.383828045vw;
  overflow: hidden;
}

.map-icon {
  position: absolute;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  animation: fadeInIcons 0.8s ease-in-out 1.5s forwards;
}
.map-icon:hover {
  transform: scale(1.2);
  z-index: 20;
}
.map-icon:hover .icon-image {
  filter: drop-shadow(0 0.1023541453vw 0.2047082907vw rgba(0, 0, 0, 0.4));
}
.map-icon .icon-image {
  width: 1.5353121801vw;
  height: 1.5353121801vw;
  filter: drop-shadow(0 1px 0.1023541453vw rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}

@media (max-width: 1200px) {
  .buildings-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 0 0.9375rem;
  }
  .header .header-left .logo {
    font-size: 1.25rem;
  }
  .header .header-nav .nav-item .nav-link {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
  .buildings-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .historic-buildings-section {
    padding: 2.5rem 0.9375rem;
  }
  .historic-buildings-section .buildings-title {
    font-size: 1.75rem;
  }
  .historic-buildings-section .buildings-subtitle {
    font-size: 0.875rem;
  }
  .columns-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .story-title {
    font-size: 2rem;
  }
  .story-title .story-number {
    font-size: 2.25rem;
  }
  .story-section {
    padding: 1.25rem 1rem;
  }
  .story-section .section-title {
    font-size: 1.25rem;
  }
  .story-section .section-content {
    font-size: 0.875rem;
  }
  .story-section-facts-highlight .facts-highlight-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .nav-buttons {
    flex-direction: column;
  }
  .nav-buttons .nav-button {
    width: 100%;
    text-align: center;
  }
  .history-content {
    padding: 2.5rem 0.9375rem;
  }
  .history-title {
    font-size: 2.25rem;
  }
  .history-subtitle {
    font-size: 1.125rem;
  }
  .history-card {
    padding: 1.5rem 1.25rem;
  }
  .history-card .history-card-header {
    flex-direction: row;
    gap: 0.5rem;
  }
  .history-card .history-card-icon {
    font-size: 1.75rem;
  }
  .history-card .history-card-title {
    font-size: 1.375rem;
  }
  .history-card .history-card-content {
    font-size: 0.9375rem;
  }
  .history-highlight {
    padding: 0.875rem 1rem;
  }
  .history-highlight .history-highlight-icon {
    font-size: 1.25rem;
  }
  .history-highlight .history-highlight-title {
    font-size: 0.9375rem;
  }
  .history-highlight .history-highlight-text {
    font-size: 0.875rem;
  }
  .history-figures-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .history-figures-grid .history-figure-card {
    padding: 1rem;
  }
  .history-figures-grid .history-figure-card .history-figure-icon {
    font-size: 1.5rem;
  }
  .history-figures-grid .history-figure-card .history-figure-title {
    font-size: 0.9375rem;
  }
  .history-figures-grid .history-figure-card .history-figure-text {
    font-size: 0.8125rem;
  }
  .annual-highlights .highlight-grid {
    grid-template-columns: 1fr;
  }
  .activity-gallery .gallery-swiper {
    padding: 0.75rem;
  }
  .activity-gallery .swiper-button-prev,
  .activity-gallery .swiper-button-next {
    width: 2.5rem;
    height: 2.5rem;
  }
  .activity-gallery .swiper-button-prev::after,
  .activity-gallery .swiper-button-next::after {
    font-size: 0.75rem;
  }
  .activity-gallery .swiper-button-prev {
    left: 0;
  }
  .activity-gallery .swiper-button-next {
    right: 0;
  }
  .hero-main-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.125rem;
  }
  .tours-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .tours-text {
    padding-right: 0;
  }
  .online-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .online-video {
    order: 1;
  }
  .online-text {
    order: 2;
  }
  .module-title {
    font-size: 1.5rem;
  }
  .module-text {
    font-size: 0.9375rem;
  }
  .module-container {
    padding: 3rem 1rem;
  }
  .module-worksheets {
    width: 100%;
  }
  .history-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  .history-text-section {
    padding: 1rem;
  }
  .history-section-title {
    font-size: 1.5rem;
  }
  .world-map-container {
    padding: 0 1rem;
  }
  .world-map-icon .icon-image {
    width: 1.5rem;
    height: 1.5rem;
  }
  .pdf-modal-content {
    width: 95%;
    margin: 5% auto;
  }
  .pdf-modal-title {
    font-size: 1.2rem;
  }
  .pdf-iframe {
    height: 60vh;
  }
  .module-pdf-download {
    width: 100%;
    padding: 2rem 0;
  }
  .pdf-download-box {
    padding: 1.5rem 1rem;
    gap: 0.75rem;
  }
  .pdf-icon {
    width: 3rem;
    height: 3rem;
  }
  .pdf-link-text {
    font-size: 0.95rem;
  }
}

/*# sourceMappingURL=style.css.map */
