body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: #fff;
  color: #222;
}

.nav-container {
  background: #f8f8f8;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
}

.menu-icon {
  font-size: 1.6rem;
  cursor: pointer;
  display: none;
}

#menu-toggle {
  display: none;
}

.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
}

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

@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    width: 200px;
    padding: 10px 20px;
  }

  #menu-toggle:checked + .menu-icon + .menu {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}

.hero {
  background: url('img_hero.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  background-color: rgba(255,255,255,0.85);
  padding: 40px;
  max-width: 700px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}

.cta-button {
  background: #b89f77;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

main.welcome {
  padding: 60px 20px;
  text-align: center;
}
.subpage-header {
  background: linear-gradient(to bottom, #f7f3ef, #ffffff);
  padding: 40px 0;
  text-align: center;
}

.subpage-header h1 {
  margin: 0;
  font-size: 2.5em;
  color: #3a2e2e;
  border-bottom: 1px solid #ccc;
  display: inline-block;
  padding-bottom: 10px;

}



.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 30px;
}

.gallery img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.intro-divider {
  background-color: #f2f0ed;
  text-align: center;
  padding: 30px 20px;
  font-size: 1.1rem;
  font-style: italic;
  color: #5c5c5c;
  line-height: 1.6;
}
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #777;
}
.map-button {
  text-align: center;
  margin-top: 20px;
}
.map-button a {
  display: inline-block;
  padding: 12px 24px;
  background-color: #b89f77;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
}
.map-button a:hover {
  background-color: #a5855c;
}


