* {
	margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

	body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #282828;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color:#aaa;
    }

    .hero {
  	display: flex;
  	height: 100vh;
  	width: 100%;
	}

	/* LEFT SIDE */
	.hero-left {
	  flex: 1;
	  padding: 80px;
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	      background-color: #282828;
	}
	
	.hero-left h1 {
	  font-size: 48px;
	  margin-bottom: 20px;
	}
	
	.hero-left p {
	  font-size: 18px;
	  max-width: 720px;
	}
	
	.hero-left ul {
	  margin-top: 30px;
	  list-style: none;
	  padding: 0;
	}
	
	.hero-left li {
	  margin-bottom: 12px;
	  font-size: 16px;
	}
	
	/* RIGHT SIDE */
	.hero-right {
	  flex: 1;
	  position: relative;
	  overflow: hidden;
	}
	
	/* Background video/image */
	
	.hero-right iframe.booking-iframe {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  border: none;
	
	}

 	footer {
    background-color: #000000;
    padding: 20px;
    text-align: center;
    color: #6c757d;
    font-size: 14px;
    border-top: 1px solid #282828;
	}

    footer a {
    color: #007bff;
    text-decoration: none;
    }

    footer a:hover {
    text-decoration: underline;
    }

.hero-left {
    background-image: url('assets/images/hero-left-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* Tablets & small laptops */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: 100vh;
  }

  .hero-left {
    padding: 60px 40px;
  }

  .hero-left h1 {
    font-size: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    height: auto;
  }

  .hero-left {
    padding: 40px 24px;
    text-align: left;
  }

  .hero-left h1 {
    font-size: 32px;
  }

  .hero-left p {
    font-size: 16px;
  }

  .hero-right {
    position: relative;
    height: 650px;
    min-height: 650px;
  }

  .hero-right iframe.booking-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 28px;
  }

  .hero-right {
    height: 600px;
    min-height: 600px;
  }
}

  .logo-container {
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo-container img {
            max-width: 600px;
            height: auto;
            max-height: 400px;
            width: 100%;
        }

        footer {
            background-color: #000000;
            padding: 20px;
            text-align: center;
            color: #6c757d;
            font-size: 14px;
            border-top: 1px solid #282828;
        }

        footer a {
            color: #007bff;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }
        .uncloaked {
            font-size: 18px;
            line-height: normal;
            max-width: 900px;
            margin: 0 auto;
        }
        .btn-chat {
            margin-top: 30px;
        }
        .btn-chat a {
            display: inline-block;
            padding: 14px 20px;
            background-color: transparent;
            color: #fff;
            border: 2px solid #aaa;
            font-size: 20px;
            text-decoration: none;
            border-radius: 50px;
            transition: background-color 0.3s, color 0.3s;
            min-width: 200px;
          }
          .comming-soon {width:70px !important;}