/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fdfdfd;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  background-color: #e187ff;
  padding: 1rem 0;
}

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

.site-title {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
}

.site-nav .book-now {
  background-color: #fff;
  color: #e187ff;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-weight: 600;
}

.site-nav .book-now:hover {
  background-color: #f0e0f7;
}

/* Main content */
main.container {
  padding-top: 2rem;
  padding-bottom: 3rem;
  min-height: 60vh;
}

/* Hero (home page) */
.hero {
  text-align: center;
  padding: 3rem 0;
}

.hero h1 {
  font-size: 2.4rem;
  color: #e187ff;
  margin-bottom: 1rem;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}

/* Typography */
h1,
h2,
h3 {
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #6c63ff;
}

/* Page list */
.page-list {
  list-style: none;
  padding: 0;
}

.page-list li {
  margin-bottom: 1.5rem;
}

.page-list a {
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
}

.page-list a:hover {
  text-decoration: underline;
}

.page-list p {
  color: #666;
  margin-top: 0.25rem;
}

/* Footer */
.site-footer {
  background-color: #f0eefc;
  padding: 1.5rem 0;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}