@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #fffaf7;
  color: #1e1e1e;
}
nav {
  background: #f4f1ec;
  padding: 1em;
  text-align: center;
}
nav a {
  margin: 0 1em;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
.hero {
  text-align: center;
  padding: 3em 1em;
}

.logo {
  display: block;
  margin: 0 auto;
  max-width: 300px;
  width: 100%;
  height: auto;
}

.button, .button-outline {
  color: white !important;
  background-color: #d8a9a9;
  color: white;
  border: none;
  display: inline-block;
  margin: 1em 0.5em;
  padding: 0.75em 1.5em;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}
.button {
  background: #d2a4a8;
  color: white;
}
.button-outline {
  color: white !important;
  background-color: #d8a9a9;
  color: white;
  border: none;
  border: 2px solid #d2a4a8;
  color: #d2a4a8;
}
.gallery, .reviews {
  padding: 2em;
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1em;
  margin-top: 2em;
}
.gallery-grid img {
  width: 100%;
  border-radius: 8px;
}

.about {
  padding: 2em;
  text-align: center;
}
.about-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  margin-top: 1.5em;
}
.about-images img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
}
