/* Basic Reset & Body Styling */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px; /* Approximate from original */
  line-height: 1.6;
  background-color: #e0e0e0; /* Fallback, often pages had a white centered container */
  color: #333;
}

.page-container {
  max-width: 980px; /* Based on image widths and typical layouts of the time */
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Wayback Notice - can be hidden if not needed */
.wayback-notice {
  background-color: #f8f8f8;
  padding: 10px;
  text-align: center;
  font-size: 0.8em;
  border-bottom: 1px solid #ddd;
  /* display: none; */ /* Uncomment to hide */
}
.wayback-notice img {
  vertical-align: middle;
}

/* Header */
header {
  /* The original had bgtop.jpg at the very top */
}
.header-top-banner {
  height: 70px; /* Original height of bgtop.jpg */
  background-repeat: repeat-x; /* Assuming it was a repeating strip */
  background-position: center top;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Align items to the top of the flex container */
  padding: 10px 20px; /* Original had a 20px spacer on left */
}
.logo {
  width: 364px; /* Original width */
  height: 129px; /* Original height */
}
.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Align language and slogan to the right */
}
.language-switcher {
  margin-bottom: 10px; /* Space between flags and slogan */
}
.language-switcher img {
  width: 46px; /* Original widths */
  height: 15px;
  margin-left: 5px;
  cursor: pointer;
}
.slogan {
  width: 246px; /* Original width */
  height: px; /* Original height */
}

/* Main Content Area */
main {
  padding: 0 20px 20px 20px; /* Match left padding of header, add general padding */
}

.hotel-overview {
  display: flex;
  gap: 20px; /* Space between image, text, and sidebar */
  margin-bottom: 30px;
  padding-top: 10px; /* Original had a 10px spacer image here */
}
.main-image-area img {
  display: block; /* Remove extra space below image */
  border: 1px solid #ccc; /* Optional border */
}
.hotel-description {
  flex: 1; /* Takes up available space */
}
.hotel-description h1 {
  font-size: 1.5em;
  color: #555;
  margin-top: 0;
  margin-bottom: 15px;
  /* The original uses a <p> for the title, adjust if needed */
}
.hotel-description p {
  margin-bottom: 1em;
}

.sidebar-nav {
  width: 200px; /* Approximate width for the sidebar */
  padding-left: 10px; /* Original had a 12px spacer */
}
.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-nav li {
  margin-bottom: 8px;
}
.sidebar-nav a {
  text-decoration: none;
  color: #005a8c; /* A common link color */
  font-weight: bold;
  font-size: 0.9em;
}
.sidebar-nav a:hover, .sidebar-nav a.active-link {
  color: #d9534f; /* A hover/active color */
  text-decoration: underline;
}

/* Photo Gallery */
.photo-gallery {
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.gallery-header {
  margin-bottom: 15px;
  /* Original had 20px left spacer before the image */
}
.gallery-header img {
  display: block; /* If it's the only element */
  width: 100%; /* Adjust to fit the container */
  height: auto; /* Maintain aspect ratio */ 
}
.thumbnail-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px; /* Space between thumbnails */
}
.thumbnail {
  width: 78px;  /* Original width */
  height: 57px; /* Original height */
  border: 1px solid #ccc;
  object-fit: cover; /* Ensures image covers the area without distortion */
  cursor: pointer;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.thumbnail:hover {
  transform: scale(1.1);
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.thumbnail.active-thumbnail {
  border: 2px solid #005a8c;
  box-shadow: 0 0 8px rgba(0, 90, 140, 0.5);
}


/* Footer */
footer {
  border-top: 2px solid #ddd;
  padding: 20px;
  text-align: center;
  font-size: 0.85em;
  background-color: #f9f9f9;
}
.footer-nav a {
  color: #337ab7;
  text-decoration: none;
  margin: 0 5px;
}
.footer-nav a:hover {
  text-decoration: underline;
}
.copyright {
  margin-top: 10px;
  color: #777;
}