html {
  scroll-behavior: smooth;
}


body {
  margin: 0;
  padding: 0;
  font-family: 'Raleway', Arial, sans-serif;
  background: #336667;
  color: #222;
}

.menu-bar {
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 100;
  display: flex;
  gap: 20px;
  opacity: 1;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.7); /* white, 50% opacity */
  border-radius: 12px;
  padding: 10px 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}


.menu-link {
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  color: #333;
}


.section {
  max-width: 900px;
  margin: 90px auto 60px auto;
  padding: 40px 16px 20px 16px;
  background: #d7df23;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  min-height: 0;
  overflow: visible;
}

.hero {
  background: url('assets/images/slide-03.jpg') center/cover no-repeat;
  min-height: 400px;
  justify-content: center;
}

.headline {
  font-family: 'Mouse Memoirs', Arial, sans-serif;
  font-size: 3.5rem;
  text-align: center;
  margin: 240px auto 40px 380px;
  color: #fff;
  background: rgba(255,255,255,0.4);
  padding: 20px 40px;
  border-radius: 80px;
  letter-spacing: 2px;
}

h2 {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 2.2rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: 32px;
  font-weight: 500;
}

.knews-block,
.who-block,
.where-block {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  justify-content: center;
  min-height: 0;
}

.knews-text,
.biography {
  text-align: left;
  margin-top: 8px;
  width: 100%;
  max-width: 650px;
  font-size: 1.2rem;
  min-height: 0;
}

.knews-desc {
  font-size: 1.05rem;
  color: #666;
  margin-top: 10px;
  width: 100%;
  max-width: 650px;
  min-height: 0;
}

.biography {
  background: rgba(240,240,255,0.75);
  border-radius: 10px;
  padding: 16px 22px;
  font-size: 1.15rem;
  min-height: 130px;
  width: 100%;
  max-width: 650px;
  min-height: 0;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 16px;
  min-height: 0;
  height: auto;
}

.map {
  width: 100%;
  min-height: 180px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  background: #ccc;
}

.marker-icon {
  position: absolute;
  width: 38px;
  height: 38px;
  left: calc(50% - 19px);
  top: 100px;
  z-index: 11;
  pointer-events: none;
}

.coords {
  font-size: 0.7rem;
  color: #888;
  text-align: left;
  margin-top: 3px;
}

.location-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #2a2a54;
  margin: 5px 0 10px 0;
  text-align: left;
  width: 100%;
  max-width: 650px;
}

.location-story {
  text-align: left;
  font-size: 1.05rem;
  font-family: 'Raleway', Arial, sans-serif;
  color: #444;
  min-height: 60px;
  margin-top: 3px;
  width: 100%;
  max-width: 650px;
  min-height: 0;
}

.placeholder-img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: #ddd;
  object-fit: cover;
  margin-top: 8px;
}

@media screen and (max-width: 800px) {
  .section {
    max-width: 100vw;
    border-radius: 0;
    box-shadow: none;
  }
  .knews-block,
  .who-block,
  .where-block {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 100%;
      margin-left: 10px;
      margin-top: 10px;
      margin-right: 10px;
      margin-bottom: 10px;

  }
  .map-container {
    width: 99vw;
    max-width: 99vw;
    min-height: 0;
    height: auto;
      
  }
  .knews-text,
  .biography,
  .location-story,
  .location-name,
  .knews-desc {
    max-width: 99vw;
    min-height: 0;
  }
}

@media screen and (max-width: 535px) {
  .headline { font-size: 2rem; padding: 7px 7px; margin-top: 45px;}
  h2 { font-size: 1.2rem;}
  .biography, .knews-text, .location-story, .location-name, .knews-desc {
    width: 95vw;
    font-size: 1.02rem;
    padding: 2px 5px;
    max-width: 95vw;
    min-height: 0;
  }
  .map-container {width: 95vw; height:auto; max-width: 95vw; min-height: 0;}
  .section {padding: 12px 4px;}
}
