* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background: #FAFAFA;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1920px) {
  .container {
    padding: 0 40px;
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 480px) {
  .nav {
    padding: 15px 15px;
    background: rgba(255, 255, 255, 0.98);
  }
}
.nav .nav-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1920px) {
  .nav .nav-content {
    padding: 0 40px;
  }
}
.nav .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav .logo .logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.nav .logo .logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #666666;
  display: flex;
  gap: 4px;
}
.nav .logo .logo-text .logo-accent {
  color: #666666;
}
@media (max-width: 480px) {
  .nav .logo .logo-text {
    font-size: 16px;
  }
  .nav .logo .logo-icon {
    width: 28px;
    height: 28px;
  }
}
.nav .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav .nav-links a {
  text-decoration: none;
  color: #666666;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav .nav-links a:hover {
  color: #FF413A;
}
.nav .nav-links a.cta-button {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  background: #FF413A;
  color: #FFFFFF;
}
.nav .nav-links a.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.nav .nav-links a.cta-button:hover {
  background: #E63A33;
}
@media (max-width: 768px) {
  .nav .nav-links {
    gap: 16px;
  }
  .nav .nav-links a:not(.cta-button) {
    display: none;
  }
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 480px) {
  .hero {
    padding-top: 100px;
    min-height: 100vh;
  }
}
.hero .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: #FF413A;
}
.hero .video-background video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .video-background .video-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 65, 58, 0.8) 0%, rgba(255, 107, 101, 0.6) 50%, rgba(0, 191, 255, 0.4) 100%);
}
.hero .video-background .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(255, 65, 58, 0.7) 0%, rgba(255, 65, 58, 0.4) 30%, rgba(255, 65, 58, 0.2) 60%, rgba(0, 0, 0, 0.3) 100%);
  z-index: -1;
}
.hero .hero-content {
  text-align: center;
  color: #FFFFFF;
  max-width: 800px;
  padding: 0 20px;
  z-index: 1;
}
@media (min-width: 1920px) {
  .hero .hero-content {
    max-width: 1000px;
  }
}
@media (max-width: 480px) {
  .hero .hero-content {
    padding: 0 15px;
    max-width: 100%;
  }
}
.hero .hero-text {
  margin-bottom: 60px;
}
@media (max-width: 480px) {
  .hero .hero-text {
    margin-bottom: 40px;
  }
}
.hero .hero-text h1 {
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}
@media (min-width: 1920px) {
  .hero .hero-text h1 {
    font-size: 4.5rem;
  }
}
@media (max-width: 480px) {
  .hero .hero-text h1 {
    margin-bottom: 16px;
    line-height: 1.1;
  }
}
.hero .hero-text p {
  font-size: clamp(1rem, 4vw, 1.25rem);
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .hero .hero-text p {
    margin-bottom: 30px;
    line-height: 1.5;
  }
}
.hero .hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
@media (max-width: 480px) {
  .hero .hero-actions {
    margin-bottom: 50px;
    gap: 15px;
  }
}
.hero .hero-actions .primary-button {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  background: #FF413A;
  color: #FFFFFF;
  padding: 16px 32px;
  font-size: 18px;
}
.hero .hero-actions .primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
@media (max-width: 480px) {
  .hero .hero-actions .primary-button {
    padding: 14px 28px;
    font-size: 16px;
    min-width: 160px;
  }
}
.hero .hero-actions .primary-button:hover {
  background: #E63A33;
}
.hero .hero-actions .secondary-button {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 14px 30px;
  font-size: 18px;
}
.hero .hero-actions .secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
@media (max-width: 480px) {
  .hero .hero-actions .secondary-button {
    padding: 12px 26px;
    font-size: 16px;
    min-width: 160px;
  }
}
.hero .hero-actions .secondary-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}
.hero .hero-stats {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero .hero-stats {
    gap: 40px;
  }
}
@media (max-width: 480px) {
  .hero .hero-stats {
    gap: 30px;
    margin-top: 20px;
  }
}
.hero .hero-stats .stat {
  text-align: center;
}
.hero .hero-stats .stat .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}
@media (min-width: 1920px) {
  .hero .hero-stats .stat .stat-number {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .hero .hero-stats .stat .stat-number {
    font-size: 2rem;
    margin-bottom: 4px;
  }
}
.hero .hero-stats .stat .stat-label {
  font-size: 1rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 480px) {
  .hero .hero-stats .stat .stat-label {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }
}

.screenshots {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(255, 65, 58, 0.03) 0%, rgb(255, 255, 255) 50%, rgba(255, 65, 58, 0.03) 100%);
}
@media (max-width: 480px) {
  .screenshots {
    padding: 80px 0;
  }
}
.screenshots .screenshots-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 1920px) {
  .screenshots .screenshots-content {
    padding: 0 40px;
  }
}
@media (max-width: 480px) {
  .screenshots .screenshots-content {
    padding: 0 10px;
  }
}
.screenshots .screenshots-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 16px;
  color: #1A1A1A;
}
.screenshots .screenshots-content .screenshots-subtitle {
  font-size: 1.2rem;
  color: #666666;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.screenshots .screenshots-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 60px;
}
@media (min-width: 1920px) {
  .screenshots .screenshots-gallery {
    gap: 80px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .screenshots .screenshots-gallery {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.screenshots .screenshot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.screenshots .screenshot-image {
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}
.screenshots .screenshot-image:hover {
  transform: translateY(-5px);
}
.screenshots .screenshot-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(255, 65, 58, 0.15);
  transition: all 0.3s ease;
}
.screenshots .screenshot-image img:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 12px 24px rgba(255, 65, 58, 0.25);
}
@media (max-width: 768px) {
  .screenshots .screenshot-image img {
    max-width: 280px;
  }
}
@media (max-width: 480px) {
  .screenshots .screenshot-image img {
    max-width: 250px;
  }
}
.screenshots .screenshot-text h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1A1A1A;
}
.screenshots .screenshot-text p {
  color: #666666;
  line-height: 1.6;
  max-width: 280px;
}

