/* Open Sans */
@font-face {
  font-family: "Open Sans";
  src: url("/fonts/open-sans-v34-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("/fonts/open-sans-v34-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("/fonts/open-sans-v34-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("/fonts/open-sans-v34-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

/* Noto Serif (you uploaded the JP variant with Latin subset) */
@font-face {
  font-family: "Noto Serif";
  src: url("/fonts/noto-serif-jp-v8-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Noto Serif";
  src: url("/fonts/noto-serif-jp-v8-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
/* Base styles */
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Serif", serif;
  font-size: 18px;
  line-height: 1.6;
  background-color: #ffffff; /* very light beige */
  color: #444; /* black */
}

main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* Links */
a {
  color: #074ea2; /* deep blue */
  text-decoration: none;
}
/* Explicitly keeping logo blue for hover */
a:hover {
  color: #074ea2; /* logo blue */
}

/* Header */
header {
  background-color: #ffffff;
  padding: 1rem 1rem;
  display: flex;
  align-items: center; 
  justify-content: space-between;
}

header img {
  height: 60px;
  display: block;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  font-size: 1.1rem;
  margin-right: 1.5rem; 
}

nav li a {
  font-weight: 500;       /* medium weight, lighter than bold */
  font-size: 1.3rem;      /* slightly larger */
  letter-spacing: 0.5px;  /* more spacing for a modern look */
  font-family: "Open Sans", sans-serif;
  color: #444;
}

/* Footer */
footer {
  background-color: #333333;
  padding: 1.3rem;
  text-align: center;
  font-size: 0.9rem;
  color: #f0f0f0;
}

footer a {
  color: #aaccff;
  text-decoration: none;
}
footer a:hover {
  color: #cce5ff;
}

/* Homepage tour list */
.tour-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tour-teaser {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: none;
  padding: 1rem;
}

.tour-teaser img.thumb {
  width: 160px;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.tour-teaser img.hero-mobile {
  display: none;
}

.tour-teaser h2 {
  margin: 0 0 0.2rem 0;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  font-family: "Open Sans", sans-serif;
  color: #444;
}

/* Tile title link inside teaser: <a><h2>…</h2></a> */
.tour-teaser a { text-decoration: none; }
.tour-teaser a:hover h2 { color: #074ea2; }

.tour-teaser .dates {
  color: #444;
  margin: 0.2rem 0 0.4rem 0;
  font-family: "Open Sans", sans-serif;
  color: #444;
  font-weight: 400;
}

.tour-teaser p {
  margin: 0.2rem 0;
}

/* Single tour page */
.tour img.hero {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.tripbox {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: none;
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
}

.tripbox p {
  margin: 0.3rem 0;
}

.dates {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.3rem; /* match teaser font size */
  color: #074ea2;
  margin: 1.5rem 0;
}

/* Headings in content */
.content h2 {
  margin-top: 1.5rem;
  font-size: 1.6rem;
  color: #074ea2;
  font-weight: 400;
  letter-spacing: 0.5px;
  font-family: "Open Sans", sans-serif;
}

.content h3 {
  margin-top: 2.0rem;   /* normal gap above */
  margin-bottom: 0.5rem; /* same as paragraph gap below */
  font-size: 1.2rem;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: "Noto", serif;
}


h1 {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  margin: 1.5rem 0;
  line-height: 1.3;
  font-family: "Noto", serif;
  color: #444;
}

/* Reduce vertical spacing between paragraphs */
p {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: #666;
  margin-top: 2rem;
  line-height: 1.4;
}
.disclaimer a {
  color: #074ea2;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: none;
}
.strong, b {
  font-family: "Noto Serif", serif;
  font-weight: 600;
}
/* Download button style (same font as .tripbox) */
.download-button {
  font-family: "Open Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #074ea2;
  text-decoration: none;
  display: block;
}


/* Responsive design */
@media (max-width: 700px) {
  .tour-teaser {
    flex-direction: column;
  }
  .tour-teaser img.thumb {
    width: 100px;
    height: 100px;
    object-fit: cover;
  }
  .tour-teaser img.thumb {
    display: none;
  }
  .tour-teaser img.hero-mobile {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 0.5rem;
  }
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  header img {
    height: 65px;
    margin-bottom: 0.5rem;
    margin-left: -21px; /* adjust manually as needed */
  }
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    margin: 0.5rem 0 0 0;
    gap: 0.2rem;
    font-size: 1rem;
  }
  nav li {
    margin: 0.2rem 0;
  }
}
