body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background: white;
  overflow-x: hidden;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  background: white;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  letter-spacing: 2px;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-btn {
  text-decoration: none;
  color: black;
  font-weight: 500;
  letter-spacing: 1px;
}

.home-page .home-button {
  display: none;
}

.logo-link {
  text-decoration: none;
  color: inherit;
}

.panel-link {
  text-decoration: none;
}

.sub-header {
  text-align: center;
  padding: 1rem 2rem;
  background: #f4f4f4;
}

.sub-header h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.panel-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 2rem;
}

.panel {
  position: relative;
  height: 350px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  transform: skew(-3deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.panel h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) skew(3deg);
  color: white;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.panel:hover {
  transform: skew(-3deg) translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* About Page */
.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2rem;
  text-align: center;
}

.portrait {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 2rem;
}

.about-text {
  max-width: 600px;
}

/* Book Page */
.book-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  min-height: 70vh;
}

.book-content {
  max-width: 800px;
  text-align: left;
}

.book-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.book-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.book-content .booking-intro {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.book-content ul {
  list-style-position: inside;
  padding-left: 0;
  margin-bottom: 2rem;
}

.book-content li {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* Carousel */
.carousel-container {
  padding: 3rem 2rem;
  text-align: center;
}

.carousel-container h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.carousel {
  margin: 0 auto;
}

.carousel-cell {
  width: 80%;
  margin-right: 2rem;
  border-radius: 12px;
  overflow: hidden;
}

.carousel-cell img {
  display: block;
  width: 100%;
  height: auto;
}