.features {
  padding: 120px 0;
  background: #FFFFFF;
}
@media (max-width: 480px) {
  .features {
    padding: 80px 0;
  }
}
.features .features-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 1920px) {
  .features .features-content {
    padding: 0 40px;
  }
}
@media (max-width: 480px) {
  .features .features-content {
    padding: 0 10px;
  }
}
.features .features-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 60px;
  color: #1A1A1A;
}
.features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
@media (min-width: 1920px) {
  .features .features-grid {
    gap: 60px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.features .feature-card {
  background: #FFFFFF;
  padding: 40px 30px;
  border-radius: 16px;
  transition: all 0.3s ease;
}
.features .feature-card .feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 65, 58, 0.1);
  border-radius: 16px;
  color: #FF413A;
}
.features .feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1A1A1A;
}
.features .feature-card p {
  color: #666666;
  line-height: 1.7;
}

@media (max-width: 480px) {
  .container {
    padding: 0;
  }
  .nav .nav-content {
    padding: 0 10px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    width: 200px;
    justify-content: center;
  }
  .hero-stats {
    gap: 30px;
  }
  .hero-stats .stat .stat-number {
    font-size: 2rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (min-width: 1920px) {
  .hero .hero-content {
    transform: scale(1.1);
  }
  .features .features-content h2 {
    font-size: 3.5rem;
  }
  .feature-card {
    padding: 50px 40px;
  }
  .feature-card .feature-icon {
    width: 80px;
    height: 80px;
  }
  .feature-card .feature-icon svg {
    width: 40px;
    height: 40px;
  }
  .feature-card h3 {
    font-size: 1.75rem;
  }
  .feature-card p {
    font-size: 1.1rem;
  }
}
.footer {
  background: linear-gradient(135deg, rgb(250, 250, 250) 0%, rgb(255, 255, 255) 100%);
  color: #1A1A1A;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(102, 102, 102, 0.1);
}
@media (max-width: 480px) {
  .footer {
    padding: 40px 0 20px;
  }
}
.footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (min-width: 1920px) {
  .footer .footer-content {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .footer .footer-content {
    padding: 0 15px;
    gap: 30px;
  }
}
.footer .footer-info .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .footer .footer-info .footer-logo {
    justify-content: center;
  }
}
.footer .footer-info .footer-logo .footer-logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.footer .footer-info .footer-logo .footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A1A1A;
}
.footer .footer-info .footer-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
  max-width: 400px;
}
@media (max-width: 768px) {
  .footer .footer-info .footer-description {
    margin: 0 auto;
  }
}
.footer .footer-social h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1A1A1A;
}
.footer .footer-social .social-icons {
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .footer .footer-social .social-icons {
    justify-content: center;
  }
}
.footer .footer-social .social-icons .social-icon {
  width: 44px;
  height: 44px;
  background: rgba(102, 102, 102, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer .footer-social .social-icons .social-icon:hover {
  background: #FF413A;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 65, 58, 0.3);
}
.footer .footer-social .social-icons .social-icon svg {
  width: 20px;
  height: 20px;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(102, 102, 102, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}
@media (max-width: 480px) {
  .footer .footer-bottom {
    margin-top: 30px;
    padding-top: 15px;
  }
}
.footer .footer-bottom p {
  font-size: 0.9rem;
  color: #666666;
  margin: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content {
  animation: fadeInUp 1s ease-out;
}

.feature-card {
  animation: fadeInUp 0.8s ease-out;
}
.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-card:nth-child(3) {
  animation-delay: 0.4s;
}

.resort-hero {
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("Resort/images/download.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.resort-hero .resort-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.resort-hero .resort-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  max-width: 800px;
  padding: 0 20px;
}
.resort-hero .resort-hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.resort-hero .resort-hero-content h1 span {
  color: #DC143C;
}
.resort-hero .resort-hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.resort-hero .resort-hero-content .resort-cta-button {
  background: linear-gradient(135deg, #DC143C, #B22222);
  color: #FFFFFF;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.resort-hero .resort-hero-content .resort-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(220, 20, 60, 0.3);
}
@media (max-width: 768px) {
  .resort-hero .resort-hero-content {
    padding: 120px 20px 50px;
  }
  .resort-hero .resort-hero-content h1 {
    font-size: 2.5rem;
  }
  .resort-hero .resort-hero-content p {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .resort-hero .resort-hero-content {
    padding: 100px 15px 30px;
  }
  .resort-hero .resort-hero-content h1 {
    font-size: 2rem;
  }
  .resort-hero .resort-hero-content .resort-cta-button {
    font-size: 1rem;
    padding: 15px 30px;
  }
}

.resort-about {
  padding: 80px 0;
  background: #F8F9FA;
}
.resort-about h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2C3E50;
}
.resort-about .resort-about-text {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: #476481;
}
@media (max-width: 768px) {
  .resort-about {
    padding: 60px 0;
  }
  .resort-about h2 {
    font-size: 2rem;
  }
  .resort-about .resort-about-text {
    font-size: 1rem;
  }
}

.resort-features {
  padding: 80px 0;
}
.resort-features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2C3E50;
}
.resort-features .resort-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
.resort-features .resort-feature-card {
  background: #FFFFFF;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.resort-features .resort-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.resort-features .resort-feature-card:hover .resort-feature-image img {
  transform: scale(1.05);
}
.resort-features .resort-feature-card .resort-feature-image {
  height: 250px;
  overflow: hidden;
}
.resort-features .resort-feature-card .resort-feature-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.resort-features .resort-feature-card .resort-feature-content {
  padding: 1.5rem;
}
.resort-features .resort-feature-card .resort-feature-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #2C3E50;
}
.resort-features .resort-feature-card .resort-feature-content p {
  color: #507192;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .resort-features {
    padding: 60px 0;
  }
  .resort-features h2 {
    font-size: 2rem;
  }
  .resort-features .resort-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .resort-features .resort-feature-card .resort-feature-image {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .resort-features .resort-features-grid {
    grid-template-columns: 1fr;
  }
  .resort-features .resort-feature-card {
    margin: 0 10px;
  }
}/*# sourceMappingURL=style.css.map */