@import url('https://fonts.googleapis.com/css2?family=Libertinus+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Maitree:wght@200;300;400;500;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: #f0f7f4;
  color: #333;
  font-family: "Libertinus Mono", monospace;
  
}
.textthai {
  font-family: "Maitree", serif;
}
header {
  background: #2e7d32;
  color: white;
  padding: 20px;
  text-align: center;
}

nav {
  background-color: #388e3c;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  background: #2e7d32;
  border-radius: 8px;
  transition: background 0.3s;
}

nav a:hover {
  background: #1b5e20;
}

section {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

.intro {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

footer {
  text-align: center;
  padding: 20px;
  background: #e0e0e0;
  color: #555;
}

.waterfall-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.map-container {
  margin-top: 20px;
  width: 100%;
  height: 400px;
}

ul {
  padding-left: 20px;
  margin-bottom: 20px;
} 

h2 {
  color: #2e7d32;
}

p.map-note {
  font-style: italic;
  color: #666;
}
 
section {
  font-size: 20px;
}


.map-image {
  display: block;
  margin: 40px auto;           
  max-width: 1000px;           
  width: 90%;                  
  height: auto;                
  border-radius: 12px;         
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25); 
  border: 2px solid #ccc;     
}


.map-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ปักหมุด */
.pin {
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: red;
  border-radius: 50%;
  border: 2px solid white;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

/* เพิ่ม animation และ hover effect ได้ตามต้องการ */
.pin:hover {
  background-color: #ff6600;
}


