body, h1, h2, h3, h4, h5, h6, p {
    font-family: 'Bai Jamjuree', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background-color: #c6bfa6;
    color: #111;
}

.masthead {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #c6bfa6;
    color: #111;
}

.navbar {
  background-color: #f6f4eb;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #000;
  text-decoration: none;
}

.nav-links li {
  border-left: 1px solid #999;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links li:first-child {
  border-left: none;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
}

.homepage-intro {
  background-color: #c6bfa6;
  padding: 3rem 2rem;
  text-align: center;
  color: #111;
}

.homepage-intro .container {
  max-width: 800px;
  margin: 0 auto;
}

.homepage-intro p {
  font-size: 1.1rem;
  margin: 1rem 0;
  line-height: 1.6;
}

.image-section {
  padding: 4rem 2rem;
  background-color: #c6bfa6;
  text-align: center;
}

.image-section h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.image-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.image-item {
  width: 300px;
}

.image-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.image-item p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #333;
}

.mountain-hero {
  position: relative;
  height: 450px;
  background-image: url('assets/img/mountain 2.jpg');
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
}


.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 0;
}

.mountain-hero .intro-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.4);
  padding: 2rem;
  border-radius: 20px;
  max-width: 700px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.image-section p {
  font-size: 1.1rem;
  margin: 1rem 0;
  line-height: 1.6;
}