/* Hero Section */
.hero-split {
  display: flex;
  height: 45vh;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}
.hero-split img {
  width: 50%;
  object-fit: cover;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  padding: 1rem;
  max-width: 90%;
}
.hero-text h1 {
  font-size: 4rem;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  line-height: 1.1;
}
.hero-text p {
  font-size: 2rem;
  margin: 1rem 0;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

@media (max-width: 600px) {
  .hero-split {
    flex-direction: column;
    height: auto;
  }
  .hero-split img { width: 100%; }
  .hero-text h1 { font-size: 2.5rem; }
  .hero-text p  { font-size: 1rem; }
}

/* Tablet fixes (769px–1024px) */
@media only screen and (min-width: 769px) and (max-width: 1024px) {


  /* 5) Hero CTA: center its button if you have one there */
  .hero-text {
    padding: 1rem;
    max-width: 85%;
  }
  .hero-text .btn,
  .hero-text .book-btn {
    display: inline-block;
    margin: 1.5rem auto 0;
  }

}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  /* ensure the hero CTA is visible on tablet */
  .hero-text .find-out-more {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 1.5rem auto 0;        /* center it under your text */
    padding: 0.75rem 1.5rem;      /* match your button sizing */
    font-size: 1rem;
  }
}