.evolutee-hotel-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.evolutee-hotel-main {
  flex: 1;
  background-color: #f8f5f0;
}

.evolutee-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Page Header */
.evolutee-page-header {
  background-color: #f8f5f0;
  padding: 30px 20px 30px;
  margin-top: 0px;
}

.evolutee-page-header h1 {
  font-size: 2.5rem;
  color: #2c2c2c;
  text-align: center;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Source Sans Pro', sans-serif;
  margin: 0;
}

/* Intro Section - Image Left, Text Right */
.evolutee-intro-section {
  padding: 0px 20px;
  background-color: #f8f5f0;
}

.evolutee-intro-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.evolutee-intro-image {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.evolutee-intro-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.evolutee-intro-image:hover img {
  transform: scale(1.05);
}

.evolutee-intro-text {
  flex: 0 0 50%;
  padding: 20px 0;
}

.evolutee-intro-text h2 {
  font-size: 2rem;
  color: #2c2c2c;
  font-weight: 600;
  margin-bottom: 25px;
  font-family: 'Source Sans Pro', sans-serif;
  letter-spacing: 1px;
  line-height: 1.3;
}

.evolutee-intro-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
  font-weight: 400;
  font-family: 'Source Sans Pro', sans-serif;
}

.evolutee-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background-color: #00bcd4;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid #00bcd4;
  border-radius: 6px;
  margin-top: 15px;
  font-family: 'Source Sans Pro', sans-serif;
}

.evolutee-btn:hover {
  background-color: transparent;
  color: #00bcd4;
  transform: translateX(5px);
}

/* Location Section */
.evolutee-location-section {
  padding: 60px 20px;
  background-color: #f8f5f0;
}

.evolutee-location-text {
  max-width: 900px;
  margin: 0 auto;
}

.evolutee-location-text h2 {
  font-size: 2rem;
  color: #2c2c2c;
  font-weight: 600;
  margin-bottom: 30px;
  font-family: 'Source Sans Pro', sans-serif;
  letter-spacing: 1px;
  text-align: center;
}

.evolutee-location-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
  font-weight: 400;
  text-align: center;
  font-family: 'Source Sans Pro', sans-serif;
}

/* Carousel Section - Matching RoomsSection2 style */
.evolutee-carousel-section {
  padding: 80px 20px;
  background-color: #f8f5f0;
}

.evolutee-carousel-container {
  max-width: 1400px;
  margin: 0 auto;
}

.evolutee-carousel {
  position: relative;
  width: 100%;
  padding: 0 80px;
}

.carousel-evolutee-inner {
  position: relative;
  width: 100%;
  overflow: visible;
}

.carousel-evolutee-item {
  display: none;
  width: 100%;
  border-radius: 12px;
}

.carousel-evolutee-item.active {
  display: block;
}

.carousel-evolutee-item.active.slide-next {
  animation: slideInRight 0.6s ease-in-out;
}

.carousel-evolutee-item.active.slide-prev {
  animation: slideInLeft 0.6s ease-in-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.carousel-evolutee-card {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  isolation: isolate;
}

.carousel-evolutee-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.carousel-evolutee-image-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: #f5f5f5;
  height: 600px;
  max-height: 600px;
}

.carousel-evolutee-image {
  width: 100%;
  height: 600px;
  max-height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.carousel-evolutee-card:hover .carousel-evolutee-image {
  transform: scale(1.05);
}

.carousel-evolutee-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.carousel-evolutee-card:hover .carousel-evolutee-overlay {
  opacity: 1;
}

.carousel-evolutee-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #2c2c2c;
  font-size: 4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  font-weight: 200;
}

.carousel-evolutee-control:hover {
  color: #00bcd4;
  transform: translateY(-50%) scale(1.1);
}

.carousel-evolutee-prev {
  left: 0;
}

.carousel-evolutee-next {
  right: 0;
}

.carousel-evolutee-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d4c5b0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-indicator:hover {
  background-color: #00bcd4;
  transform: scale(1.2);
}

