body, html, .app-container {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background: #f8fff8;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.sticky-header {
  position: sticky;
  top: 0;
  background: linear-gradient(90deg, #a8ff78 0%, #78ffd6 100%);
  color: #4b006e;
  z-index: 1000;
  padding: 0.5rem 0;
  box-shadow: 0 2px 8px rgba(120, 255, 214, 0.1);
}
.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #4b006e;
  text-decoration: none;
  letter-spacing: 2px;
}
.main-nav {
  margin-left: 2rem;
  display: flex;
  gap: 1.2rem;
}
.nav-link {
  color: #4b006e;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: 0.5rem;
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover, .nav-link.active {
  background: #7c3aed;
  color: #fff;
}
.sticky-footer {
  position: sticky;
  bottom: 0;
  background: linear-gradient(90deg, #a8ff78 0%, #78ffd6 100%);
  color: #4b006e;
  padding: 0.5rem 0;
  box-shadow: 0 -2px 8px rgba(120, 255, 214, 0.1);
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.social-links a {
  margin-left: 1rem;
  color: #4b006e;
  text-decoration: none;
  font-weight: 500;
}
.social-links a:hover {
  color: #7c3aed;
}
.main-content {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fff8;
}
.welcome-home, .page-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  padding: 2rem 1rem 1rem 1rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(76, 0, 110, 0.08);
}
.welcome-home h1, .page-content h1 {
  color: #4b006e;
  margin-bottom: 0.5rem;
  font-size: 2.2rem;
  text-align: center;
}
.welcome-home p, .page-content p {
  color: #3a3a3a;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  text-align: center;
}
.page-images {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 1.2rem;
}
.content-img {
  max-width: 220px;
  max-height: 160px;
  border-radius: 0.7rem;
  box-shadow: 0 2px 8px rgba(120, 255, 214, 0.13);
  object-fit: cover;
  background: #f8fff8;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.booking-form label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  color: #4b006e;
}
.booking-form input,
.booking-form textarea {
  margin-top: 0.3rem;
  padding: 0.6rem;
  border: 1px solid #a8ff78;
  border-radius: 0.4rem;
  font-size: 1rem;
  font-family: inherit;
  background: #f8fff8;
  color: #3a3a3a;
}
.booking-form button {
  background: linear-gradient(90deg, #a8ff78 0%, #7c3aed 100%);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.7rem 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.booking-form button:hover {
  background: linear-gradient(90deg, #7c3aed 0%, #a8ff78 100%);
}
.highlight-text {
  background: linear-gradient(90deg, #a8ff78 0%, #7c3aed 100%);
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.7rem 1rem;
  margin: 1.2rem 0 0.5rem 0;
  font-size: 1.08rem;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 2px 8px rgba(120, 255, 214, 0.13);
}
.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(76, 0, 110, 0.08);
  padding: 1rem 2rem;
  min-width: 350px;
  min-height: 250px;
}
.carousel-img {
  max-width: 400px;
  max-height: 250px;
  border-radius: 0.5rem;
  margin: 0 1rem;
  box-shadow: 0 2px 8px rgba(120, 255, 214, 0.15);
  transition: opacity 0.4s;
  opacity: 1;
}
.fade-out {
  opacity: 0;
  transition: opacity 0.4s;
}
.fade-in {
  opacity: 1;
  transition: opacity 0.4s;
}
.carousel-btn {
  background: #7c3aed;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
}
.carousel-btn:hover {
  background: #a8ff78;
  color: #4b006e;
}
