* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Merriweather, sans-serif;
  background-color: #FFFFFF;  
  color: #04040C;            
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif; 
}

.hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url("/img/mountain.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

header {
  text-align: center;
  padding: 20px;
  background-color: #00497D; 
  color: #FFFFFF;      
}

header h1 {
  font-size: 2rem;
}

header h2 {
  font-size: calc(1rem + 1vw);
  margin-top: 0.5rem;
  color: #FFD053;
}

main {
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.controls {
  margin-bottom: 10px;
  text-align: center;
}

.controls label {
  margin-right: 8px;
  color: #FFFFFF;
}

.controls select {
  padding: 5px;
  font-size: 14px;
  margin-right: 10px;
}

.hint {
  margin-top: 10px;
  font-size: calc(0.8rem + 0.5vw); 
  color: #467589; 
}


#map {
  width: 100%;
  height: 600px;
  border: 2px solid #467589; 
  border-radius: 8px;
  margin-top: 15px;
}

.accent-btn {
  display: inline-block;
  background-color: #FFD053; 
  color: #00497D;            
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 1rem;
}
