html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  background: #ccc url(../images/bg.jpg) top center repeat-y;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
  color: #757575;
  line-height: 1.6;
}

a {
  color: #5b5b5b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
}

iframe {
  max-width: 100%;
  border: none;
  display: block;   /* ← THIS FIXES THE MAP */
}


/* layout */

.container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

#header {
  width: 100%;
}

#splash {
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 710 / 176;
  background: url(../images/img04.jpg) no-repeat center top;
  background-size: cover;
  margin: 0 auto;
}

/* menu */

#menu {
  background: url(../images/img02.jpg) no-repeat left top;
  font-family: Arial, Helvetica, sans-serif;
}

#menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

#menu li {
  margin: 0;
}

#menu a {
  display: block;
  padding: 15px 20px;
/*  text-transform: uppercase;  */
  font-size: 26px;
  color: #c5930c;
}

#menu a:hover {
  color: #000;
}

/* page */

#wrapper,
#page,
#content {
  width: 100%;
}

#content {
  padding: 20px 0;
}

.post .title {
  border-bottom: 1px dotted #D6C9BF;
  margin-bottom: 20px;
}

.post h1.title {
  font-size: 2.2em;
  margin: 0;
  padding: 10px 0;
  color: #31363B;
}

/* gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* footer */

#footer {
  text-align: center;
  justify-content: center;
  padding: 20px 0;
  font-size: 12px;
  color: #555;
}

#footer a {
  font-size: 12px;
}

/* responsive */

@media (max-width: 600px) {
  #menu a {
    padding: 12px;
    font-size: 13px;
    width: 100%;
  }

@media (min-width: 1200px) {
  .container {
    max-width: 960px;
  }
}


  .post h1.title {
    font-size: 1.8em;
  }
}
