	.hero-text-desktop {
	  display: block;
	}

	.hero-text-mobile {
	  display: none;
	}

	@media (max-width: 768px) {
	  .hero-text-desktop {
		display: none;
	  }

	  .hero-text-mobile {
		display: block;
	  }
	}

	.hero-banner {
	  height: 500px;
	  position: relative;
	  color: white;
	  text-align: center;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  background-size: cover;
	  background-position: center;
	  background-repeat: no-repeat;
	  background-color: #007CAF;
	  background-image: url('../images/09-21-30.jpg');
	}

	@media (max-width: 768px) {
	  .hero-banner {
		background-image: url('../images/hero-mobile.jpg');
		width: 100%;
	  }
	}

	.hero-text {
	  position: absolute;
	  top: 24%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	  background-color: transparent;
	  padding: 1em 2em;
	  border-radius: 10px;
	  text-align: center;
	  width: auto;
	  max-width: 90%;
	  box-sizing: border-box;
	}

	@media (max-width: 1024px) {
	  .hero-text {
		top: 38%;
	  }
	}

	@media (max-width: 1199px) {
	  .hero-text-desktop {
		top: 24%;
		font-size: 1.1em;
		padding: 1em 2em;
		max-width: 85%;
	  }

	  .hero-text-desktop p {
		font-size: 1em;
	  }

	  #countdown {
		font-size: 0.95em;
	  }

	  .hero-text-desktop .btn {
		font-size: 1em;
		padding: 0.6em 1.2em;
	  }
	}

	@media (max-width: 768px) {
	  .hero-banner {
		background-image: url('../images/hero-mobile.jpg');
		background-color: #007CAF;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	  }

	  .hero-text {
		top: 24%; /* ← FIXED: increased from 34% to 42% for better spacing */
		padding: 1em 1em;
		max-width: 80%;
		width: 80%;
		box-sizing: border-box;
		font-size: 1.1em;
		line-height: 1.35;
	  }

	  .hero-text p {
		font-size: 1.1em;
		line-height: 1.35;
	  }

	  #countdown {
		font-size: 1.05em;
		line-height: 1.3;
	  }

	  .hero-text .btn {
		font-size: 1em;
		padding: 0.6em 1.2em;
	  }
	}

	@media (min-width: 2000px) {
	  .hero-text {
		font-size: 1.5em;
		padding: 2em 3em;
	  }

	  .hero-text p {
		font-size: 1.3em;
	  }

	  #countdown {
		font-size: 1.1em;
	  }

	  .hero-text .btn {
		font-size: 1.2em;
		padding: 0.8em 1.5em;
	  }
	}

	@media (min-width: 2555px) and (max-width: 2570px) {
	  .hero-text {
		top: 24%;
		max-width: 900px;
		font-size: 1.3em;
		padding: 1.8em 2.4em;
	  }

	  .hero-text p {
		font-size: 1.2em;
	  }

	  #countdown {
		font-size: 1.1em;
	  }

	  .hero-text .btn {
		font-size: 1.1em;
		padding: 0.75em 1.3em;
	  }
	}

	@media (max-width: 768px) {
	  .hero-text-mobile {
		top: 24% !important; /* raise it higher */
		padding: 0.6em 1em !important;
	  }

	  .hero-text-mobile img {
		margin-bottom: 0.4em;
	  }

	  .hero-text-mobile p {
		margin: 0.2em 0;
		line-height: 1.2;
	  }

	  .hero-text-mobile #countdown {
		margin-top: 0.4em;
	  }
	}

	/* Default: hide landscape block */
	.hero-text-landscape {
	  display: none;
	}

	/* Show only in landscape phone view */
	@media (max-width: 1024px) and (max-height: 500px) {
	  .hero-text-desktop,
	  .hero-text-mobile {
		display: none;
	  }

	  .hero-text-landscape {
		display: block;
	  }
	}
	  
	@media (max-width: 768px) and (orientation: landscape) {
	  .hero-text-mobile img {
		margin-top: -20px; /* Raise logo upward */
		margin-bottom: 4px; /* Optional: tighten spacing below */
	  }

	  .hero-text-mobile {
		padding-top: 10px; /* Optional: reduce top space overall */
	  }
	}	  