.carousel-indicator.active {
  background-color: #00bcd4;
  width: 30px;
  border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .evolutee-intro-content {
    gap: 40px;
  }

  .evolutee-intro-text h2 {
    font-size: 1.8rem;
  }

  .evolutee-carousel {
    padding: 0 60px;
  }

  .carousel-evolutee-image-container {
    min-height: 180px;
  }

  .carousel-evolutee-image {
    min-height: 180px;
  }
}

@media (max-width: 968px) {
  .evolutee-page-header {
    padding: 30px 20px 30px;
  }

  .evolutee-page-header h1 {
    font-size: 2rem;
  }

  .evolutee-intro-section {
    padding: 0px 20px;
  }

  .evolutee-intro-content {
    flex-direction: column;
    gap: 30px;
  }

  .evolutee-intro-image,
  .evolutee-intro-text {
    flex: 0 0 100%;
  }

  .evolutee-intro-text h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .evolutee-intro-text p {
    text-align: center;
  }

  .evolutee-intro-text .evolutee-btn {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
  }

  .evolutee-location-section {
    padding: 50px 20px;
  }

  .evolutee-carousel-section {
    padding: 60px 20px;
  }

  .evolutee-carousel {
    padding: 0 50px;
  }

  .carousel-evolutee-image-container {
    min-height: 300px;
  }

  .carousel-evolutee-image {
    min-height: 300px;
  }

  .carousel-evolutee-control {
    font-size: 3rem;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .evolutee-page-header {
    padding: 90px 15px 25px;
  }

  .evolutee-page-header h1 {
    font-size: 1.75rem;
    letter-spacing: 2px;
  }

  .evolutee-intro-section {
    padding: 20px 15px;
  }

  .evolutee-intro-text h2 {
    font-size: 1.5rem;
  }

  .evolutee-intro-text p {
    font-size: 1rem;
  }

  .evolutee-location-section {
    padding: 40px 15px;
  }

  .evolutee-location-text h2 {
    font-size: 1.6rem;
  }

  .evolutee-location-text p {
    font-size: 1rem;
  }

  .evolutee-carousel {
    padding: 0 40px;
  }

  .carousel-evolutee-image-container {
    min-height: 260px;
  }

  .carousel-evolutee-image {
    min-height: 260px;
  }

  .carousel-evolutee-control {
    font-size: 2.5rem;
    width: 40px;
    height: 40px;
  }

  .carousel-evolutee-prev {
    left: -10px;
  }

  .carousel-evolutee-next {
    right: -10px;
  }
}

@media (max-width: 480px) {
  .evolutee-page-header {
    padding: 80px 12px 20px;
  }

  .evolutee-page-header h1 {
    font-size: 1.5rem;
    letter-spacing: 1.5px;
  }

  .evolutee-intro-section {
    padding: 40px 12px;
  }

  .evolutee-intro-text h2 {
    font-size: 1.3rem;
  }

  .evolutee-intro-text p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .evolutee-btn {
    padding: 12px 30px;
    font-size: 0.85rem;
    letter-spacing: 1px;
  }

  .evolutee-location-section {
    padding: 35px 12px;
  }

  .evolutee-location-text h2 {
    font-size: 1.4rem;
  }

  .evolutee-location-text p {
    font-size: 0.95rem;
  }

  .evolutee-carousel-section {
    padding: 50px 12px;
  }

  .evolutee-carousel {
    padding: 0 35px;
  }

  .carousel-evolutee-image-container {
    min-height: 250px;
  }

  .carousel-evolutee-image {
    min-height: 250px;
  }

  .carousel-evolutee-indicators {
    margin-top: 35px;
    gap: 8px;
  }

  .carousel-indicator {
    width: 8px;
    height: 8px;
  }

  .carousel-indicator.active {
    width: 24px;
  }
}


/*# sourceMappingURL=773.540b8687.chunk.css.map*/