/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  scroll-behavior: smooth;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fff0f5;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

nav h1 {
  margin: 0;
  color: #a0335a;
  font-size: 1.5rem;
}

.book-btn {
  padding: 0.5rem 1rem;
  background-color: #a0335a;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.book-btn:hover {
  background-color: #8a2c4a;
}

section {
  width: 100%;
}

section img {
  width: 100%;
  display: block;
}

footer {
  background-color: #fff0f5;
  text-align: center;
  padding: 1rem;
  color: #444;
}
