/* [project]/src/components/Home/home.css [app-client] (css) */
.home-container {
  color: var(--primary-color);
  background: var(--primary-background-color);
  font-family: Montserrat, sans-serif;
  transition: background-color .3s, color .3s;
  overflow-x: hidden;
}

.home-video-modal {
  z-index: 9999;
  background: #000000f2;
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: .3s homeFadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

@keyframes homeFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.home-video-content {
  background: #000;
  border-radius: 12px;
  width: 100%;
  max-width: 1200px;
  animation: .3s homeSlideUp;
  position: relative;
  overflow: hidden;
}

@keyframes homeSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-video-close {
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: transform .3s;
  display: flex;
  position: absolute;
  top: -50px;
  right: 0;
}

.home-video-close:hover {
  transform: rotate(90deg);
}

.home-video-wrapper {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}

.home-video-wrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.home-hero-slider {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-hero-backgrounds {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.home-hero-bg {
  opacity: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  transition: opacity 1.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.home-bg-active {
  opacity: 1;
}

.home-hero-overlay {
  z-index: 2;
  background: linear-gradient(#00000080, #0000004d);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.home-hero-container {
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
  position: relative;
}

.home-hero-content {
  text-align: center;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
}

.home-hero-title {
  letter-spacing: 2px;
  text-shadow: 2px 2px 15px #0009;
  margin-bottom: 25px;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1;
  animation: .8s homeFadeInUp;
}

.home-hero-subtitle {
  text-shadow: 1px 1px 8px #00000080;
  opacity: .95;
  margin-bottom: 50px;
  font-size: 22px;
  line-height: 1.6;
  animation: 1s homeFadeInUp;
}

@keyframes homeFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-hero-buttons {
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  animation: 1.2s homeFadeInUp;
  display: flex;
}

.home-hero-btn-primary, .home-hero-btn-secondary {
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  padding: 18px 45px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all .3s;
}

.home-hero-btn-primary {
  color: #fff;
  background: #36daef;
  border: 2px solid #36daef;
}

.home-hero-btn-primary:hover {
  background: #2bc4d8;
  border-color: #2bc4d8;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #36daef66;
}

.home-hero-btn-secondary {
  color: #fff;
  background: none;
  border: 2px solid #fffc;
  align-items: center;
  gap: 10px;
  display: flex;
}

.home-hero-btn-secondary:hover {
  background: #ffffff1a;
  border-color: #fff;
  transform: translateY(-2px);
}

.home-hero-indicators {
  z-index: 4;
  gap: 12px;
  display: flex;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.home-hero-indicator {
  cursor: pointer;
  background: #fff6;
  border: none;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  padding: 0;
  transition: all .3s;
}

.home-hero-indicator:hover {
  background: #fff9;
}

.home-indicator-active {
  background: #36daef;
  border-radius: 6px;
  width: 40px;
}

.home-section-tag {
  color: #36daef;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.home-tag-center {
  text-align: center;
  display: block;
}

.home-highlight {
  color: #36daef;
}

.home-welcome {
  background: var(--primary-background-color);
  padding: 120px 20px;
  transition: background-color .3s;
}

.home-welcome-container {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
}

.home-welcome-title {
  color: var(--primary-color);
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  transition: color .3s;
}

.home-welcome-text {
  color: var(--primary-color);
  opacity: .85;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  transition: color .3s;
}

.home-welcome-btn {
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #36daef;
  border: none;
  border-radius: 50px;
  margin-top: 20px;
  padding: 18px 45px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all .3s;
}

.home-welcome-btn:hover {
  background: #2bc4d8;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #36daef66;
}

.home-welcome-image-grid {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  display: grid;
}

.home-welcome-img {
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: auto;
  transition: transform .3s;
  box-shadow: 0 8px 25px #0000001a;
}

.home-welcome-img:hover {
  transform: scale(1.02);
}

.home-welcome-img-1 {
  grid-row: span 2;
  height: 100%;
}

.home-features {
  background: var(--secondary-background-color);
  padding: 120px 20px;
  transition: background-color .3s;
}

.home-features-container {
  max-width: 1400px;
  margin: 0 auto;
}

.home-features-title {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
  transition: color .3s;
}

.home-features-subtitle {
  text-align: center;
  color: var(--primary-color);
  opacity: .8;
  max-width: 700px;
  margin: 0 auto 80px;
  font-size: 16px;
  line-height: 1.8;
  transition: color .3s;
}

.home-features-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  display: grid;
}

.home-feature-card {
  background: var(--primary-background-color);
  text-align: center;
  border-radius: 12px;
  padding: 40px 30px;
  transition: all .3s;
  box-shadow: 0 4px 15px #0000000d;
}

[data-theme="dark"] .home-feature-card {
  box-shadow: 0 4px 15px #0000004d;
}

.home-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px #36daef33;
}

.home-feature-icon {
  color: #fff;
  background: #36daef;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
}

.home-feature-title {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
  transition: color .3s;
}

.home-feature-desc {
  color: var(--primary-color);
  opacity: .8;
  font-size: 15px;
  line-height: 1.7;
  transition: color .3s;
}

.home-rooms {
  background: var(--primary-background-color);
  padding: 120px 20px;
  transition: background-color .3s;
}

.home-rooms-container {
  max-width: 1400px;
  margin: 0 auto;
}

.home-rooms-header {
  text-align: center;
  margin-bottom: 80px;
}

.home-rooms-title {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
  transition: color .3s;
}

.home-rooms-subtitle {
  color: var(--primary-color);
  opacity: .8;
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  transition: color .3s;
}

.home-rooms-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  display: grid;
}

.home-room-card {
  background: var(--secondary-background-color);
  border-radius: 12px;
  transition: all .3s;
  overflow: hidden;
  box-shadow: 0 4px 15px #0000000d;
}

[data-theme="dark"] .home-room-card {
  box-shadow: 0 4px 15px #0000004d;
}

.home-room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px #36daef33;
}

.home-room-image-wrapper {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.home-room-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .4s;
}

.home-room-card:hover .home-room-image {
  transform: scale(1.08);
}

.home-room-badge {
  color: #fff;
  background: #36daef;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  top: 20px;
  right: 20px;
}

.home-room-content {
  padding: 30px 25px;
}

.home-room-title {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
  transition: color .3s;
}

.home-room-desc {
  color: var(--primary-color);
  opacity: .8;
  font-size: 15px;
  line-height: 1.7;
  transition: color .3s;
}

.home-testimonials {
  background: var(--secondary-background-color);
  padding: 120px 20px;
  transition: background-color .3s;
}

.home-testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

.home-testimonials-title {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 80px;
  font-size: 48px;
  font-weight: 700;
  transition: color .3s;
}

.home-testimonials-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  display: grid;
}

.home-testimonial-card {
  background: var(--primary-background-color);
  border-radius: 12px;
  padding: 40px 30px;
  transition: all .3s;
  box-shadow: 0 4px 15px #0000000d;
}

[data-theme="dark"] .home-testimonial-card {
  box-shadow: 0 4px 15px #0000004d;
}

.home-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px #36daef33;
}

