/* =========================================================
   Travel Angeles — home.css (FULL, UPDATED)
   Homepage visuals: hero, sections, featured islands, etc.
========================================================= */

/* ---------------------------------
   HERO (image background)
---------------------------------- */
.ta-hero {
  position: relative;
  min-height: min(92vh, 980px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--ta-border);
  background: #000; /* fallback */
  background-size: cover;
  background-position: center;
}
.ta-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 8, 23, .15) 0%,
    rgba(2, 8, 23, .25) 35%,
    rgba(2, 8, 23, .48) 100%
  );
}
.ta-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 10vh 0 7vh;
}
.ta-hero__title {
  font-size: var(--ta-h1);
  line-height: 1.1;
  margin: .6rem 0 .4rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.28);
}
.ta-hero__subtitle {
  font-size: clamp(1.05rem, 0.9rem + 0.5vw, 1.25rem);
  max-width: 1100px;
  margin: 0 auto 1.25rem;
  opacity: .95;
  text-shadow: 0 1px 18px rgba(0,0,0,.25);
}
.ta-hero__cta {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

/* ---------------------------------
   WHAT WE OFFER / CLIENTS LOVE
---------------------------------- */
#what-we-offer .ta-lead,
#assurances .ta-lead {
  max-width: 900px;
}

/* ---------------------------------
   FEATURED ISLANDS
---------------------------------- */
.ta-dest {
  border: 1px solid var(--ta-border);
  border-radius: var(--ta-radius);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--ta-shadow-sm);
}
.ta-dest__img {
  width: 100%;
  height: 240px;           /* ensures consistent height */
  object-fit: cover;       /* keeps proportions, crops overflow */
  display: block;
}
.ta-dest__body {
  padding: 1rem;
}
.ta-dest__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .25rem;
}
.ta-dest__body p {
  color: var(--ta-muted);
  margin: 0;
}

/* ---------------------------------
   CONCIERGE
---------------------------------- */
#concierge.ta-section {
  padding-top: 72px;
  padding-bottom: 72px;
}
.ta-cta .ta-lead--invert {
  color: rgba(255,255,255,.9);
}
.ta-cta .ta-btn--light {
  background: #fff;
  color: var(--ta-text);
}

/* ---------------------------------
   CONTACT
---------------------------------- */
#contact .ta-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}
#contact .ta-link:hover {
  color: var(--ta-primary-600);
}

/* ---------------------------------
   RESPONSIVE TWEAKS
---------------------------------- */
@media (max-width: 767.98px) {
  .ta-hero__content {
    text-align: center;
  }
}