.home-testimonial-stars {
  color: #36daef;
  letter-spacing: 3px;
  margin-bottom: 20px;
  font-size: 20px;
}

.home-testimonial-text {
  color: var(--primary-color);
  opacity: .85;
  margin-bottom: 25px;
  font-size: 15px;
  font-style: italic;
  line-height: 1.8;
  transition: color .3s;
}

.home-testimonial-author {
  border-top: 2px solid #36daef33;
  padding-top: 20px;
}

.home-testimonial-name {
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 700;
  transition: color .3s;
}

.home-testimonial-role {
  color: #36daef;
  font-size: 14px;
  font-weight: 600;
}

.home-cta {
  text-align: center;
  background-image: url("https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1920&h=600&fit=crop");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: 150px 20px;
  position: relative;
  overflow: hidden;
}

.home-cta-overlay {
  z-index: 1;
  background: #000000b3;
  position: absolute;
  inset: 0;
}

.home-cta-container {
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.home-cta-title {
  color: #fff;
  text-shadow: 2px 2px 10px #00000080;
  margin-bottom: 25px;
  font-size: 56px;
  font-weight: 700;
}

.home-cta-text {
  color: #ffffffe6;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.8;
}

.home-cta-btn {
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #36daef;
  border: none;
  border-radius: 50px;
  padding: 20px 50px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
  transition: all .3s;
}

.home-cta-btn:hover {
  background: #2bc4d8;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px #36daef80;
}

@media (max-width: 1024px) {
  .home-hero-title {
    font-size: 60px;
  }

  .home-hero-subtitle {
    font-size: 18px;
  }

  .home-welcome-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .home-features-grid, .home-rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .home-hero-title {
    font-size: 48px;
  }

  .home-hero-subtitle {
    font-size: 16px;
  }

  .home-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .home-hero-btn-primary, .home-hero-btn-secondary {
    justify-content: center;
    width: 100%;
    max-width: 300px;
  }

  .home-welcome, .home-features, .home-rooms, .home-testimonials {
    padding: 80px 20px;
  }

  .home-welcome-title, .home-features-title, .home-rooms-title, .home-testimonials-title {
    font-size: 36px;
  }

  .home-features-grid, .home-rooms-grid {
    grid-template-columns: 1fr;
  }

  .home-cta {
    background-attachment: scroll;
    padding: 100px 20px;
  }

  .home-cta-title {
    font-size: 40px;
  }

  .home-cta-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .home-hero-slider {
    min-height: 85vh;
  }

  .home-hero-container {
    padding: 60px 15px;
  }

  .home-hero-title {
    margin-bottom: 20px;
    font-size: 36px;
  }

  .home-hero-subtitle {
    margin-bottom: 35px;
    font-size: 14px;
  }

  .home-hero-btn-primary, .home-hero-btn-secondary {
    padding: 15px 35px;
    font-size: 14px;
  }

  .home-hero-indicators {
    bottom: 20px;
  }

  .home-hero-indicator {
    width: 8px;
    height: 8px;
  }

  .home-indicator-active {
    width: 30px;
  }

  .home-welcome, .home-features, .home-rooms, .home-testimonials {
    padding: 60px 15px;
  }

  .home-welcome-title, .home-features-title, .home-rooms-title, .home-testimonials-title {
    font-size: 28px;
  }

  .home-welcome-image-grid {
    grid-template-columns: 1fr;
  }

  .home-welcome-img-1 {
    grid-row: span 1;
    height: auto;
  }

  .home-feature-icon {
    width: 60px;
    height: 60px;
  }

  .home-feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .home-cta {
    padding: 80px 15px;
  }

  .home-cta-title {
    font-size: 32px;
  }

  .home-cta-text {
    font-size: 14px;
  }

  .home-cta-btn {
    padding: 16px 40px;
    font-size: 14px;
  }

  .home-video-close {
    top: -40px;
    right: -5px;
  }
}

@media (max-width: 360px) {
  .home-hero-title {
    font-size: 32px;
  }

  .home-hero-subtitle {
    font-size: 13px;
  }
}

/*# sourceMappingURL=src_components_Home_home_bd16287d.css.map*/